:root {
    --crema: oklch(98% 0.01 70);
    --vinaccio: oklch(45% 0.15 15);
    --verde-bosco: oklch(55% 0.12 145);
    --testo: oklch(25% 0.02 50);
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--crema);
    color: var(--testo);
    line-height: 1.6;
}

/* HEADER SIMMETRICO */
.main-header {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    background: rgba(250, 248, 245, 0.5);
 
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 10px solid rgba(128, 0, 32, 0.9);
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--testo);
}

nav a:hover { color: var(--vinaccio); }
.nav-right ul { justify-content: flex-end; }
.logo-img { height: 50px; padding: 0 1rem; }

/* HERO CON CONTRASTO MIGLIORATO */
#hero {
    height: 85vh;
    background: url('../immagini/pizzeriabonjouresterno.jpg') center/cover;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroev {
    height: 85vh;
    background: url('../immagini/eventi2.jpg') center/cover;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-evoverlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Gradiente per scurire solo la parte centrale dove c'è il testo */
    background: linear-gradient(to bottom, rgba(240, 235, 235, 0.699), rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1));
}
.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Gradiente per scurire solo la parte centrale dove c'è il testo */
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1));
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-family: 'Georgia', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* PULSANTI */
.btn-prenota {
    display: inline-block;
    background: var(--verde-bosco);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-prenota:hover { transform: translateY(-3px); background: #3d5536; }

/* SEZIONE ANIMA */
#anima { padding: 80px 20px; text-align: center; }
.small-container { max-width: 800px; margin: 0 auto; }
.badge { color: var(--vinaccio); text-transform: uppercase; font-weight: bold; letter-spacing: 2px; }
h2 { font-family: 'Georgia', serif; color: var(--vinaccio); font-size: 3rem; margin: 1.5rem 0; }
.highlight { font-size: 1.4rem; color: var(--verde-bosco); font-style: italic; margin-bottom: 2rem; }
.divider { width: 40px; height: 2px; background: var(--vinaccio); margin: 2rem auto; }

.btn-prenota-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
}

.wa-icon-container svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

/* Su Mobile: lo rendiamo un bollino tondo perfetto e iconico */
@media (max-width: 768px) {
    .btn-prenota-sticky {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        bottom: 20px;
        right: 20px;
        border-radius: 50%;
    }

    .btn-text {
        display: none; /* Nascondiamo il testo su mobile per pulizia */
    }

    .wa-icon-container svg {
        width: 32px;
        height: 32px;
    }
}
/* Layout della Testata */
.header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Navigazione Sinistra e Destra */
.nav-left, .nav-right {
    flex: 1; /* Occupano lo stesso spazio */
}

.nav-left ul, .nav-right ul {
    list-style: none;
    display: flex;
    gap: 30px; /* Spazio tra le voci */
    margin: 0;
    padding: 0;
}

.nav-left ul {
    justify-content: flex-end; /* Spinge le voci verso il logo */
    margin-right: 40px; /* Distanza dal logo */
}

.nav-right ul {
    justify-content: flex-start; /* Spinge le voci verso il logo */
    margin-left: 40px; /* Distanza dal logo */
}

.nav-left a, .nav-right a {
    text-decoration: none;
    color: var(--testo); /* Usa il tuo colore vinaccio o marrone */
    font-family: 'Georgia', serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-left a:hover, .nav-right a:hover {
    color: #800020; /* Vinaccio al passaggio del mouse */
}

/* Logo Centrale */
.logo-center {
    flex: 0 0 auto; /* Non si restringe */
    text-align: center;
}

.logo-img {
    height: 80px; /* Regola l'altezza in base al tuo gusto */
    width: auto;
}






/* Responsive: Menu impilato su Mobile */
@media (max-width: 768px) {
    .header-grid {
        flex-direction: column;
        gap: 20px;
    }
    .nav-left ul, .nav-right ul {
        justify-content: center;
        margin: 0;
        gap: 15px;
    }
}

/* Parallax (Sfondo fisso) */
.full-width-parallax {
    height: 70vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.parallax-content { background: rgba(0,0,0,0.3); padding: 40px; }
.parallax-content h2 { font-size: 3.5rem; margin-bottom: 10px; }

/* Link Territorio */
.link-grid { display: flex; justify-content: center; gap: 30px; margin: 30px 0; }
.link-grid a { 
    color: #800020; 
    text-decoration: none; 
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}
.link-grid a:hover { border-bottom: 1px solid #800020; }
/* Sezione Piatti */
.section-title { margin-bottom: 50px; text-align: center; }
.subtitle { color: var(--vinaccio); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; }

.dishes-highlight { display: flex; flex-direction: column; gap: 80px; }
.dish-item { display: flex; align-items: center; gap: 50px; }
.dish-item.reversed { flex-direction: row-reverse; }
.dish-img-wrapper { flex: 1; }
.dish-img-wrapper img { width: 100%; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.dish-info { flex: 1; }
.dish-info h3 { font-size: 2rem; margin-bottom: 15px; color: var(--vinaccio); }

/* Effetto Parallax Atmosfera */
.atmosphere-parallax {
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax-overlay { background: rgba(0,0,0,0.3); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.parallax-text { color: white; text-align: center; }
.parallax-text h2 { font-size: 3rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }

/* Territorio */
.territorio-links { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.territorio-links a { 
    padding: 10px 20px; 
    border: 1px solid var(--vinaccio); 
    color: var(--vinaccio); 
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: all 0.3s;
}
.territorio-links a:hover { background: var(--vinaccio); color: white;  border-top: 10px solid rgba(128, 0, 32, 0.9); 
   }

/* --- SEZIONE CONTATTI FINALI (FOOTER) AGGIORNATA --- */
#contatti-finali {
    padding: 80px 20px 40px; 
    background-color: #fcfcfc; 
    
    /* Usiamo il colore solido per essere sicuri che si veda bene */
    border-top: 10px solid #800020; 
    
    /* L'ombra la teniamo, ma la rendiamo più leggera per non "sporcare" il bordo */
    box-shadow: inset 0 15px 15px -15px rgba(0,0,0,0.1);
    
    /* Forza il browser a disegnare il bordo all'esterno del padding */
    box-sizing: border-box;
    color: #333;
}

.footer-grid-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.info-column {
    flex: 1;
}

.info-column h3 {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #800020; /* Il tuo colore vinaccio */
    margin-bottom: 25px;
    position: relative;
}

/* Linea sotto il titolo tipo asilo */
.info-column h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #ccc;
    margin: 10px auto 0;
}

.info-column p, .hours-list p {
    font-size: 1rem;
    line-height: 2;
    margin: 5px 0;
}

.hours-list span {
    font-weight: bold;
    margin-right: 10px;
}

.central .phone-link a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.social-links-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links-footer a {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.social-links-footer a:hover {
    color: #800020;
    border-bottom: 1px solid #800020;
}

.footer-bottom {
    margin-top: 80px;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    letter-spacing: 1px;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .footer-grid-info {
        flex-direction: column;
        gap: 60px;
    }
}
/* --- SEZIONE PIATTI COMPATTA --- */
.section-intro { 
    text-align: center; 
    margin: 60px 0 40px; /* Margini ridotti */
}
.subtitle { 
    color: #800020; 
    text-transform: uppercase; 
    font-size: 0.8rem; /* Testo più piccolo */
    letter-spacing: 2px; 
}
.section-intro h2 {
    font-size: 2rem; /* Titolo più contenuto */
    margin-top: 10px;
}

.dish-row { 
    display: flex; 
    align-items: center; 
    gap: 40px; /* Spazio ridotto tra foto e testo */
    margin-bottom: 60px; /* Meno spazio tra le righe */
    max-width: 900px; /* Contenitore più stretto per non disperdere */
    margin-left: auto;
    margin-right: auto;
}
.dish-row.reverse { flex-direction: row-reverse; }

.dish-image { 
    flex: 0 0 40%; /* La foto occupa solo il 40% fisso */
    max-width: 350px; /* Larghezza massima contenuta */
}
.dish-image img { 
    width: 100%; 
    height: auto;
    border-radius: 4px; /* Angoli leggermente più morbidi */
    box-shadow: 0 10px 25px rgba(0,0,0,0.06); /* Ombra più leggera */
}

.dish-text { 
    flex: 1; 
}
.dish-text h3 { 
    font-family: 'Georgia', serif; 
    font-size: 1.8rem; /* Titolo piatto più piccolo */
    color: #333; 
    margin-bottom: 15px; 
}
.dish-text p { 
    line-height: 1.6; /* Interlinea più compatta */
    color: #555; /* Testo leggermente più scuro per leggibilità */
    font-size: 1rem; /* Dimensione standard */
}


.info-column {
    flex: 0 1 280px; /* Larghezza fissa delle colonne */
}

.info-column h3 {
    font-family: 'Georgia', serif;
    font-size: 1.1rem; /* Titolo colonna più piccolo */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #800020; 
    margin-bottom: 20px;
}

/* Linea sotto il titolo più corta */
.info-column h3::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: #ddd;
    margin: 8px auto 0;
}

.info-column p, .hours-list p {
    font-size: 0.95rem; /* Testo leggermente più piccolo */
    line-height: 1.7; /* Interlinea più densa */
    margin: 3px 0;
}

.central .phone-link a {
    font-size: 1.3rem; /* Numero di telefono meno imponente */
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.social-links-footer a {
    font-size: 0.85rem;
}

.footer-bottom {
    margin-top: 60px; /* Meno spazio in fondo */
    text-align: center;
    font-size: 0.75rem;
    color: #bbb;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .dish-row {
        flex-direction: column; /* Foto sopra testo su mobile */
        gap: 20px;
        text-align: center;
    }
    .dish-image {
        max-width: 100%;
        width: 80%; /* Foto più piccola su mobile */
    }
    .footer-grid-info {
        flex-direction: column;
        gap: 40px;
    }
}
/* --- SEZIONE CANTINA --- */
#cantina { padding: 40px 20px; }

.wine-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.wine-text { flex: 1; }
.wine-visual { flex: 1; }
.wine-visual img { width: 100%; border-radius: 4px; filter: sepia(0.2); }

.wine-features {
    list-style: none;
    margin-top: 20px;
}

.wine-features li {
    font-weight: bold;
    color: var(--vinaccio);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* --- TERRITORIO A SCHEDE --- */
#territorio-guida {
    padding: 80px 20px;
    background-color: var(--white);
}

.territorio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.territorio-card {
    background: var(--crema);
    padding: 30px;
    text-decoration: none;
    color: var(--testo);
    border-radius: 4px;
    border: 1px solid rgba(128, 0, 32, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.territorio-card h4 {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    color: var(--vinaccio);
    margin-bottom: 15px;
}
.territorio-card h4::before {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Icone specifiche per ogni card */
.territorio-card:nth-child(1) h4::before { content: "🏔️"; } /* Alta Val Nure */
.territorio-card:nth-child(2) h4::before { content: "🎊"; } /* Pro Loco */
.territorio-card:nth-child(3) h4::before { content: "🏰"; } /* Castelli */
.territorio-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.territorio-card span {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--verde-bosco);
}

.territorio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(128, 0, 32, 0.05);
    border-color: var(--vinaccio);
}

/* Responsive */
@media (max-width: 768px) {
    .wine-content { flex-direction: column; text-align: center; gap: 30px; }
}

/* --- PULSANTE PRENOTA STICKY --- */
.btn-prenota-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.btn-prenota-sticky {
    position: fixed;
    bottom: 75px;
    right: 25px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 12px; /* Spazio perfetto tra icona e scritta */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-prenota-sticky:hover {
    transform: scale(1.08); /* Si ingrandisce leggermente al passaggio del mouse */
    background-color: #128C7E;
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.icon-whatsapp {
    display: block;
}

/* Effetto pulsazione delicata all'avvio */
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-prenota-sticky {
    animation: pulse-wa 2s infinite;
}

@media (max-width: 768px) {
    .btn-prenota-sticky {
        bottom: 80px;
        right: 20px;
        padding: 12px 22px;
        font-size: 1rem;
    }
}


/*pagina menu*/
#hero-menu-video {
    position: relative;
    width: 100vw;
    height: 60vh;
    margin-top: 150px; /* Ridotto per desktop per stare sotto l'header */
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%); /* Metodo più pulito per il full-width */
}

@media (max-width: 768px) {
    #hero-menu-video {
        margin-top: 250px !important; /* Aumentato solo per mobile */
        height: 50vh;
    }
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.back-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fondamentale per non deformare il video */
}

.hero-overlay-video {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Scurisce il video per far leggere il testo */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-family: 'Georgia', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.menu-content-area {
    max-width: 800px; /* Centra il menù per una lettura ottimale */
    margin: 60px auto;
    padding: 0 20px;
}
.menu-intro-note {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    background-color: rgba(128, 0, 32, 0.03); /* Un tocco di vinaccio leggerissimo */
    border-radius: 4px;
}

.highlight-text {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    color: var(--vinaccio);
    font-style: italic;
    margin-bottom: 8px;
}

.sub-note {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- PAGINA DOVE SIAMO --- */
.location-hero {
    background-color: var(--vinaccio);
    color: white;
    margin: 150px;
    padding: 120px 20px 60px;
    text-align: center;
}

.map-section {
    margin: 150px auto 60px; /* Sovrappone leggermente la mappa all'header colorato */
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.map-wrapper {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.detail-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.detail-box h3 {
    color: var(--vinaccio);
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.surroundings-section { padding: 60px 20px; text-align: center; }

.surroundings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.s-card {
    background: #fdfaf7;
    padding: 30px;
    border-bottom: 3px solid var(--verde-bosco);
    text-align: left;
    transition: 0.3s;
}

.s-card a, .surroundings-grid a {
    text-decoration: none;
    color: inherit; 
    display: block; 
}


.s-card a:hover {
    color: var(--vinaccio);
    text-decoration: none; /* Rimane senza linea anche al passaggio */
}
.s-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.s-card h4 { color: var(--vinaccio); margin-bottom: 10px; font-family: 'Georgia', serif; }




@media (max-width: 768px) {
    .map-section { grid-template-columns: 1fr;
         margin-top: 240px !important; 
        padding: 0 15px;
    
    }
    .location-hero { padding-top: 100px; }
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    padding-bottom: 30px;
    border-top: 1px solid rgba(0,0,0,0.05); /* Una linea sottilissima per separare */
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.credits {
    font-size: 0.85rem !important;
    color: #777 !important;
}

.credits strong {
    color: var(--vinaccio); 
    font-weight: 600;
}

/* --- PAGINA EVENTI --- */
.eventi-hero {
    background: linear-gradient(rgba(128, 0, 32, 0.8), rgba(128, 0, 32, 0.8)), 
                url('../immagini/pizzeriabonjouresterno.jpg') center/cover;
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.no-events-box {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 700px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.calendar-icon { font-size: 3rem; margin-bottom: 20px; }

.stay-tuned {
    color: #888;
    font-style: italic;
    margin-top: 15px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 60px 0;
}

.private-events-promo {
    display: flex;
    justify-content: center;
    background: var(--crema);
    padding: 50px;
    border-radius: 12px;
    border-left: 5px solid var(--vinaccio);
}

.promo-text h3 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: var(--vinaccio);
    margin-bottom: 20px;
}

.promo-features {
    list-style: none;
    margin: 25px 0;
}

.promo-features li {
    margin-bottom: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .private-events-promo { padding: 30px; }
    .promo-text h3 { font-size: 1.6rem; }
}

/* --- STILE MENU PIATTI --- */
.menu-section {
    margin-bottom: 50px;
}

.menu-title {
    font-family: 'Georgia', serif;
    color: #800020; /* Il nostro vinaccio */
    border-bottom: 2px solid #800020;
    display: inline-block;
    margin-bottom: 30px;
    padding-right: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-item {
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.2rem; /* Più grande per dare importanza */
    font-weight: 700;
    color: #222;
}

.item-name {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Aggiunge i puntini tra il nome e il prezzo per guidare l'occhio */
.item-name::after {
    content: " ...................................................................................................................................................................";
    color: #ccc;
    font-weight: 300;
    margin-left: 10px;
}

.item-price {
    font-family: 'Georgia', serif;
    color: #800020;
    margin-left: 15px;
    white-space: nowrap;
}

.item-desc {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    line-height: 1.4;
}

/* Evidenza speciale per la Pizza Bonjour e piatti firma */
.menu-item:hover .item-name {
    color: #800020;
    transition: 0.3s;
}
@media (max-width: 600px) {
    /* Riduce i font per i titoli piccoli schermi */
    .hero-content h1 { font-size: 2.2rem; }
    
    /* Gestione Menù: se il nome è troppo lungo, il prezzo va sotto */
    .item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-name::after {
        display: none; /* Togliamo i puntini su mobile per pulizia */
    }
    
    .item-price {
        margin-left: 0;
        margin-top: 5px;
        font-size: 1.1rem;
    }

    /* Footer: mettiamo le colonne una sotto l'altra */
    .footer-grid-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    /* Aumenta la dimensione dei tasti per il touch */
    .btn-pdf-download, .btn-prenota-sticky {
        width: 90%;
        padding: 15px;
    }

}
/* --- OTTIMIZZAZIONE HERO MOBILE PER TUTTE LE PAGINE --- */
@media (max-width: 768px) {
    
    /* 1. Home e Pagina Eventi (Immagini fisse) */
    #hero, #heroev, .eventi-hero {
        height: 70vh; /* Riduciamo un po' l'altezza totale su mobile */
        display: flex;
        margin-top:230px;
        align-items: flex-end; /* Sposta il testo verso il basso */
        padding-bottom: 80px;  /* Distanza dal fondo */
        background-attachment: scroll; /* Meglio scroll che fixed su mobile per evitare glitch */
    }

    /* 2. Pagina Menù (Video) */
    .hero-menu-video {
        
        height: 50vh !important;
        margin-top: 160px !important; /* Sposta l'intero blocco video sotto l'header */
    }
    
    #hero-menu-video .hero-overlay-video {
        align-items: flex-end;
        padding-bottom: 40px;
    }

    /* 3. Pagina Dove Siamo */
    .location-hero {
        margin: 0 !important; /* Rimuove quel margine 150px che sposta tutto */
        padding-top: 140px !important; 
        padding-bottom: 40px !important;
    }

    /* 4. Titoli Hero più leggibili */
    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }


    
}
.location-hero {
    background-color: var(--vinaccio);
    color: white;
    padding: 180px 20px 80px; /* Spazio interno generoso per l'header fixed */
    text-align: center;
}
@media (max-width: 768px) {
    .btn-prenota-sticky {
        width: 60px !important; /* Diventa un cerchio */
        height: 60px !important;
        padding: 0 !important;
        justify-content: center;
        border-radius: 50% !important;
        bottom: 80px !important;
        right: 15px !important;
        font-size: 0 !important; /* Nasconde la scritta "Prenota" */
    }

    .btn-prenota-sticky svg {
        width: 30px !important;
        height: 30px !important;
        margin: 0 !important;
    }
    
    /* Riduciamo l'animazione pulse per non distrarre troppo */
    .btn-prenota-sticky {
        animation: none !important; 
        box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    }
}