/* ===== FOOTER PRO - VERSION COMPACTE & CORRIGÉE ===== */
.site-footer {
    background-color: #ffffff;
    color: #545454;
    padding: 30px 0 20px; /* J'ai réduit la hauteur ici (c'était 60px) */
    font-family: 'Roboto', 'Poppins', sans-serif;
    border-top: 1px solid #e1e4e8;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 2rem;
    gap: 1.5rem; /* Espacement réduit entre les colonnes */
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 10px;
}

/* Titres des sections */
.footer-section h3 {
    color: #333333;
    font-size: 1rem; /* Titre légèrement plus petit */
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background-color: #CF8CD6;
    margin-top: 5px;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.9rem; /* Texte un peu plus fin */
}

/* Listes de liens */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #545454;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-section a:hover {
    color: #CF8CD6;
    transform: translateX(3px);
}

/* ===== CORRECTION DES ICÔNES RÉSEAUX SOCIAUX ===== */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    display: flex !important;           /* On force le Flexbox */
    justify-content: center !important; /* On force le centrage horizontal */
    align-items: center !important;     /* On force le centrage vertical */

    width: 35px;
    height: 35px;
    padding: 0 !important;  /* On interdit tout padding qui décalerait l'icône */

    border-radius: 50%;
    background-color: #f8f9fa;
    color: #555;
    text-decoration: none;
    border: 1px solid #e1e4e8;
    transition: all 0.3s ease;

    /* Astuce pour éviter les décalages de ligne */
    line-height: 0 !important;
}

/* C'est ici que se joue le centrage précis de l'icône */
.social-link i,
.social-link svg {
    margin: 0 !important;  /* Supprime la marge invisible souvent présente sur les icônes */
    padding: 0 !important;
    font-size: 16px;
    display: block;        /* Comportement bloc pour bien réagir au centrage */
    line-height: 1 !important;
}

/* Effet au survol */
.social-link:hover {
    background-color: #CF8CD6;
    border-color: #CF8CD6;
    transform: translateY(-2px);
}

/* Force la couleur blanche au survol */
.social-link:hover i {
    color: #ffffff !important;
}

/* Copyright en bas */
.footer-bottom {
    text-align: center;
    padding-top: 15px; /* Espacement réduit */
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
    color: #888;
    font-size: 0.8rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}