.elementor-11438 .elementor-element.elementor-element-d569f87{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11438 .elementor-element.elementor-element-e9fe24a > .elementor-widget-container{padding:0px 0px 0px 0px;}.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-e9fe24a *//* --- 1. VARIABLES --- */
:root {
    /* Vos Couleurs */
    --primary-red: #E30613;
    --primary-orange: #F39200;
    --primary-yellow: #FFDE07;
    --primary-green: #006633;
    --primary-blue: #36A9E1;
    --primary-purple: #662483;
    --primary-navy: #312783;
    --text-dark: #1D1D1B;
    --primary-dark-gray: #4a4a4a;
    --primary-white: #ffffff;
    
    /* Couleurs du Header */
    --sq-dark: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* FIX DÉBORDEMENT */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body { 
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

a { text-decoration: none; }

/* --- 2. LOGO CSS --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-dark);
    flex-shrink: 0;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.4s ease;
}

.logo-link {
    position: relative;
    z-index: 20; 
    background-color: transparent;
}

.logo-squares {
    display: grid;
    grid-template-columns: repeat(3, 10px);
    grid-template-rows: repeat(3, 10px);
    gap: 2px;
    animation: pulse-logo 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.square {
    width: 10px; 
    height: 10px; 
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Couleurs des carrés */
.square:nth-child(1) { background: var(--primary-white); border: 1px solid #ddd; }
.square:nth-child(2) { background: var(--primary-red); }
.square:nth-child(3) { background: var(--primary-dark-gray); }
.square:nth-child(4) { background: var(--primary-yellow); }
.square:nth-child(5) { background: var(--primary-orange); }
.square:nth-child(6) { background: var(--primary-navy); }
.square:nth-child(7) { background: var(--primary-blue); }
.square:nth-child(8) { background: var(--primary-green); }
.square:nth-child(9) { background: var(--primary-purple); }

.logo:hover .square {
    transform: rotate(45deg) scale(1.2);
}

/* --- 3. STRUCTURE DU HEADER --- */
.custom-navbar {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0;
    width: 100vw; 
    display: flex; 
    justify-content: center;
    z-index: 9999; 
    padding: 20px 10px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

body.admin-bar .custom-navbar { top: 32px; }

.nav-inner {
    width: 100%; 
    max-width: 1400px; 
    height: 80px;
    background: transparent; 
    border: 1px solid transparent; 
    box-shadow: none;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 0 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-sizing: border-box;
}

/* Menu Desktop */
.nav-links { 
    display: flex; 
    gap: 30px; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    width: auto; 
    justify-content: center;
}

.nav-item a {
    color: var(--sq-dark); 
    font-weight: 600; 
    font-size: 1.5rem;
    position: relative; 
    transition: color 0.3s;
}

.nav-item a::after {
    content:''; 
    position: absolute; 
    bottom: -6px; 
    left: 50%; 
    transform: translateX(-50%) scale(0);
    width: 6px; 
    height: 6px; 
    background: var(--primary-blue); 
    border-radius: 50%; 
    transition: 0.3s;
}

.nav-item a:hover::after { 
    transform: translateX(-50%) scale(1); 
}

.nav-item a.active {
    color: var(--primary-orange);
    font-weight: 700;
}

.nav-item a.active::after {
    background: var(--primary-orange);
    transform: translateX(-50%) scale(1);
}

/* Bouton CTA */
.nav-cta {
    background: var(--sq-dark); 
    color: white !important;
    padding: 12px 30px; 
    border-radius: 50px; 
    font-weight: 700;
    transition: 0.3s; 
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.2);
    white-space: nowrap;
}

.nav-cta:hover { 
    transform: translateY(-2px); 
    background: var(--primary-blue); 
}

/* Burger Mobile */
.burger { 
    display: none; 
    cursor: pointer; 
    flex-direction: column; 
    gap: 6px;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10000;
}

.line { 
    width: 25px; 
    height: 2px; 
    background: var(--sq-dark); 
    border-radius: 2px; 
    transition: 0.4s;
    display: block;
}

/* EFFET SCROLL */
.custom-navbar.scrolled { 
    top: 10px; 
}

body.admin-bar .custom-navbar.scrolled { 
    top: 42px; 
}

.custom-navbar.scrolled .nav-inner {
    max-width: 900px;
    height: 65px;
    padding: 0 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.custom-navbar.scrolled .nav-cta:hover {
    background: var(--primary-blue);
}

.custom-navbar.scrolled .nav-item a {
    font-size: 1.2rem;
}

.custom-navbar.scrolled .nav-links {
    position: static !important;
    transform: none !important;
    margin-left: auto; 
    margin-right: auto;
    gap: 20px;
}

/* Menu Mobile Overlay */
.mobile-menu-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh;
    background: #fff; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    z-index: 9998;
    clip-path: circle(0% at 100% 0%); 
    transition: clip-path 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-overlay.active { 
    clip-path: circle(150% at 100% 0%); 
}

.mobile-link { 
    font-size: 2rem; 
    font-weight: 800; 
    color: var(--sq-dark); 
    margin: 15px 0;
    transition: color 0.3s ease;
}

.mobile-link.active {
    color: var(--primary-orange);
}

/* ===== TRÈS GRANDS ÉCRANS (1600px+) ===== */
@media (min-width: 1600px) {
    .nav-inner {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .nav-links { gap: 40px; }
    .nav-item a { font-size: 1.6rem; }
    .logo { font-size: 1.5rem; gap: 15px; }
    
    .logo-squares {
        grid-template-columns: repeat(3, 12px);
        grid-template-rows: repeat(3, 12px);
    }
    
    .square { width: 12px; height: 12px; }
}

/* ===== GRANDS ÉCRANS (1300px - 1599px) ===== */
@media (min-width: 1300px) and (max-width: 1599px) {
    .nav-inner { 
        position: relative;
        max-width: 1400px;
    }
    
    .nav-links {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        justify-content: center;
        white-space: nowrap;
        gap: 30px;
    }
    
    .nav-item a { font-size: 1.5rem; }
}

/* ===== ÉCRANS MOYENS-LARGES (1100px - 1299px) ===== */
@media (min-width: 1100px) and (max-width: 1299px) {
    .nav-inner { max-width: 1200px; padding: 0 30px; }
    .nav-links { gap: 25px; }
    .nav-item a { font-size: 1.3rem; }
    .nav-cta { padding: 10px 25px; font-size: 0.95rem; }
    .logo { font-size: 1.2rem; }
}

/* ===== TRANSITION DESKTOP/TABLET (1000px - 1099px) ===== */
@media (min-width: 1000px) and (max-width: 1099px) {
    .nav-inner { padding: 0 25px; }
    .nav-links { gap: 20px; }
    .nav-item a { font-size: 1.2rem; }
    .nav-cta { padding: 10px 20px; font-size: 0.9rem; }
    .logo { font-size: 1.1rem; gap: 10px; }
}

/* ===== TABLETTES (max 1000px) ===== */
@media (max-width: 1000px) {
    .nav-links, .nav-cta { display: none; }
    .burger { display: flex; }
    
    .custom-navbar {
        padding: 15px 8px;
    }
    
    .nav-inner { 
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .custom-navbar.scrolled .nav-inner { 
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
        border-radius: 16px;
        padding: 0 15px;
    }
    
    .logo { font-size: 1.1rem; gap: 8px; }
    .square { width: 8px; height: 8px; }
    .logo-squares { 
        grid-template-columns: repeat(3, 8px); 
        grid-template-rows: repeat(3, 8px); 
    }
}

/* ===== TABLETTES (600px - 767px) ===== */
@media (min-width: 600px) and (max-width: 767px) {
    .custom-navbar { padding: 12px 8px; }
    .nav-inner { padding: 0 12px; height: 70px; }
    .logo { font-size: 1.05rem; gap: 8px; }
    
    .logo-squares {
        grid-template-columns: repeat(3, 9px);
        grid-template-rows: repeat(3, 9px);
    }
    
    .square { width: 9px; height: 9px; }
    .burger { gap: 5px; }
    .line { width: 22px; }
    .mobile-link { font-size: 1.8rem; margin: 12px 0; }
}

/* ===== SMARTPHONES LARGES (480px - 599px) ===== */
@media (min-width: 480px) and (max-width: 599px) {
    .custom-navbar { padding: 10px 6px; }
    .nav-inner { padding: 0 10px; height: 65px; }
    .logo { font-size: 1rem; gap: 7px; }
    
    .logo-squares {
        grid-template-columns: repeat(3, 8px);
        grid-template-rows: repeat(3, 8px);
        gap: 1.5px;
    }
    
    .square { width: 8px; height: 8px; }
    .burger { gap: 4px; }
    .line { width: 20px; }
    .mobile-link { font-size: 1.6rem; margin: 10px 0; }
    
    .custom-navbar.scrolled .nav-inner { 
        width: calc(100% - 12px);
        padding: 0 12px;
        height: 60px;
    }
}

/* ===== SMARTPHONES MOYENS (375px - 479px) ===== */
@media (min-width: 375px) and (max-width: 479px) {
    .custom-navbar { padding: 8px 5px; }
    .nav-inner { padding: 0 8px; height: 60px; }
    .logo { font-size: 0.95rem; gap: 6px; }
    
    .logo-squares {
        grid-template-columns: repeat(3, 7px);
        grid-template-rows: repeat(3, 7px);
        gap: 1.5px;
    }
    
    .square { width: 7px; height: 7px; }
    .burger { gap: 4px; }
    .line { width: 18px; }
    .mobile-link { font-size: 1.5rem; margin: 8px 0; }
    
    .custom-navbar.scrolled .nav-inner { 
        width: calc(100% - 10px);
        padding: 0 10px;
        height: 55px;
    }
    
    body.admin-bar .custom-navbar { top: 46px; }
}

/* ===== PETITS SMARTPHONES (max 374px) ===== */
@media (max-width: 374px) {
    .custom-navbar { padding: 6px 4px; }
    .nav-inner { padding: 0 6px; height: 55px; }
    .logo { font-size: 0.85rem; gap: 5px; }
    
    .logo-squares {
        grid-template-columns: repeat(3, 6px);
        grid-template-rows: repeat(3, 6px);
        gap: 1px;
    }
    
    .square { width: 6px; height: 6px; }
    .burger { gap: 3px; }
    .line { width: 16px; }
    .mobile-link { font-size: 1.3rem; margin: 8px 0; }
    
    .custom-navbar.scrolled .nav-inner { 
        width: calc(100% - 8px);
        padding: 0 8px;
        height: 50px;
    }
}

/* ===== MODE PAYSAGE MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-menu-overlay { 
        justify-content: flex-start; 
        padding-top: 80px; 
    }
    .mobile-link { font-size: 1.3rem; margin: 6px 0; }
    .nav-inner { height: 55px; }
    .custom-navbar { padding: 8px 5px; }
}

/* ===== ZONES TACTILES MOBILES ===== */
@media (hover: none) and (pointer: coarse) {
    .burger { 
        position: relative;
    }
    
    .burger::before {
        content: '';
        position: absolute;
        top: -10px;
        right: -10px;
        bottom: -10px;
        left: -10px;
    }
    
    .mobile-link { padding: 10px 20px; margin: 8px 0; }
}

/* ===== ÉCRANS ULTRA-LARGES (2K+) ===== */
@media (min-width: 2000px) {
    .nav-inner { max-width: 1800px; }
    .nav-item a { font-size: 1.7rem; }
    .logo { font-size: 1.6rem; }
    .nav-links { gap: 50px; }
}/* End custom CSS */