.elementor-606 .elementor-element.elementor-element-bfda524{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-end;}.elementor-606 .elementor-element.elementor-element-e9bd305{width:auto;max-width:auto;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for shortcode, class: .elementor-element-e9bd305 *//* --- 1. HAMBURGER ICON (Minimale & Bianco) --- */
.std-hamburger {
    position: relative;
    z-index: 10000;
    cursor: pointer;
    padding: 10px; /* Area cliccabile sicura */
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dimensione Icona */
.std-hamburger-box {
    width: 24px; /* Larghezza ridotta per look minimale */
    height: 18px; 
    display: inline-block;
    position: relative;
}

/* Linee dell'Hamburger */
.std-hamburger-inner, 
.std-hamburger-inner::before, 
.std-hamburger-inner::after {
    width: 24px; /* Deve coincidere con hamburger-box */
    height: 2px; /* Linee più sottili */
    background-color: #ffffff; /* COLORE BIANCO */
    border-radius: 2px;
    position: absolute;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.std-hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.std-hamburger-inner::before, 
.std-hamburger-inner::after {
    content: "";
    display: block;
}

.std-hamburger-inner::before { top: -7px; } /* Distanza linee ridotta */
.std-hamburger-inner::after { bottom: -7px; }

/* --- ANIMAZIONE & STATO ATTIVO (La X) --- */
/* Quando attivo, diventa una X NERA (per contrasto su sfondo menu bianco) */
.std-hamburger.is-active .std-hamburger-inner {
    background-color: transparent !important;
}

.std-hamburger.is-active .std-hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
    background-color: #000000; /* La X diventa nera */
}

.std-hamburger.is-active .std-hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: #000000; /* La X diventa nera */
}

/* --- 2. OVERLAY MENU (Slide Up) --- */
.std-slideup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff; /* Sfondo del menu aperto */
    z-index: 9999;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.std-slideup-overlay.active {
    height: 100vh;
}

/* --- 3. MENU ITEMS & RESPONSIVE --- */
.std-menu-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    width: 90%; /* Margine di sicurezza laterale */
    max-width: 800px;
}

.std-slideup-overlay.active .std-menu-container {
    opacity: 1;
    transform: translateY(0);
}

ul.std-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Spaziatura desktop */
}

ul.std-menu-list li a {
    font-family: inherit; /* Prende il font globale di Elementor */
    font-size: 3rem;      /* Dimensione grande Desktop */
    font-weight: 400;     /* Peso leggero */
    text-decoration: none;
    color: #000000;
    line-height: 1.1;
    transition: opacity 0.3s;
}

ul.std-menu-list li a:hover {
    font-style: italic;
    opacity: 0.6;
}

/* --- RESPONSIVE MOBILE (Max 768px) --- */
@media (max-width: 768px) {
    /* Riduci spaziature lista */
    ul.std-menu-list {
        gap: 1.5rem; 
    }

    /* Riduci dimensione font per stare nello schermo */
    ul.std-menu-list li a {
        font-size: 2rem; 
    }
    
    /* Aggiusta l'hamburger se necessario */
    .std-hamburger {
        padding: 5px; /* Meno spazio attorno su mobile */
    }
}

/* --- RESPONSIVE PICCOLI (Max 480px) --- */
@media (max-width: 480px) {
    ul.std-menu-list li a {
        font-size: 1.6rem; /* Ancora più piccolo per schermi stretti */
    }
}/* End custom CSS */