/* =========================
FOOTER
========================= */

footer {
    background-color: #A0B3A6;
    color: #1a1a1a;
    font-family: var(--font-text);
    font-size: clamp(0.9rem, 2vw, 1.1rem); /* texte responsive plus grand */
}

footer a {
    color: inherit; /* prend la couleur du texte */
    margin-right: 1rem; /* espacement horizontal entre les liens */
    margin-bottom: 0.5rem; /* espacement vertical sur mobile */
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1.1rem); /* liens aussi responsive */
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

footer .politique {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; /* espace entre les liens */
}

footer .d-flex > a img {
    max-width: 40px; /* taille icône responsive */
    height: auto;
    transition: transform 0.3s ease;
}

footer .d-flex > a img:hover {
    transform: scale(1.1); /* léger effet au survol */
}

.facebook-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    color: black;           /* couleur du logo */
    border-radius: 50%;     /* rond */
    font-size: 40px;        /* taille du logo */
    text-decoration: none;  /* supprime le soulignement du lien */
    transition: transform 0.2s;
}

.facebook-icon:hover {
    transform: scale(1.1);  /* petit effet au survol */
}


/* =========================
RESPONSIVE
========================= */
@media (max-width: 768px) {
    footer .d-flex.justify-content-between {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .politique {
        justify-content: center;
        margin-bottom: 1rem;
    }

    footer .d-flex > a {
        margin-right: 0.75rem;
    }

    .facebook-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}
    /* Sur les écrans larges (desktop) */
@media (min-width: 1200px) {
    .facebook-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }
}

