#fw-section-header {

/* ==================================================
   MENU CAPSULE : STYLE "BLACK PILL" + RELIEF 3D
   ================================================== */

/* 1. LA CAPSULE GLOBALE (Base) */
header, 
.header-wrapper, 
[data-section-type="header"] {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    
    /* IMPORTANT : On inclut la translation de base ici */
    transform: translateX(-50%) translateY(0) !important; 
    z-index: 999999 !important;

    /* Dimensions */
    width: auto !important;
    min-width: 500px !important;
    max-width: 90% !important;
    padding: 8px 30px !important;

    /* Fond Verre Blanc */
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    
    /* Contours */
    border-radius: 100px !important;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    
    /* Ombre de base (douce) */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;

    /* Alignement */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    /* AJOUT : Transition fluide pour l'effet de relief */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* 1b. NOUVEAU : LE SURVOL DE LA CAPSULE (Effet Relief) */
header:hover, 
.header-wrapper:hover, 
[data-section-type="header"]:hover {
    /* On garde le centrage X (-50%) et on monte un peu en Y (-5px) */
    transform: translateX(-50%) translateY(-5px) !important;

    /* L'ombre devient plus grande et plus diffuse pour simuler la hauteur */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    
    /* Optionnel : bordure légèrement plus brillante */
    border-color: #ffffff !important;
}

/* 2. LES LIENS (Au repos : Simple et Clean) */
header a, nav a, .nav-link {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    color: #222 !important;
    
    padding: 10px 20px !important;
    border-radius: 50px !important;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-decoration: none !important;
    background: transparent !important;
}

/* 3. L'EFFET "DARK PILL" (Au survol des liens) */
header a:hover, nav a:hover, .nav-link:hover {
    background-color: #000000 !important; 
    color: #00B4FF !important; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* 4. LE LOGO */
header img {
    max-height: 38px !important;
    width: auto !important;
    transition: transform 0.3s ease;
}
header img:hover {
    transform: scale(1.1);
}

/* 5. MOBILE */
@media (max-width: 768px) {
    header, .header-wrapper {
        min-width: 90% !important;
        top: 15px !important;
        padding: 8px 15px !important;
    }
    header a {
        font-size: 10px !important;
        padding: 6px 12px !important;
    }
}

/* 6. PADDING BODY */
body {
    padding-top: 130px !important;
}
}