footer {
    background-color: black;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(245, 245, 240, 0.15);
    padding-bottom: 24px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.footer-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #b9c4bd;
    flex: 1 1 200px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f5f5f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #7fd18f;
    text-decoration: underline;
}

/* Petit copyright optionnel sous la ligne de séparation */
.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: var(--primary-light);
    margin-top: 16px;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .footer-container {
        flex-direction: column;
        gap: 1px;
        text-align: center;
        padding-bottom: 0%;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-text {
        display: none;
        flex: 1 1 2px;
    }

    .footer-copyright {

        margin-top: 0px;

    }