.elementor-19 .elementor-element.elementor-element-c6c4931{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-daf4ae4 */.main-header {
    background-color: var(--color-bg-light);
    box-shadow: 0 2px 10px rgba(26, 43, 73, 0.05);
    position: sticky !important;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-logo {
    height: 60px !important;
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-blue-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--color-orange-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-orange-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    font-family: var(--font-title);
    font-size: 16px; 
    font-style: italic;
    color: var(--color-bg-light);
    background-color: var(--color-blue-dark);
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-blue-dark);
    display: inline-block;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--color-blue-dark);
    box-shadow: 0 4px 15px rgba(26, 43, 73, 0.15);
}

.menu-checkbox, .burger-label, .mobile-cta-item {
    display: none;
}

/* ==========================================================================
   CORRECTIF FORCE STICKY HEADER
   ========================================================================== */
/* Élimine les blocages potentiels sur les conteneurs parents d'Elementor */
.elementor-section-wrap, 
.elementor-page,
#page, 
#content {
    overflow: visible !important;
}

/* Forçage absolu de la fixation du Header */
.main-header {
    position: -webkit-sticky !important; /* Pour la compatibilité Safari */
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important; /* Augmenté pour passer devant les widgets Elementor */
}

@media (max-width: 992px) {
    
    .header-cta {
        display: none;
    }

    .burger-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        cursor: pointer;
        z-index: 1010;
    }

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--color-blue-dark);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .menu-checkbox:checked + .burger-label .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--color-orange-gold);
    }
    .menu-checkbox:checked + .burger-label .burger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-checkbox:checked + .burger-label .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--color-orange-gold);
    }

    .main-nav {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-light);
        padding: 50px 40px;
        box-sizing: border-box;
        border-top: 1px solid rgba(26, 43, 73, 0.05);
        
        /* Animation de glissement et opacité */
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none; /* Empêche de cliquer quand c'est fermé */
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
        z-index: 1005;
    }

    /* Alignement vertical des liens sur mobile */
    .main-nav ul {
        flex-direction: column;
        gap: 35px;
        align-items: flex-start;
        width: 100%;
    }

    .nav-link {
        font-size: 18px; /* Un peu plus grand sur mobile pour le confort du doigt */
        display: block;
        width: 100%;
    }

    /* Afficher le CTA dans la liste mobile */
    .mobile-cta-item {
        display: block;
        margin-top: 15px;
        width: 100%;
    }
    .mobile-cta-item .cta-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 14px 22px;
    }

    /* APPARITION DU MENU quand la case est cochée */
    .menu-checkbox:checked ~ .main-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-c6c4931 */.elementor-19 .elementor-element.elementor-element-c6c4931 {
    background-color: var(--color-bg-light);
    box-shadow: 0 2px 10px rgba(26, 43, 73, 0.05);
    position: fixed !important; /* Devient fixe par rapport à l'écran */
    top: 0;
    left: 0;
    z-index: 99999 !important; /* Passe au-dessus de tout sans exception */
    width: 100%;
    height: 80px;
}/* End custom CSS */