/* ═══════════════════════════════════════════════
    menu/menu.css — Lady Lasagna
    Stili specifici per la pagina menu
    ProgAries Studio · 2026
═══════════════════════════════════════════════ */

/* ─── Menu Hero (mini) ─── */
#menu-hero {
  padding: calc(var(--header-h) + 48px) 0 52px;
  text-align: center;
  background: var(--body-bg);
}

.menu-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0;
}

#menu-hero .hero-line {
  margin: 20px auto 0;
  animation: none;
  width: 50px;
}

#menu-hero .section-eyebrow {
  margin-bottom: 10px;
}


/* ─── Menu content section ─── */
#menu-content {
  padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 10vw, 100px);
  background: var(--body-bg);
}

#menu-content .container-xl {
  padding: 0 clamp(16px, 4vw, 40px);
}


/* ═══════════════════════════════════════════════
    OUTER TABS — Sur place / À emporter
    Stile PrimeNG: underline sull'attivo, no bordi
═══════════════════════════════════════════════ */
.ll-tabs-outer {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(201, 150, 58, 0.3);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ll-tabs-outer .nav-item { flex-shrink: 0; }

.ll-tabs-outer .nav-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--stone);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 12px clamp(20px, 4vw, 40px);
  border-radius: 0;
  transition: color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.ll-tabs-outer .nav-link:hover {
  color: var(--cream);
  background: transparent;
}

.ll-tabs-outer .nav-link.active {
  color: var(--gold);
  background: transparent;
  border-bottom-color: var(--gold);
}


/* ═══════════════════════════════════════════════
    INNER TABS — categorie menu
    Scrollabili su mobile
═══════════════════════════════════════════════ */
.ll-tabs-inner-wrap {
  position: relative;
  margin-bottom: 36px;
}

.ll-tabs-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  border-bottom: 1px solid rgba(201, 150, 58, 0.2);
  flex-wrap: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 0;
}

.ll-tabs-inner::-webkit-scrollbar { display: none; }

.ll-tabs-inner .nav-item { flex-shrink: 0; }

.ll-tabs-inner .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 10px clamp(12px, 2.5vw, 22px);
  white-space: nowrap;
  border-radius: 0;
  transition: color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.ll-tabs-inner .nav-link:hover {
  color: var(--cream);
  background: transparent;
}

.ll-tabs-inner .nav-link.active {
  color: var(--gold);
  background: transparent;
  border-bottom-color: var(--gold);
}


/* ─── Inner tab content ─── */
.inner-tab-content {
  padding-top: 8px;
}


/* ═══════════════════════════════════════════════
    DISH CARDS
═══════════════════════════════════════════════ */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.dish-card {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(201, 150, 58, 0.18);
  border-radius: 2px;
  background: var(--section-alt);
  transition: border-color var(--transition), transform var(--transition);
  animation: fadeUp 0.5s ease both;
}

.dish-card:hover {
  border-color: rgba(201, 150, 58, 0.5);
  transform: translateY(-3px);
}

.dish-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0;
  line-height: 1.3;
}

.dish-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 10px auto;
  
}

.dish-ingredients {
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 0;
}

.dish-price {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 500;
  color: var(--gold);
  margin-top: 10px;
}


/* ═══════════════════════════════════════════════
    VINS — sezioni interne (Rouges / Rosés / Blancs / Frizzants)
    e Pizza — Classique / du Chef
═══════════════════════════════════════════════ */
.vins-section {
  margin-bottom: clamp(40px, 6vw, 60px);
}

.vins-section:last-child {
  margin-bottom: 0;
}

.vins-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.vins-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 150, 58, 0.25);
}


/* ═══════════════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 576px) {
  .dishes-grid {
    grid-template-columns: 1fr;
  }

  .ll-tabs-outer .nav-link {
    padding: 10px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .ll-tabs-outer {
    flex-direction: column;
    border-bottom: none;
  }

  .ll-tabs-outer .nav-link {
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .ll-tabs-outer .nav-link.active {
    border-left-color: var(--gold);
    border-bottom: none;
  }
}