/* ==================== FOOTER ==================== */
.footer-section {
    background-color: #0f172a; /* Fond bleu nuit comme le body */
    color: var(--text-dark);
    padding: 40px 20px 20px; /* Padding réduit */
    margin-top: 60px; /* Marge supérieure réduite */
    border-top: 1px solid var(--border-color);
    font-size: 0.95em;
}

/* Grille */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Colonnes */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Logo */
.footer-logo {
    height: 55px;
    margin-bottom: 20px;
    align-self: flex-start;
}

/* Titre */
.footer-title {
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 18px;
    font-size: 1.25em;
}

/* Liens */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}
.footer-links a, .footer-contact a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Icônes */
.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}
.social-icons a {
    font-size: 1.6em;
    color: var(--text-dark);
    transition: color 0.3s, transform 0.3s;
}
.social-icons a:hover {
    color: var(--primary-blue);
    transform: scale(1.2);
}

/* Bas de page */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9em;
}

/* --- Colonne Notifications --- */
.footer-col .btn-notify {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .footer-grid {
        text-align: center; /* Centrer le texte dans les colonnes */
    }
    .footer-logo {
        align-self: center; /* Centrer le logo */
    }
    .social-icons {
        justify-content: center; /* Centrer les icônes sociales */
    }
}