/* Section: Footer */
.site-footer {
    background: #222;
    color: #fff;
    padding: 2em 0 1em 0;
    font-size: 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 2em;
}

.footer-brand {
    flex: 1 1 200px;
}

.footer-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 0.3em;
}

.footer-copy {
    font-size: 0.95em;
    color: #bbb;
}

.footer-social ul,
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.2em;
}

.footer-social a,
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social a:hover,
.footer-links a:hover {
    color: #D85F91;
}

.footer-links {
    flex: 1 1 150px;
}

.footer-links ul {
    justify-content: center;
}

.site-footer .partenaires {
    background-color: transparent;
}

.site-footer .partenaires img {
    max-width: 40px;
}

.footer-img {
    max-height: 16em;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1em;
    }

    .footer-links {
        text-align: center;
    }
}