html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
}

h1,h2,h3{
    font-family: 'Cormorant Garamond', serif;
}

:root {
  --bg: #f8f6f2;
  --card: #ffffff;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --olive: #5e6e5a;
  --sand: #e8ddcf;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.navbar {
  position: fixed;
  transition: all 0.6s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  z-index: 1000;
  padding: 0 7%;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #111;
}
.brand span{
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111;
}

.brand img {
    height: 93px;
    width: auto;
    object-fit: contain;
}

.navbar {
    height: 95px;
    padding: 0 7%;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #111;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 7%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.68), rgba(0,0,0,.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: white;
}

.eyebrow {
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero .eyebrow {
  color: #e8ddcf;
}

h1 {
    font-style: italic;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    margin-bottom: 24px;
}

.hero-content p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: .25s;
}

.btn.primary {
  background: var(--olive);
  color: white;
}

.btn.secondary {
  background: white;
  color: var(--text);
}

.btn:hover {
  transform: translateY(-3px);
}

.section {
  padding: 110px 7%;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.about-text p,
.experience p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}

.stats {
  padding: 70px 7%;
  background: var(--text);
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats h3 {
  font-size: 52px;
  margin-bottom: 8px;
}

.stats p {
  color: #d7d7d7;
}

.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.menu-wrapper {
  overflow: hidden;
  width: 100%;
}

.menu-slider {
  display: flex;
  gap: 28px;
  width: max-content;
animation: infiniteMenu 14s linear infinite;}

.menu-slider:hover {
  animation-play-state: paused;
}

.menu-slider .menu-card {
  width: 320px;
  flex-shrink: 0;
}

@keyframes infiniteMenu {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50%));
  }
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  transition: .3s;
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover img {
  transform: scale(1.08);
}

.menu-card h3 {
  padding: 24px 24px 8px;
  font-size: 24px;
}

.menu-card p {
  padding: 0 24px 28px;
  color: var(--muted);
  line-height: 1.6;
}

.experience {
  margin: 0 7%;
  min-height: 620px;
  border-radius: 34px;
  background:
    linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.1)),
    url("images/interior.jpg") center/cover no-repeat;
  color: white;
  display: flex;
  align-items: end;
  padding: 70px;
}

.experience div {
  max-width: 700px;
}

.experience .eyebrow {
  color: #e8ddcf;
}

.experience p {
  color: #f0f0f0;
}

.gallery {
  columns: 3;
  column-gap: 22px;
}

.gallery img {
  width: 100%;
  .menu-card img {
  cursor: pointer;
}
  margin-bottom: 22px;
  border-radius: 24px;
  break-inside: avoid;
}

.contact {
  padding: 110px 7%;
  text-align: center;
  background: var(--sand);
}

.contact img {
  width: 120px;
  margin-bottom: 28px;
}

.contact p {
  color: var(--muted);
}

.contact-buttons {
  justify-content: center;
}

footer {
  padding: 34px 7%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background: var(--text);
  color: white;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .about,
  .menu-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 36px;
  }

  .gallery {
    columns: 1;
  }

  .experience {
    margin: 0;
    border-radius: 0;
    padding: 40px 7%;
  }

  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.menu-card,
.gallery img {
  opacity: 0;
  transform: translateY(30px);
}

.menu-card.show,
.gallery img.show {
  opacity: 1;
  transform: translateY(0);
  transition: .7s ease;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.hero-content > * {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s ease forwards;
}

.hero-content .eyebrow {
  animation-delay: 0.2s;
}

.hero-content h1 {
  animation-delay: 0.4s;
}

.hero-content p {
  animation-delay: 0.6s;
}

.hero-buttons {
  animation-delay: 0.8s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#backToTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: var(--olive);
  color: white;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-4px);
}
.gallery img {
  cursor: pointer;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 30px;
}

#lightbox.show {
  display: flex;
}

#lightboxImg {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 24px;
  object-fit: contain;
}

#closeLightbox {
  position: absolute;
  top: 24px;
  right: 34px;
  color: white;
  font-size: 42px;
  cursor: pointer;
}
.navbar.scrolled nav a {
  color: white;
}

.navbar.scrolled .brand {
  color: white;
}
.navbar.scrolled .brand span {
  color: white;
}

.menu-slider {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: infiniteMenu 22s linear infinite;
}

.menu-slider:hover {
  animation-play-state: paused;
}
.menu-slider .menu-card {
    width: 260px;
    flex: 0 0 260px;
    scroll-snap-align: start;
  }

  .menu-card img {
    height: 220px;
  }
.menu-slider .menu-card {
    width: 260px;
    flex: 0 0 260px;
    scroll-snap-align: start;
  }

  .menu-card img {
    height: 220px;
  }

@keyframes infiniteMenu {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {

}