.footer {
    background: #7f9bb2;
    color: white;
    padding-top: 60px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.footer-logo h2 {
    font-size: 28px;
}

.footer-contact h4,
.footer-links h4 {
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    background: #6f8fa8;
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    font-size: 14px;
}

/* Responsive */

@media(max-width: 900px){
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav {
        display: none; /* on pourra faire menu burger plus tard */
    }
}

/* ===== DARK MODE FOOTER ===== */

body.dark .footer {
    background: #181818;
    color: #f1f1f1;
}

body.dark .footer-container {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

body.dark .footer-links a {
    color: #d0d0d0;
}

body.dark .footer-links a:hover {
    color: #9dc2d9;
}

body.dark .footer-bottom {
    background: #121212;
    color: #cfcfcf;
}

/* ===== PARTENAIRES DANS LE FOOTER ===== */

.footer-logo {
    flex: 1.2;
    min-width: 260px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-partners {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-partner-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-partner-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(255,255,255,0.12);
    padding: 3px;
}

.footer-partner-item span {
    font-size: 14px;
    color: white;
    line-height: 1.3;
}

/* Dark mode */
body.dark .footer-partner-item img {
    background: rgba(255,255,255,0.08);
}

body.dark .footer-partner-item span {
    color: #f1f1f1;
}