.elementor-162 .elementor-element.elementor-element-3e2a353{--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;}.elementor-162 .elementor-element.elementor-element-3e2a353:not(.elementor-motion-effects-element-type-background), .elementor-162 .elementor-element.elementor-element-3e2a353 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-b045098 );}.elementor-162 .elementor-element.elementor-element-b1aa385{--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;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-162 .elementor-element.elementor-element-3e2a353{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-0dc6bf8 *//* --- CONFIGURATION GLOBALE --- */
.footer-elite-wrapper {
    --fe-brown: #603F35;
    --fe-cream: #FAF3E8;
    --fe-ease: cubic-bezier(0.19, 1, 0.22, 1);
    
    background-color: var(--fe-brown);
    color: var(--fe-cream);
    padding: 80px 50px 40px 50px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

/* --- SECTION HAUTE --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

/* IDENTITÉ */
.footer-identity {
    flex: 1;
    min-width: 300px;
}

.footer-name {
    font-family: 'Georgia', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin: 0 0 10px 0;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--fe-cream);
}

.footer-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    display: block;
    margin-top: 15px;
    color: var(--fe-cream);
}

/* NAVIGATION (LIENS) */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 200px;
}

.footer-link {
    text-decoration: none;
    color: var(--fe-cream) !important; 
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(250, 243, 232, 0.1);
    transition: all 0.4s var(--fe-ease);
}

.footer-link:visited, 
.footer-link:active, 
.footer-link:focus {
    color: var(--fe-cream) !important;
}

.footer-link:hover {
    padding-left: 15px;
    border-color: var(--fe-cream);
    opacity: 1;
    color: var(--fe-cream) !important; 
}

/* --- GESTION DES FLÈCHES SVG --- */
.link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--fe-ease);
    color: var(--fe-cream) !important; /* Force la couleur du SVG */
}

/* Taille de l'icone SVG */
.link-arrow svg {
    width: 20px; 
    height: 20px;
}

.footer-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--fe-cream) !important;
}

/* --- SÉPARATEUR --- */
.footer-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(250, 243, 232, 0.1);
    margin-bottom: 40px;
}

/* --- SECTION BASSE --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.copyright-block p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.6;
    color: var(--fe-cream);
}

.design-by {
    font-weight: 600;
    opacity: 0.8 !important;
}

/* --- BOUTON RETOUR HAUT --- */
.back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    group: hover;
    color: var(--fe-cream) !important;
}

.top-text {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--fe-cream) !important;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.top-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(250, 243, 232, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--fe-ease);
    color: var(--fe-cream) !important;
}

.back-to-top:hover .top-icon {
    background-color: var(--fe-cream);
    color: var(--fe-brown) !important;
    transform: translateY(-5px);
}

.back-to-top:hover .top-text {
    opacity: 1;
}

.top-icon svg {
    width: 20px;
    height: 20px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .footer-elite-wrapper {
        padding: 50px 20px 30px 20px;
        border-radius: 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-name {
        font-size: 2.5rem;
    }

    .footer-nav {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 40px;
    }

    .back-to-top {
        flex-direction: row;
    }

    .copyright-block {
        width: 100%;
        border-top: 1px solid rgba(250, 243, 232, 0.1);
        padding-top: 20px;
    }
}/* End custom CSS */