.elementor-5615 .elementor-element.elementor-element-82e2315{--display:flex;}/* Start custom CSS for html, class: .elementor-element-24d57c9 *//* --- RESET LOCAL --- */
.nova-header a {
    text-decoration: none !important;
    color: inherit; /* Force à ignorer le bleu par défaut */
}

/* --- LE HEADER --- */
.nova-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    background: rgba(11, 13, 17, 0.85); /* Plus opaque pour la lisibilité */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.header-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Pousse le logo à gauche et nav à droite */
    align-items: center;
}

/* --- LOGO --- */
.header-logo-img {
    height: 90px!important; 
    width: auto;
    display: block;
}

/* --- NAVIGATION (C'est ici qu'on gère le "collé") --- */
.header-nav {
    display: flex;
    align-items: center;
    gap: 40px; /* L'espace entre tes liens */
}

.nav-item {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff !important; /* Force le blanc */
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.nav-item:hover {
    opacity: 0.7;
}

/* BOUTON CONTACT UNIQUE */
.cta-contact {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 22px;
    border-radius: 5px;
    background: rgba(255,255,255,0.03);
}

.cta-contact:hover {
    background: #ffffff;
    color: #000000 !important;
}

/* --- LE CARRÉ À DROITE (On le cache enfin !) --- */
.menu-toggle {
    display: none; /* CACHÉ SUR DESKTOP */
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 850px) {
    .header-nav {
        display: none; /* Cache la nav classique */
    }
    .menu-toggle {
        display: block; /* Affiche le burger sur mobile uniquement */
    }
}/* End custom CSS */