* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  background: #fff8ef;
  color: #24160f;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HERO */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.72)),
    url("images/hero.jpg") center 25% / cover no-repeat;
  color: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.navbar {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.nav-links {
  display: flex;
  gap: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-content {
  width: min(850px, 100%);
  margin: auto;
  text-align: center;
  padding: 45px 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #ffb13b;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  font-weight: 900;
}

.hero-text {
  max-width: 680px;
  margin: 20px auto 26px;
  font-size: clamp(18px, 2vw, 22px);
}

/* BUTTONS */
.hero-actions,
.location .btn {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn.primary {
  background: #ff9f1c;
  color: #1e120b;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
}

/* NOTICE */
.notice {
  background: #111;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
}

.notice p {
  margin: 0;
}

/* SECTIONS */
.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
}

.about p,
.location p,
.section-heading p:last-child {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

/* MENU */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.featured-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(62, 36, 13, 0.1);
  border: 1px solid rgba(72, 38, 15, 0.08);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(62, 36, 13, 0.15);
}

.featured-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.featured-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.featured-top h3 {
  margin: 0;
  font-size: 22px;
}

.price {
  font-weight: 900;
  font-size: 20px;
  color: #15100d;
  white-space: nowrap;
}

.featured-body p {
  margin: 0;
  color: #5f4b3f;
}

.menu-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* GALLERY */
.gallery {
  width: 100%;
  max-width: none;
  background: #111;
  color: white;
  padding: 52px 20px;
  text-align: center;
}

.gallery-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
}

.gallery-window {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  --gap: 18px;
  display: flex;
  gap: var(--gap);
  direction: ltr;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery-track img {
  flex: 0 0 calc((100% - (3 * var(--gap))) / 4);
  width: calc((100% - (3 * var(--gap))) / 4);
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  display: block;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #f5a623;
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.gallery-arrow:hover:not(:disabled) {
  background: #ffb13b;
}

.gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-arrow.prev {
  right: 0;
}

.gallery-arrow.next {
  left: 0;
}

/* LOCATION */
.location {
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 780px;
  margin: 30px auto 0;
  text-align: right;
}

.info-card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(62, 36, 13, 0.1);
  border: 1px solid rgba(72, 38, 15, 0.08);
}

.info-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  color: #5f4b3f;
}

.hours-list li span:last-child {
  color: #15100d;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff0d7;
  color: #2b1a10;
  transition: 0.25s ease;
}

.contact-link:hover {
  background: #ffe2ae;
}

.contact-icon {
  font-size: 18px;
}

.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 22px;
}

footer p {
  margin: 0;
}

/* TABLET */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-track img {
    flex-basis: calc((100% - var(--gap)) / 2);
    width: calc((100% - var(--gap)) / 2);
    height: 210px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .hero {
    min-height: auto;
  }

  .logo {
    width: 88px;
    height: 88px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-content {
    padding: 64px 0;
  }

  .section {
    padding: 40px 0;
  }

  .gallery {
    padding: 46px 12px;
  }

  .gallery-slider {
    padding: 0 44px;
  }

  .gallery-track img {
    flex-basis: 100%;
    width: 100%;
    height: 240px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    left: 16px;
  }
}