/* =============================== */
/*              FOOTER             */
/* =============================== */

.site-footer {
    background: #222;
    color: #fff;
    padding: 28px 0 16px 0;
    text-align: center;
    font-size: 15px;
    border-top: 4px solid #0070ba;

    width: 100%;            /* ⭐ pleine largeur */
    max-width: 1200px;      /* optionnel, pour aligner avec le header */
    margin: 40px auto 0;    /* ⭐ espace au-dessus, centré */
    box-sizing: border-box;

    position: relative;     /* ⭐ plus de left:20% */
}

/* Infos */
.footer-info {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Liens */
.footer-links {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-link {
    color: #aad4ff;
    text-decoration: underline;
    font-size: 15px;
    margin: 0 4px;
    transition: 0.2s ease;
}

.footer-link:hover {
    color: #d0e8ff;
}

.footer-separator {
    margin: 0 8px;
    color: #aaa;
}

/* Hébergement */
.footer-hosting {
    font-size: 13px;
    color: #aaa;
    margin-top: 6px;
}

/* Version mobile */
@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .footer-separator {
        display: none;
    }
}
