﻿:root {
  --bg: #f7f4ef;
  --accent: #2f3c2a;
  --accent-light: #cbd2c0;
  --text: #2b2b2b;
  --muted: #6f6f6f;
  --card: #ffffff;
  --sand: #e8e1d1;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: var(--text);
}

.site-header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 3;
  padding: 20px 0;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
}

.nav-actions .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  padding: 150px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: var(--sand);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
}

.hero h1 span {
  color: var(--accent);
}

.hero .lead {
  max-width: 480px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating .badge {
  background: #f4c25b;
  color: #000;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}

.stars {
  color: #f4c25b;
  letter-spacing: 2px;
}

.hero-dish {
  position: relative;
  display: inline-block;
}

.dish-main {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4b89e, #b58c69);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  padding-bottom: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dish-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dish-side {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6d79a, #c99738);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #4a3a2a;
  font-weight: 600;
}

.dish-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.dish-left {
  left: -40px;
  top: 40px;
}

.dish-right {
  right: -40px;
  top: 40px;
}

.hero-controls {
  position: absolute;
  width: 100%;
  bottom: -20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-size: 20px;
}

.features {
  padding: 40px 0 20px;
}

.feature-card {
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
}

.feature-card .icon {
  font-size: 32px;
}

.top-sellers {
  padding: 60px 0;
  background: #fff;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.section-title p {
  color: var(--muted);
}

.dish-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.dish-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #d9b68e, #b58855);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.price {
  color: #1f7a3e;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials {
  padding: 60px 0;
  background: var(--bg);
}

.testimonial-card {
  background: var(--sand);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.testimonial-card .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 12px;
}

.faq {
  padding: 60px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  color: var(--muted);
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  display: block;
}

.site-footer {
  background: #1f1f1f;
  color: #c9c9c9;
  padding: 50px 0 20px;
}

.site-footer h5, .site-footer h6 {
  color: #fff;
}

.newsletter {
  display: flex;
  background: #2e2e2e;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  color: #fff;
}

.newsletter button {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 0 16px;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #2e2e2e;
  padding-top: 15px;
}

@media (max-width: 991px) {
  .site-header {
    position: relative;
    background: #fff;
  }

  .nav-actions {
    margin-top: 15px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-bg {
    width: 450px;
    height: 450px;
    top: -150px;
    right: -120px;
  }
}

.menu-page {
  background: #fff;
}

.menu-header {
  position: sticky;
  top: 0;
  background: var(--sand);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.menu-hero {
  padding: 120px 0 30px;
  background: var(--sand);
}

.menu-hero .lead {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.menu-tabs {
  padding: 20px 0 10px;
  background: #fff;
}

.menu-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  border-bottom: 1px solid #e6e0d6;
  padding-bottom: 18px;
}

.menu-pill {
  border: none;
  background: transparent;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 16px;
  border-radius: 999px;
}

.menu-pill.active {
  color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.menu-grid-section {
  padding: 30px 0 70px;
}

.menu-card {
  background: #f8f6f1;
  border-radius: 28px;
  padding: 24px 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.menu-card-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #d9b68e, #b58855);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card p {
  color: var(--muted);
  min-height: 48px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-tag {
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}
