/* ========================================================
   SPEISEKARTE — Menu Page Styles
   ======================================================== */

/* Hero */
.menu-hero {
  padding: 180px 0 80px;
  background: var(--charcoal);
  text-align: center;
  color: var(--white);
}

.menu-hero .section-label {
  color: var(--red);
}

.menu-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.menu-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Sticky Menu Navigation Bar */
.menu-nav-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.menu-nav-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-nav-scroll::-webkit-scrollbar {
  display: none;
}

.menu-nav-link {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 30px;
  transition: all 200ms ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.menu-nav-link:hover {
  color: var(--red);
  background: var(--red-light);
}

.menu-nav-link.active {
  color: var(--white);
  background: var(--red);
}

/* Menu Page */
.menu-page {
  padding: 60px 0 80px;
  background: var(--cream);
}

/* Menu Section */
.menu-section {
  margin-bottom: 64px;
  scroll-margin-top: 140px;
}

.menu-section-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--red);
}

.menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.menu-section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-subsection-title {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Menu Items */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-items--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item-info h3 {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

.menu-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
}

.menu-item-price {
  flex-shrink: 0;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

/* Season tag */
.menu-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 12px;
  vertical-align: middle;
  margin-left: 4px;
}

/* Allergen note */
.menu-allergen-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  line-height: 1.7;
}

/* Active nav link in navbar */
.navbar-links a.active {
  color: var(--red);
}

/* ── Responsive ────────────────────────── */
@media (max-width: 768px) {
  .menu-hero {
    padding: 140px 0 60px;
  }

  .menu-items--two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-item-price {
    font-size: 14px;
  }

  .menu-nav-scroll {
    padding: 12px 0;
  }

  .menu-nav-link {
    padding: 6px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .menu-section-title {
    font-size: 24px;
  }

  .menu-item {
    padding: 12px 0;
  }

  .menu-item-info h3 {
    font-size: 15px;
  }
}
