/* --- Fond et conteneur --- */
.site-footer {
    background-color: var(--color-footer-bg);
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    /* Réduit l'espace géant en haut (était à 6rem) */
    font-family: var(--font-sans-serif);
    border-top: 4px solid var(--color-secondary-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    /* Légèrement rapproché horizontalement (était à 4rem) */
    margin-bottom: 2rem;
    /* Réduit l'espace avant la ligne du bas (était à 4rem) */
}

/* --- Titres des colonnes avec décoration --- */
.footer-title {
    color: var(--color-secondary-accent);
    /* Doré */
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: normal;
}

/* Le petit trait violet stylé sous chaque titre */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary-accent);
    /* Violet */
}

/* --- Typographie du contenu --- */
.footer-text-light p,
.footer-text-light a {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    /* Resserré (était à 1.8) pour que les lignes fassent plus "bloc" */
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
    /* Agrandi (était à 0.95rem) pour une meilleure lisibilité */
}

.footer-text-light a:hover {
    color: var(--color-secondary-accent);
    /* Les liens deviennent dorés au survol */
}

/* --- Réseaux Sociaux (Boutons ronds) --- */
.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Fond très discret */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Bordure fine */
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Effet waouh au survol */
.social-circle:hover {
    background-color: var(--color-primary-accent);
    border-color: var(--color-primary-accent);
    transform: translateY(-5px);
    /* Se soulève */
    box-shadow: 0 5px 15px rgba(107, 76, 139, 0.4);
    /* Ombre violette */
    color: #ffffff;
}

/* --- Bouton Newsletter --- */
.btn-newsletter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 2px solid var(--color-primary-accent);
    /* Contour violet */
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    /* Bouton arrondi (pilule) */
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background-color: var(--color-primary-accent);
    /* Se remplit de violet */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 76, 139, 0.3);
}

/* --- Bas du footer --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    /* Remonte le bloc vers le texte */
    padding-top: 2rem;
    /* Réduit l'espace vide sous la ligne blanche (était à 3rem) */
    text-align: center;
}

.footer-tagline {
    font-family: var(--font-script);
    color: var(--color-secondary-accent);
    font-size: 3rem;
    /* Légèrement plus grand */
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}