/**
 * Footer - Style cohérent avec le Hero
 */

/* ============================================================
   STRUCTURE PRINCIPALE
   ============================================================ */

.site-footer {
    background: var(--color-dark, #343330);
    color: var(--color-light, #F0EFF4);
    padding: 4rem 0 2rem;
}

.site-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   GRILLE
   ============================================================ */

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ============================================================
   TITRES
   ============================================================ */

.site-footer__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-light, #F0EFF4);
    margin: 0 0 1rem 0;
    font-family: var(--font-heading);
    position: relative;
    padding-left: 18px;
}

/* Barre décorative comme le hero */
.site-footer__heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-primary, #3d37b0);
}

/* ============================================================
   TEXTES ET LISTES
   ============================================================ */

.site-footer__text {
    color: rgba(240, 239, 244, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-primary);
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(240, 239, 244, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.site-footer__link:hover {
    color: var(--color-primary, #3d37b0);
    transform: translateX(5px);
}

.site-footer__address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(240, 239, 244, 0.9);
    font-size: 0.9375rem;
    font-family: var(--font-primary);
}

.site-footer__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--color-primary, #3d37b0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__nav a {
    color: rgba(240, 239, 244, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: var(--font-primary);
}

.site-footer__nav a:hover {
    color: var(--color-primary, #3d37b0);
    transform: translateX(5px);
}

/* ============================================================
   RÉSEAUX SOCIAUX
   ============================================================ */

.site-footer__socials {
    display: flex;
    gap: 1rem;
}

.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-primary, #3d37b0);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.site-footer__social:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(61, 55, 176, 0.3);
}

.site-footer__social svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================================
   COPYRIGHT
   ============================================================ */

.site-footer__copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 239, 244, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: rgba(240, 239, 244, 0.7);
    font-family: var(--font-primary);
}

.site-footer__copyright p {
    margin: 0;
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 767px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .site-footer__container {
        padding: 0 1.5rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .site-footer__heading {
        font-size: 1.125rem;
    }
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */

@media (min-width: 768px) and (max-width: 1023px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}
