.elementor-85 .elementor-element.elementor-element-d474f10{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-34aba50 *//* ===== RESET HEADER ===== */
.main-header,
.main-header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== HEADER PRINCIPAL ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0B3728;
    border-bottom: 2px solid #D5C393;
    z-index: 10000;
    transition: all 0.3s ease;
}

/* Ajustement pour la barre d'admin WordPress */
.admin-bar .main-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .main-header {
        top: 46px;
    }
}

/* Container header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
}

/* ===== LOGO ===== */
.logo .logo-link {
    text-decoration: none;
    color: #D5C393;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo .logo-link:hover {
    color: #ffffff;
    transform: scale(1.05);
}

.logo-text {
    display: inline-block;
    padding: 5px 0;
}

/* ===== NAVIGATION DESKTOP ===== */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #D5C393;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D5C393;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== BOUTON CTA DESKTOP ===== */
.header-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #D5C393;
    color: #0B3728;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #D5C393;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: #D5C393;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 195, 147, 0.3);
}

/* ===== BOUTON BURGER MOBILE ===== */
.mobile-menu-toggle {
    display: none;
}

.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: #D5C393;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-btn:hover .burger-line {
    background: #ffffff;
}

.burger-btn:hover {
    transform: scale(1.1);
}

/* ===== NAVIGATION MOBILE ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0B3728;
    z-index: 10001;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

/* Header mobile */
.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid rgba(213, 195, 147, 0.3);
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-icon {
    font-size: 2.5rem;
    color: #D5C393;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-btn:hover .close-icon {
    color: #ffffff;
    transform: scale(1.2);
}

/* Contenu navigation mobile */
.mobile-nav-content {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-menu {
    list-style: none;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-menu li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(213, 195, 147, 0.2);
}

.mobile-nav-link {
    display: block;
    color: #D5C393;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 15px 0;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav-link:hover {
    color: #ffffff;
    transform: translateX(10px);
}

/* CTA Mobile */
.mobile-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-button.mobile {
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* ===== OVERLAY ===== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 55, 40, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== ANIMATIONS BURGER ===== */
.burger-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HEADER SCROLL ===== */
.main-header.scrolled {
    background: rgba(11, 55, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .logo .logo-link {
        font-size: 1.5rem;
    }
    
    .mobile-nav {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        height: 60px;
    }
    
    .logo .logo-link {
        font-size: 1.3rem;
    }
    
    .mobile-nav-content {
        padding: 30px 15px;
    }
    
    .mobile-nav-link {
        font-size: 1.2rem;
        padding: 12px 0;
    }
    
    .burger-btn {
        width: 35px;
        height: 35px;
    }
    
    .burger-line {
        width: 20px;
        height: 2px;
    }
}

/* ===== ACCESSIBILITÉ ===== */
@media (prefers-reduced-motion: reduce) {
    .main-header,
    .nav-link,
    .cta-button,
    .burger-btn,
    .mobile-nav,
    .close-btn {
        transition: none;
    }
}

/* Focus visible pour accessibilité */
.nav-link:focus,
.cta-button:focus,
.burger-btn:focus,
.close-btn:focus {
    outline: 2px solid #D5C393;
    outline-offset: 2px;
}

/* ===== COMPATIBILITÉ WORDPRESS ===== */
.admin-bar .mobile-nav {
    top: 32px;
    height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .mobile-nav {
        top: 46px;
        height: calc(100vh - 46px);
    }
}/* End custom CSS */