/* Footer */
.site-footer {
    background: #0c1322; /* très sombre, bleu nuit */
    color: #d1d5db; /* gris clair */
    padding: 48px 0 24px;
    position: relative;
    overflow: hidden;
}

/* Helpers for subtle palette */
.text-muted-200 {
    color: #cbd5e1;
}

.text-muted-300 {
    color: #a8b0bd;
}

.text-muted-400 {
    color: #94a3b8;
}

.site-footer .container {
    max-width: 1140px;
}

/* Brand */
.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .04);
}

.brand-title {
    color: #e5e7eb;
    font-weight: 600;
}

/* Headings */
.footer-heading {
    color: #e5e7eb;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Links */
.footer-links li + li {
    margin-top: 8px;
}

.footer-links a {
    color: #a8b0bd;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
    display: inline-block;
}

    .footer-links a:hover {
        color: #ffffff;
        transform: translateX(2px);
    }

/* Contact */
.footer-contact li + li {
    margin-top: 10px;
}

.footer-contact i {
    font-size: 1rem;
    color: #60a5fa; /* bleu doux pour les icônes */
}

/* Rating */
.rating i {
    font-size: 0.95rem;
}

/* Separator */
.footer-sep {
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    margin: 24px 0;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .site-footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 575.98px) {
    .footer-logo {
        width: 40px;
        height: 40px;
    }

    .footer-contact i {
        font-size: 0.95rem;
    }
}
/* --- Correction footer mobile : e-mail tronqué --- */
@media (max-width: 575.98px) {
    .footer-contact a {
        display: inline-block;
        max-width: 100%;
        overflow-wrap: break-word; /* permet le retour à la ligne */
        word-break: break-all; /* casse proprement si trop long */
        font-size: 14px; /* légèrement réduit pour mobile */
    }

    .footer-contact li {
        align-items: flex-start; /* aligne le texte sur plusieurs lignes */
    }

    .footer-contact i {
        margin-top: 3px; /* réaligne l’icône avec le texte */
    }
}
/* --- Réseaux sociaux Footer --- */
.footer-social {
    margin-top: 12px;
}

    .footer-social .footer-heading {
        margin-bottom: 10px;
        color: #e5e7eb;
    }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #d1d5db;
    background: rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

    .social-icons a:hover {
        color: #fff;
        transform: translateY(-2px);
    }

        /* Couleurs spécifiques au survol */
        .social-icons a:hover .bi-facebook {
            color: #1877f2; /* bleu Facebook */
        }

        .social-icons a:hover .bi-instagram {
            color: #e1306c; /* rose Instagram */
        }

        .social-icons a:hover .bi-snapchat {
            color: #fffc00; /* jaune Snapchat */
        }

/* Responsive */
@media (max-width: 575.98px) {
    .social-icons {
        gap: 16px;
    }

        .social-icons a {
            width: 32px;
            height: 32px;
            font-size: 1rem;
        }
}
.site-footer {
    background-color: #0e1726; /* fond plus sombre pour un bon contraste */
    color: #f3f3f3;
}

    .site-footer a {
        color: #4da6ff; /* bleu accessible AA */
        text-decoration: none;
        transition: color 0.2s ease-in-out;
    }

        .site-footer a:hover,
        .site-footer a:focus {
            color: #82c7ff; /* survol légèrement plus clair mais encore contrasté */
        }

    .site-footer .text-muted-200 {
        color: #cbd5e1 !important; /* gris clair avec contraste suffisant */
    }

    .site-footer .footer-heading {
        color: #ffffff;
        font-weight: 600;
    }

    .site-footer .text-muted-400 {
        color: #b3b3b3 !important;
    }

.brand-title {
    font-size: 1.25rem; /* pour garder la même apparence que ton h5 */
    font-weight: 700;
}

