/* Effet de battement/pulsation rétro-éclairé (neon green #39FF14) pour le menu principal */

@keyframes pulse-glow-1f1336e0 {
    0% {
        box-shadow: 0 0 15px rgba(57, 255, 20, 0.4), 
                    0 0 30px rgba(57, 255, 20, 0.2), 
                    inset 0 0 10px rgba(57, 255, 20, 0.15) !important;
        border-color: rgba(57, 255, 20, 0.45) !important;
    }
    50% {
        box-shadow: 0 0 35px rgba(57, 255, 20, 0.75), 
                    0 0 65px rgba(57, 255, 20, 0.45), 
                    inset 0 0 20px rgba(57, 255, 20, 0.3) !important;
        border-color: rgba(57, 255, 20, 0.85) !important;
    }
    100% {
        box-shadow: 0 0 15px rgba(57, 255, 20, 0.4), 
                    0 0 30px rgba(57, 255, 20, 0.2), 
                    inset 0 0 10px rgba(57, 255, 20, 0.15) !important;
        border-color: rgba(57, 255, 20, 0.45) !important;
    }
}

/* On cible le conteneur du menu d'en-tête (souvent .elementor-location-header ou des classes de header spécifiques) */
.elementor-location-header, 
header.site-header,
.main-navigation-container-glow {
    animation: pulse-glow-1f1336e0 4s infinite ease-in-out;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 1.5px solid rgba(57, 255, 20, 0.5) !important;
}
