/* ============================================================
   Mom's Cuisine – Menu Page Styles (menu.css)
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --green:  #1a4a1e;
  --green2: #2e7a35;
  --gold:   #c8882a;
  --gold2:  #e8a84a;
  --cream:  #faf5ec;
  --brown:  #3b1f0b;
  --text:   #2a1a0a;
  --muted:  #7a6650;
  --white:  #ffffff;
  --shadow: 0 8px 40px rgba(58,31,11,0.18);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  padding-top: 68px;
}

/* ── Shared Utility ──────────────────────────────────────── */
.section-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,245,236,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold2);
  box-shadow: 0 2px 20px rgba(58,31,11,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 68px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 900;
  color: var(--green); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .leaf { font-size: 1.6rem; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 8px 20px;
  font-size: .88rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brown); text-decoration: none;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: rgba(200,136,42,.08);
}
.nav-cta {
  background: var(--green); color: var(--cream) !important;
  border-radius: 30px; padding: 8px 22px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--green2) !important; color: var(--cream) !important; }

/* ── MENU HERO ───────────────────────────────────────────── */
.menu-hero {
  background:
    linear-gradient(160deg, rgba(26,74,30,.85) 0%, rgba(200,136,42,.6) 100%),
    url('https://images.unsplash.com/photo-1604329760661-e71dc83f8f26?w=1200&q=80') center/cover no-repeat;
  padding: 90px 24px 70px;
  text-align: center;
}
.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white);
}
.menu-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-top: 14px; }

/* ── MENU SECTION ────────────────────────────────────────── */
.menu-section { padding: 70px 24px; }
.menu-category { max-width: 1000px; margin: 0 auto 64px; }

.category-header {
  display: flex; align-items: center; gap: 18px; margin-bottom: 32px;
}
.category-icon-box {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.category-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--green);
}
.category-header p { font-size: .88rem; color: var(--muted); margin-top: 2px; }
.cat-divider { flex: 1; height: 1px; background: linear-gradient(to right, var(--gold), transparent); }

/* ── MENU CARDS ──────────────────────────────────────────── */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.menu-card {
  background: var(--white);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(58,31,11,.08);
  display: flex; align-items: center;
  transition: box-shadow .25s, transform .25s;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(58,31,11,.14); }
.menu-card-img {
  width: 110px; height: 110px; object-fit: cover; flex-shrink: 0;
}
.menu-card-body { padding: 16px 18px; flex: 1; }
.menu-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--brown);
  margin-bottom: 5px;
}
.menu-card-body p { font-size: .82rem; color: var(--muted); line-height: 1.55; margin-bottom: 8px; }
.menu-price { font-weight: 700; font-size: .92rem; color: var(--gold); }
.tag {
  display: inline-block;
  background: rgba(46,122,53,.1); color: var(--green2);
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 20px; margin-left: 6px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--brown);
  padding: 48px 24px 28px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900; color: var(--gold2);
  margin-bottom: 10px;
}
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.55); text-decoration: none; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--gold2); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .menu-grid { grid-template-columns: 1fr; }
  .nav-links a { padding: 8px 12px; font-size: .78rem; }
}
