footer {
    background-color: var(--color-rose);
    color: var(--color-white);
    font-size: 0.85rem;
    padding: 1.5rem 0.5rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

footer p,
footer span {
    margin: 0.3rem 0;
    line-height: 1.4;
}

footer strong {
    font-weight: 600;
}

/* Navigation */
.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0;
}

.footer-nav li {
    list-style: none;
}

.footer-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity var(--transition);
}

.footer-nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Réseaux sociaux */
.footer-social {
    margin-top: 0.8rem;
}

.footer-social ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
}

.footer-social li {
    margin: 0;
}

.footer-social a {
    font-size: 1.2rem;
    color: var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.15);
    opacity: 0.7;
}

/* Crédit */
.footer-credit {
    font-size: 0.8rem;
    margin-top: 1rem;
}

.footer-credit a {
    color: var(--color-white);
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    }

    .footer-social ul {
    gap: 0.6rem;
    }
}
