/* --- FOOTER GLOBAL --- */
.site-footer {
    background-color: #212529 !important; /* Ton Gris Menu */
    color: #e0e0e0 !important;            /* Texte clair par défaut */
    border-top: 4px solid #edc13b;        /* Ligne OR */
    font-size: 0.95rem;
    /* Optionnel : Empêche le footer de coller au contenu du dessus */
    margin-top: auto; 
}

/* TEXTE DE DESCRIPTION (Le paragraphe qui était trop foncé) */
.site-footer p {
    color: #d0d0d0 !important; /* Gris très clair (Gris Perle) */
    line-height: 1.6;
}

/* TITRE LOGO (UFC-FR) */
.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #ffffff !important;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* TITRES DES COLONNES */
.footer-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-left: 3px solid #edc13b; /* Petite barre OR déco à gauche */
    padding-left: 10px;
}

/* LIENS ET LISTES */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d0d0d0 !important; /* Gris clair */
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    font-family: 'Roboto', sans-serif; /* Police lecture propre */
}

/* SURVOL DES LIENS */
.footer-links a:hover {
    color: #edc13b !important; /* Devient OR */
    padding-left: 5px;         /* Décalage vers la droite */
}

/* ICONES DANS LES LIENS (Les petites flèches) */
.footer-links i {
    color: #edc13b !important; /* Toujours en OR */
    font-size: 0.8rem;
}

/* --- BOUTONS RESEAUX SOCIAUX --- */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #343a40; /* Un peu plus clair que le fond pour ressortir */
    color: #ffffff !important;
    border-radius: 50%; /* Rond parfait */
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.btn-social:hover {
    background-color: #edc13b !important; /* Fond OR */
    color: #000000 !important;            /* Icone NOIRE */
    border-color: #edc13b !important;
    transform: translateY(-3px);          /* Petit saut */
}

/* --- COPYRIGHT (Barre tout en bas) --- */
.footer-bottom {
    background-color: #1a1e21 !important; /* Fond plus sombre pour contraster */
    border-top: 1px solid #333;
    color: #888 !important; /* Texte un peu plus discret */
    padding: 15px 0;
}

.footer-bottom strong {
    color: #fff;
}