/* --- FIX FINAL : MASQUER LE SAUT DU MENU --- */

/* 1. On cible le menu principal dans le header spécifiquement */
.elementor-location-header .elementor-nav-menu {
    /* ÉTAT INITIAL : Invisible mais occupe de la place (pour ne pas casser le header) */
    opacity: 0; 
    
    /* ANIMATION : Devient visible doucement */
    /* duration: 0.4s (vitesse d'apparition) */
    /* delay: 0.2s (temps d'attente pour laisser le bug passer inaperçu) */
    animation: wpmaster-reveal 0.8s ease-out forwards;
    animation-delay: 0.2s; 
}

/* 2. La mécanique de l'animation */
@keyframes wpmaster-reveal {
    from {
        opacity: 0;
        transform: translateY(-4px); /* Petit effet de glissement subtil vers le bas */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}