/* ─────────────────────────────────────────
   INDIAN BRASSERIE — MENU PAGE CSS
   Shares design language with styles.css
   ───────────────────────────────────────── */

:root {
  --gold:       #C9972A;
  --gold-light: #E8B84B;
  --gold-dim:   rgba(201,151,42,0.12);
  --saffron:    #E07B28;
  --deep:       #0D0A07;
  --surface:    #141008;
  --surface2:   #1C1610;
  --surface3:   #241E14;
  --text:       #F2EBD9;
  --text-muted: #A89880;
  --cream:      #FAF3E0;
  --border:     rgba(201,151,42,0.2);
  --radius:     6px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── LOGO IMAGES ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-emblem {
  height: 36px;
  width: auto;
  
  filter: brightness(1.1);
}
.nav-wordmark {
  height: 22px;
  width: auto;
  
  filter: brightness(1.05);
}
.hero-emblem {
  display: block;
  height: 80px;
  width: auto;
  margin: 0 auto 0.75rem;
  
  filter: brightness(1.1);
}
.hero-wordmark {
  display: block;
  max-width: min(480px, 88vw);
  width: 100%;
  height: auto;
  margin: 0 auto 1.25rem;
  
  filter: brightness(1.05);
}
.footer-emblem {
  display: block;
  height: 50px;
  width: auto;
  
  filter: brightness(0.9);
  margin-bottom: 0.5rem;
}
.footer-wordmark {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  
  filter: brightness(0.85);
  margin-bottom: 1rem;
}


html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--deep);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,10,7,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--deep);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.menu-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(13,10,7,0.88) 0%, rgba(50,25,5,0.82) 100%),
    url('balti.jpg') center/cover no-repeat;
  padding-top: 80px;
}
.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,151,42,0.06) 0%, transparent 70%);
}
.menu-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.menu-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-bottom: 1rem;
}
.menu-hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

/* ── ALLERGEN BAR ── */
.allergen-bar {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.allergen-bar strong { color: var(--cream); }

/* ── STICKY TABS ── */
.tab-wrapper {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-top: 0;
}
.tab-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── MAIN CONTENT ── */
.menu-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* ── MENU SECTIONS ── */
.menu-section { display: none; }
.menu-section.active { display: block; animation: fadeUp 0.4s ease both; }

.section-intro {
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.section-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.section-intro p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Sub-headings within sections */
.sub-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin: 3rem 0 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.sub-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* ── DISH GRID ── */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 1.25rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.dish-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface2);
  transition: background var(--transition);
  opacity: 0;
  transform: translateY(8px);
}
.dish-card.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background var(--transition);
}
.dish-card:hover { background: var(--surface3); }
.dish-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.dish-name {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}
.dish-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}
.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── OFFERS GRID ── */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.offer-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.offer-card--premium::before {
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--gold));
}
.offer-card:hover {
  border-color: var(--gold);
  background: var(--surface3);
  transform: translateY(-3px);
}
.offer-threshold {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.offer-amount {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
  margin-top: 0.2rem;
}
.offer-items {
  list-style: none;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.offer-items li {
  font-size: 0.92rem;
  color: var(--cream);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.offer-items li:last-child { border-bottom: none; }
.offer-free {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--saffron);
  letter-spacing: 0.05em;
}

/* Delivery notice */
.delivery-notice {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 1.75rem;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.delivery-icon { font-size: 1.75rem; flex-shrink: 0; }
.delivery-notice strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.delivery-notice p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SET MEALS GRID ── */
.setmeals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.setmeal-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.setmeal-card:hover {
  border-color: var(--gold);
  background: var(--surface3);
  transform: translateY(-3px);
}
.setmeal-card--featured {
  border-color: var(--gold);
  background: var(--surface3);
  position: relative;
}
.setmeal-card--featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 0.9rem; right: -2rem;
  background: var(--gold);
  color: var(--deep);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 2.5rem;
  transform: rotate(35deg);
}
.setmeal-header {
  background: var(--surface3);
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.setmeal-card--featured .setmeal-header {
  background: var(--gold-dim);
}
.setmeal-for {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.setmeal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
}
.setmeal-items {
  list-style: none;
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.setmeal-items li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(201,151,42,0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.setmeal-items li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}
.setmeal-items li:last-child { border-bottom: none; }
.setmeal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .setmeals-grid { grid-template-columns: 1fr 1fr; }
  .setmeal-card--featured { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .offers-grid { grid-template-columns: 1fr; }
  .setmeals-grid { grid-template-columns: 1fr; }
  .setmeal-card--featured { grid-column: auto; }
  .setmeal-card--featured::after { display: none; }
}

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-main { display: block; margin-bottom: 2px; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); }
.footer-brand .logo-sub { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 260px; line-height: 1.6; }
.footer-links h4, .footer-contact h4 { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.footer-contact a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 1.25rem; font-size: 0.75rem; color: var(--text-muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── RESPONSIVE TABLET ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 700px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 0.9rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links .nav-cta { margin-top: 1rem; text-align: center; border-radius: var(--radius); padding: 0.75rem 1.5rem; border-bottom: none; }

  .tab-btn { padding: 1rem 1rem; font-size: 0.7rem; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .menu-main { padding: 2rem 1rem 4rem; }
}

@media (max-width: 480px) {
  .tab-btn { padding: 0.9rem 0.7rem; font-size: 0.65rem; letter-spacing: 0.03em; }
}
