/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brand-red: #c0392b;
  --brand-red-dark: #9c2a1f;
  --brand-cream: #fdf8f2;
  --brand-ivory: #fffaf3;
  --brand-dark: #2a1e18;
  --brand-green: #4b6043;
  --brand-gold: #d4a24c;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--brand-dark);
  background: var(--brand-ivory);
  line-height: 1.6;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
}

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

img { max-width: 100%; display: block; }

.section-eyebrow {
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--brand-dark);
}

.center { text-align: center; }

/* ===== Order Button (most striking element) ===== */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 6px 18px rgba(192, 57, 43, 0.4);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.3px;
}

.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(192, 57, 43, 0.5);
}

.btn-order--nav { padding: 10px 26px; font-size: 0.9rem; }

.btn-order--hero { font-size: 1.1rem; padding: 16px 40px; }

.btn-order--location { margin-top: 20px; }

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--brand-dark);
  color: var(--brand-dark);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--brand-dark);
  color: #fff;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(253, 248, 242, 0.97);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.logo span { color: var(--brand-red); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brand-dark);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--brand-red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--brand-dark);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a1f1a 0%, #6b2d24 50%, #8b3a2b 100%);
  background-image: url('../images/photo-01.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 24px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 10, 0.75) 0%, rgba(20, 12, 10, 0.6) 50%, rgba(20, 12, 10, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
  color: #fff;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--brand-gold);
  margin-bottom: 18px;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: #f2e8df;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.hero .btn-secondary:hover {
  background: #fff;
  color: var(--brand-dark);
}

.hero-rating {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  color: #f2e8df;
}

.stars { color: var(--brand-gold); letter-spacing: 2px; }

/* ===== About ===== */
.about { padding: 90px 0; background: var(--brand-ivory); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-image img {
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; }

.about-text p { margin-bottom: 16px; color: #4a3a32; }

/* ===== Menu ===== */
.menu { padding: 90px 0; background: var(--brand-cream); }

.menu-note {
  max-width: 560px;
  margin: 0 auto 50px;
  color: #6b5a4f;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.menu-category h3 {
  font-size: 1.4rem;
  color: var(--brand-red);
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.menu-category ul { list-style: none; }

.menu-category li {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.item-name { font-weight: 600; color: var(--brand-dark); }

.item-desc { font-size: 0.88rem; color: #6b5a4f; }

/* ===== Gallery ===== */
.gallery { padding: 90px 0; background: var(--brand-ivory); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

/* ===== Reviews ===== */
.reviews { padding: 90px 0; background: var(--brand-cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 20px;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.review-card p { margin: 14px 0 0; font-size: 0.95rem; color: #4a3a32; }

.review-author {
  font-weight: 600;
  color: var(--brand-red);
  margin-top: 12px !important;
}

.rating-summary {
  margin-top: 40px;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ===== Location ===== */
.location { padding: 90px 0; background: var(--brand-ivory); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.hours-list { margin: 24px 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e8ddd2;
  max-width: 380px;
}

.address-line { margin: 20px 0; color: #4a3a32; }

.location-info .btn-secondary { margin-right: 14px; }

.location-map {
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.location-map iframe { height: 100%; }

/* ===== Footer ===== */
.footer {
  background: var(--brand-dark);
  color: #f2e8df;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--brand-gold); }

.footer p { margin-bottom: 6px; font-size: 0.92rem; color: #d9c9ba; }

.footer a:hover { color: var(--brand-gold); }

.footer-hours strong { color: #fff; }

.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: #a8988a;
  margin-top: 24px;
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-backdrop[hidden] { display: none; }

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 440px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.modal h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--brand-dark);
}

.modal p { color: #5a4a40; margin-bottom: 24px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #9a8a7d;
}

.modal-close:hover { color: var(--brand-red); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-content h1 { font-size: 2.4rem; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-ivory);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .btn-order--nav { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .hero-cta-row { flex-direction: column; align-items: center; }
}
