:root {
    --bg: #121212;
    --text: #f5f5f5;
    --accent: #E63946;
    --font-t: 'Bebas Neue', cursive;
    --font-b: 'Montserrat', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    overflow-x: hidden;
    scroll-behavior: auto;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: height 0.3s ease;
    background: 0.3s ease;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    width: 24px;
}

.logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background-color: white;
    overflow: hidden;
    position: relative;
    top: 45px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-circle img {
    width: 260%;
    height: 260%;
    object-fit: contain;
    position: relative;
    top: -3px;
    transition: all 0.3s ease;
}

.logo-circle.logo-small {
    width: 65px !important;
    height: 65px !important;
    top: 0 !important;
    border-width: 2px !important;
}

.logo-circle.logo-small img {
    width: 260% !important;
    height: 260% !important;
    top: -3px !important;
}

.logo-small {
    width: 70px;
    height: 70px;
    top: 0
}

.nav-placeholder {
    width: 24px;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.logo-link:hover {
    transform: scale(1.1);
}

/* --- SIDEBAR MENU --- */
.sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: #000;
    transition: 0.3s;
    padding-top: 80px;
    z-index: 999;
}

.sidebar.active {
    left: 0;
}

/* CORREZIONE LINK SIDEBAR */
.sidebar a {
    display: block; /* verticale */
    padding: 15px 25px;
    color: white;
    text-decoration: none; /* niente sottolineatura */
    font-size: 1.8rem;
    font-family: var(--font-t);
    transition: color 0.3s;
}

.sidebar a:hover {
    color: var(--accent);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.overlay.active {
    display: block;
}

.section-divider {
    height: 2px;
    width: 60px;
    background: var(--accent);
    margin: 0 auto 60px auto;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.65) 40%,
            rgba(0, 0, 0, 0.55) 70%,
            rgba(0, 0, 0, 0.75) 100%
    ),
    url('../../public/images/sfondo-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-tagline {
    font-family: var(--font-b);
    font-weight: 300;
    letter-spacing: 4px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.hero h1 {
    font-family: var(--font-t);
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 30px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.9),
    0 0 50px rgba(0, 0, 0, 0.6);
}

.hero-btns {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    font-family: var(--font-t);
    font-size: 1.9rem;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    min-width: 160px;
}

.btn-red {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(3px);
}

.btn:hover {
    transform: translateY(-3px);
}

/* --- FEATURES --- */
.features {
    background-color: var(--bg);
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.features .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-item:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: 0.3s
}

.feature-item h3 {
    font-family: var(--font-t);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- PARALLAX --- */
.parallax-break {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../public/images/pizza-bandiera.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.parallax-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.parallax-content h2 {
    font-family: var(--font-t);
    font-size: 3.5rem;
    margin: 0;
}

.parallax-content p {
    font-family: var(--font-b);
    font-size: 1.2rem;
    margin: 0;
    text-transform: uppercase;
}

/* --- FOOTER E OVERLAY --- */
.main-footer {
    background-color: #000;
    color: white;
    padding: 50px 20px 20px;
    border-top: 2px solid var(--accent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main-row {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    align-items: flex-start
}

.footer-col h3 {
    font-family: var(--font-t);
    color: var(--accent);
    margin-bottom: 15px;
}

.footer-col p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials a {
    color: white;
    margin-right: 20px;
    font-size: 1.3rem;
}

.footer-socials a:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.copy {
    font-size: 0.75rem;
    color: #555;
}

.footer-bottom-policy {
    display: flex;
    gap: 20px;
}

.footer-bottom-policy-mobile {
    display: none;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.overlay.active {
    display: block;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #777;
    margin-top: 15px;
}

.footer-brand {
    width: 220px;
    display: block;
    text-align: center;
}

.footer-brand .logo-circle {
    margin: 0 auto;
}

.footer-bottom-policy a {
    transition: all 0.3s ease;
    color: #555;
}

.footer-bottom-policy a:hover {
    color: var(--accent);
    transform: translateY(-3px);
    text-decoration: underline;
}

.footer-col a {
    color: #ccc; /* stesso colore del testo */
    text-decoration: none; /* rimuove sottolineatura */
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-socials .instagram-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-socials .instagram-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-socials .instagram-link:hover {
    color: var(--accent);
}

.footer-socials .instagram-link:hover i {
    font-size: 1.1rem;
}

/* --- MENU PAGE STYLES --- */
.menu-hero {
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    background: #121212;
    margin-top: 60px;
}

.menu-title {
    font-family: var(--font-t);
    font-size: 3.5rem;
    color: var(--accent);
    margin: 0;
    letter-spacing: 2px;
}

.category-nav {
    position: sticky;
    top: 80px;
    background: #1a1a1a;
    z-index: 900;
    border-bottom: 2px solid var(--accent);
}

.category-scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 15px 10px;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-scroll a {
    color: white;
    text-decoration: none;
    font-family: var(--font-t);
    font-size: 1.3rem;
    padding: 0 15px;
}

.menu-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-t);
    font-size: 2.8rem;
    color: var(--accent);
    border-bottom: 1px solid #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #222;
}

.item-info h3 {
    font-family: var(--font-t);
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.item-info p {
    font-size: 0.85rem;
    color: #aaa;
    margin: 5px 0 0;
}

.price {
    text-align: center;
    font-weight: 600;
    font-family: var(--font-b);
    color: #fff;
}


/* --- MENU NUOVO DIEGO --- */
.menu-categories-container {
    position: sticky;
    top: 80px;
    z-index: 100;
    display: flex;
    gap: 15px;
    padding: 15px 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.menu-categories-container::-webkit-scrollbar {
    height: 4px;
}

.menu-categories-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.menu-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 18px;
    font-family: var(--font-t);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.menu-btn:hover, .menu-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.menu-section {
    scroll-margin-top: 160px;
    margin-bottom: 60px;
}

.menu-content {
    margin: 50px 15%;
    display: block;
    clear: both;
}

.menu-pizza-price .price-tag {
    font-size: 16px;
    color: #c5c2c2;
}

.menu-pizza-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}
.menu-pizza-price {
    font-family: var(--font-t);
    font-size: 32px;
}
.menu-pizza-price-container {
    gap: 75px;
    display: none;
}
.menu-pizza-price-container-desktop {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    height: 100%;
    align-items: anchor-center;
}

.w-100-mobile {
    width: auto;
}

@media (max-width: 768px) {
    .menu-pizza-price {
        font-size: 18px;
    }
    .menu-pizza-price .price-tag {
        font-size: 12px;
    }
    .menu-pizza-title-container {
        display: flex;
        justify-content: space-between;
        margin: 0;
    }
    .menu-pizza-price-container {
        position: relative;
        display: flex;
        align-items: end;
        gap: 50px;
        margin: 0;
    }
    .hidden-mobile {
        display: none;
    }
    .w-100-mobile {
        width: 100%;
    }
}

/* --- CHI SIAMO HERO --- */
.hero-chisiamo {
    background-image: url("../../public/images/chi-siamo-hero.jpg");
}

.chisiamo-hero {
    margin-top: 79px;
    height: 40vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('../../public/images/chi-siamo-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* sposta il testo verso il basso */
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    color: white;
}

.chisiamo-hero h1 {
    font-family: var(--font-t);
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

/* --- STORIA ALTERNATA --- */
.chisiamo-storia {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.storia-blocco {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.storia-blocco:nth-child(even) {
    flex-direction: row-reverse;
}

.storia-blocco img {
    width: 42%; /* larghezza desktop */
    max-width: 420px; /* limita dimensione massima */
    height: auto; /* scala proporzionalmente */
    max-height: 360px; /* altezza massima desktop */
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.storia-blocco img:hover {
    transform: scale(1.03);
}

.storia-blocco .storia-testo {
    flex: 1 1 50%;
    color: #ccc;
    font-family: var(--font-b);
    line-height: 1.6;
}

.storia-testo {
    width: 58%;
    color: #ccc;
    font-family: var(--font-b);
    line-height: 1.8;
    font-size: 1rem;
}

.divider-variant3 {
    text-align: center;
    margin: 100px 0;
    color: white;
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.7);
}

.divider-variant3 .line {
    width: 100px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 1), rgba(255, 180, 180, 0.6));
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
}

.divider-home {
    text-align: center;
    margin: 30px 0;
    color: white;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.7);
}
/* --- VALORI / MISSION PIÙ COMPATTI --- */
.chisiamo-valori {
    background-color: #111;
    padding: 40px 20px;
}

.chisiamo-valori-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.chisiamo-valori-card {
    flex: 0 1 auto; /* card compatto */
    background: #000;
    padding: 15px 20px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    text-align: center;
    min-width: 180px;
}

.chisiamo-valori-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.chisiamo-valori-card h3 {
    font-family: var(--font-t);
    color: var(--accent);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.chisiamo-valori-card p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Linea decorativa sopra footer */
.chisiamo-footer-divider {
    border-top: 2px solid var(--accent);
    margin-top: 60px;
}

/* hero generica per tutte le page */

.page-hero {
    padding-top: 150px;
    height: 40vh;
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-t);
    font-size: 4rem;
    margin: 0;
}

/* Immagine BG per le varie hero */
.hero-menu {
    background-image: url("../../public/images/pizza-bandiera.jpg");
}

.hero-contatti {
    background-image: url("../../public/images/contatti-hero.jpg");
    padding-top: 190px;
}



/* =========================
   CONTATTI PREMIUM
========================= */

.contatti-main {
    padding: 80px 20px;
    background: var(--bg);
}

.contatti-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.contatti-col h3 {
    font-family: var(--font-t);
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contatti-col p {
    color: #ccc;
    font-size: 1rem;
}

.contatti-col a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

.contatti-col a:hover {
    color: var(--accent);
}

/* TELEFONO EVIDENZIATO */

.highlight-phone {
    border: 2px solid var(--accent);
    padding: 30px 40px;
    border-radius: 12px;
    background: #000;
    transition: 0.3s ease;
}

.highlight-phone:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.phone-big {
    font-size: 1.6rem;
    font-weight: 600;
}

/* =========================
   DELIVERY
========================= */

.contatti-delivery {
    padding: 80px 20px;
    text-align: center;
    background: #111;
}

.contatti-delivery h2 {
    font-family: var(--font-t);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 40px;
}

.delivery-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.delivery-btn {
    background: #000;
    padding: 25px 35px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.delivery-btn img {
    width: 140px;
}

.delivery-btn:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

/* BOTTONI DELIVERY ACCATTIVANTI */
.delivery-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.delivery-buttons .delivery-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-family: var(--font-t);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-buttons .delivery-btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.delivery-buttons .delivery-btn span {
    display: inline-block;
}

.delivery-buttons .delivery-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.6);
}

/* =========================
   MAPPA FULL WIDTH
========================= */

.contatti-mappa-full {
    padding-top: 10px;
    background: var(--bg);
    position: relative;
}

.contatti-mappa-full h2 {
    text-align: center;
    font-family: var(--font-t);
    color: var(--accent);
    margin-bottom: 10px;
}

.contatti-mappa-full iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 12px; /* bordi leggermente arrotondati */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* ombra delicata */
}

/* Gradient leggero sopra la mappa per collegarla al blocco superiore */
.contatti-mappa-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px; /* altezza del gradiente */
    background: linear-gradient(to bottom, var(--bg), transparent);
    pointer-events: none;
}

/* =========================
   COOKIE POPUP
========================= */

.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.cookie-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-popup {
    background: #000;
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 40px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    animation: popupFade 0.4s ease;
}

@keyframes popupFade {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-popup h3 {
    font-family: var(--font-t);
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cookie-popup p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-cookie {
    padding: 12px;
    font-family: var(--font-t);
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-accept {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: white;
}

.btn-reject {
    background: transparent;
    border: 2px solid #555;
    color: #ccc;
}

.btn-manage {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.9rem;
}

.btn-cookie:hover {
    transform: translateY(-3px);
}

.cookie-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-links a {
    color: var(--accent);
    font-size: 0.8rem;
    text-decoration: none;
}

.cookie-links a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .cookie-popup {
        margin: 40px;
    }

    .logo-circle {
        width: 90px;
        height: 90px;
        top: 20px;
    }

    .hero {
        height: 85vh;
        justify-content: flex-end;
        padding-bottom: 30px;
    }

    .btn {
        min-width: 220px;
        padding: 20px 40px;
        font-size: 1.5rem;
    }

    .parallax-break {
        background-attachment: scroll;
        height: 50vh;
    }

    .footer-main-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .chisiamo-hero {
        height: 30vh;
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('../../public/images/chi-siamo-hero-mobile.jpg');
        background-size: cover; /* altezza piena, larghezza adattata */
        background-position: center;
        background-repeat: no-repeat;
    }

    .storia-blocco {
        flex-direction: column !important;
        gap: 30px;
    }

    .storia-blocco img {
        width: 100%; /* riempi lo schermo */
        max-width: 100%;
        height: auto; /* scala proporzionalmente */
        max-height: none; /* niente limite su altezza */
        margin: 0 auto;
    }

    .storia-blocco .storia-testo {
        min-width: 100%;
    }

    .chisiamo-valori-container {
        flex-direction: column;
        gap: 20px;
    }

    .nascosto-mobile {
        display: none;
    }

    .contatti-main {
        padding: 60px 20px;
    }

    .highlight-phone {
        width: 100%;
    }

    .phone-big {
        font-size: 1.4rem;
    }

    .delivery-container {
        flex-direction: column;
        gap: 25px;
    }

    .delivery-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}