/* =============================================
   ZAYTONA GRILL — menu.css
   ============================================= */

/* ============================
   MENU HERO
   ============================ */
.menu-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.menu-hero-bg {
  position: absolute;
  inset: 0;
}
.menu-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,14,5,0.88) 0%,
    rgba(10,14,5,0.60) 55%,
    rgba(10,14,5,0.72) 100%
  );
}
.menu-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 7rem 1.5rem 3.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.menu-hero-content h1 {
  color: #fff;
  max-width: 600px;
  margin: 0.75rem 0 1rem;
}
.menu-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-md);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.menu-hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ============================
   STICKY TAB NAV
   ============================ */
.menu-tabs-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.menu-tabs-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.menu-tabs-scroll::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 0.875rem 1.125rem;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--dur), border-color var(--dur);
  border-bottom: 2px solid transparent;
}
.menu-tab:hover { color: rgba(255,255,255,0.85); }
.menu-tab.active { color: var(--gold-light); border-color: var(--gold); }

/* ============================
   MENU BODY WRAPPER
   ============================ */
.menu-body {
  background: var(--off-white);
}

/* ============================
   INDIVIDUAL MENU SECTION
   ============================ */
.menu-section {
  padding: 4rem 0;
  background: var(--off-white);
}
.menu-section-alt {
  background: var(--white);
}

.menu-section-header {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.menu-section-text h2 {
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.menu-section-note {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.6;
}
.menu-section-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.menu-section-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* ============================
   MENU CATEGORY
   ============================ */
.menu-category {
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}
.menu-category:last-child { margin-bottom: 0; }

.menu-category h3 {
  font-size: var(--text-xl);
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}
.menu-category-sub {
  font-family: var(--ff-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================
   MENU ITEMS LIST
   ============================ */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}
.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--sand);
}
.menu-item:last-child { border-bottom: none; }
.menu-item.highlight-item .menu-item-name {
  color: var(--gold);
}
.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}
.menu-item-name {
  font-family: var(--ff-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.menu-item-desc {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.5;
}
.menu-item-price {
  font-family: var(--ff-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* Two-price column header */
.menu-price-header {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 0.5rem;
  padding-right: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* NOTES */
.menu-note {
  margin-top: 0.875rem;
  font-size: var(--text-xs);
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.5;
}
.menu-note-inline {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin-bottom: 0.875rem;
  font-style: italic;
}

/* ============================
   SIDES GRID
   ============================ */
.menu-sides-grid {
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.menu-items-plain {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-items-plain li {
  font-size: var(--text-sm);
  color: var(--ink-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--sand);
}
.menu-items-plain li:last-child { border-bottom: none; }

/* ============================
   ORDER CTA
   ============================ */
.menu-order-cta {
  background: var(--olive-dark);
  padding: 4.5rem 1.5rem;
}
.menu-order-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.menu-order-cta-inner h2 {
  color: #fff;
  margin-bottom: 0.625rem;
}
.menu-order-cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
  margin-bottom: 2rem;
}
.menu-order-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   RESPONSIVE — TABLET
   ============================ */
@media (max-width: 900px) {
  .menu-section-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .menu-section-image {
    max-width: 480px;
  }
  .menu-section-image img {
    max-height: 320px;
  }
}

/* ============================
   RESPONSIVE — MOBILE
   ============================ */
@media (max-width: 600px) {
  .menu-hero-content { padding: 6rem 1.125rem 2.5rem; }
  .menu-hero-actions { flex-direction: column; }
  .menu-hero-actions .btn { justify-content: center; }

  .menu-section { padding: 3rem 0; }
  .menu-section-header { margin-bottom: 2rem; padding: 0 1.125rem; }
  .menu-section-image img { max-height: 260px; }

  .menu-category { padding: 0 1.125rem; margin-bottom: 2rem; }

  .menu-item { gap: 0.875rem; }
  .menu-item-name { font-size: var(--text-base); }
  .menu-item-price { font-size: var(--text-xs); }

  .menu-sides-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1.125rem; }

  .menu-order-cta { padding: 3.5rem 1.125rem; }
  .menu-order-actions { flex-direction: column; align-items: stretch; }
  .menu-order-actions .btn { justify-content: center; }
}
