/* ========================================
   FOOTER SIMPLIFIÉ - 4 LIENS UNIQUEMENT
   ======================================== */

/* Container principal simplifié */
.footer-simplified {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section des liens principaux */
.footer-links-centered {
    width: 100%;
    text-align: center;
}

.footer-main-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.footer-main-links li {
    margin: 0;
}

.footer-main-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-weight: 300;
    position: relative;
    padding-bottom: 5px;
}

/* Effet hover avec underline */
.footer-main-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

.footer-main-links a:hover::after {
    width: 100%;
}

.footer-main-links a:hover {
    opacity: 0.8;
}

/* Section réseaux sociaux centrée */
.footer-social-centered {
    text-align: center;
}

.footer-social-centered h3 {
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer-social-centered .social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social-centered .social-links li {
    margin: 0;
}

.footer-social-centered .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(26, 26, 26, 0.3);
    border-radius: 50%;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social-centered .social-links a:hover {
    background-color: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Copyright et ligne finale */
.footer-final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
}

.footer-final-row .copyright {
    color: rgba(26, 26, 26, 0.7);
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
}

.footer-final-row .footer-link {
    color: rgba(26, 26, 26, 0.7);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-final-row .footer-link:hover {
    color: #1a1a1a;
}

/* Masquer le sélecteur de langue qui n'est plus utilisé */
.language-selector {
    display: none;
}

/* ========================================
   RESPONSIVE MOBILE
   ======================================== */

@media (max-width: 768px) {
    .footer-simplified {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .footer-main-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-main-links a {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .footer-social-centered h3 {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .footer-social-centered .social-links {
        gap: 15px;
    }
    
    .footer-social-centered .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .footer-final-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .footer-final-row .copyright {
        order: 2;
        font-size: 11px;
    }
    
    .footer-final-row .footer-link {
        order: 1;
        font-size: 11px;
    }
}

/* ========================================
   AJUSTEMENTS POUR FOOTER EXISTANT
   ======================================== */

/* Masquer les anciennes colonnes qui ne sont plus utilisées */
.footer-columns-grid:not(.footer-simplified) {
    display: none;
}

/* Background clair pour le footer */
.site-footer {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

/* Section du bas du footer avec fond légèrement différent */
.footer-bottom-section {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Newsletter section reste inchangée */
.footer-top-section.full-width-newsletter {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

/* Bouton retour en haut */
.back-to-top-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top-float.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-float:hover {
    background-color: #333;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .back-to-top-float {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}