.elementor-20 .elementor-element.elementor-element-e79e425{--display:flex;--min-height:0px;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-20 .elementor-element.elementor-element-e79e425:not(.elementor-motion-effects-element-type-background), .elementor-20 .elementor-element.elementor-element-e79e425 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-20 .elementor-element.elementor-element-e79e425.e-con{--flex-grow:0;--flex-shrink:0;}.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-20 .elementor-element.elementor-element-e79e425{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-9803a6e *//* ============================================== */
/* VARIABLES GLOBALES (Réutilisées du Navbar)     */
/* ============================================== */
:root {
    --red-color: #e73350;
    --font-weight-light: 300; 
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Variables spécifiques au footer */
    --footer-bg: #000000;
    --footer-text-color: #ffffff;
    --footer-link-color: rgba(255, 255, 255, 0.7); 
    --footer-link-hover: var(--red-color);
    --social-icon-size: 40px;
}


/* ============================================== */
/* 4. FOOTER                                      */
/* ============================================== */
.footer {
    background-color: var(--footer-bg);
    padding: 60px 40px;
    width: 100%;
    color: var(--footer-text-color);
    /* Applique Poppins Light par défaut */
    font-weight: var(--font-weight-light); 
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- LOGO ET TEXTE --- */
.footer-logo {
    display: flex;
    align-items: center;
    color: var(--footer-text-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-logo .logo-icon img {
    height: 65px;
    margin-right: 15px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    /* Conserve le gras pour le nom principal */
    font-weight: var(--font-weight-bold); 
}

.footer-logo .logo-text span {
    font-size: 0.6em;
    /* Le sous-texte 'CLUB DE SPORTS' en Medium */
    font-weight: var(--font-weight-medium); 
    opacity: 0.8;
}

/* --- LIENS LÉGAUX (CONTACT | MENTIONS) --- */
.footer-links {
    font-size: 0.85em;
}

.footer-links a {
    color: var(--footer-link-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: var(--font-weight-light); 
}

.footer-links a:hover {
    color: var(--footer-link-hover);
}

.footer-links span {
    color: var(--footer-link-color);
    margin: 0 10px;
    font-weight: var(--font-weight-light); 
}

/* --- ICÔNES SOCIALES --- */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    /* Conteneur cercle */
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--social-icon-size);
    height: var(--social-icon-size);
    border: 2px solid var(--footer-text-color);
    border-radius: 50%;
    color: var(--footer-text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* STYLE POUR LES ICÔNES FONT AWESOME À L'INTÉRIEUR DU CERCLE */
.social-icon i {
    font-size: 1.1em; /* Taille de l'icône elle-même */
    line-height: 1; /* Assure le centrage vertical */
}

/* Effet au survol */
.social-icon:hover {
    background-color: var(--red-color);
    border-color: var(--red-color);
    color: var(--footer-text-color);
}


/* ============================================== */
/* FOOTER RESPONSIVE (Mobile)                     */
/* ============================================== */
@media (max-width: 768px) {
    .footer { padding: 40px 20px; }
    
    .footer-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .footer-logo { margin-bottom: 20px; }
    
    .footer-right { width: 100%; }
    
    .social-icons { justify-content: center; }
}/* End custom CSS */