/* ═══════════════════════════════════════════════
   FOOTER — AC-CRÉATION
   Fichier partagé, inclus sur toutes les pages
   ═══════════════════════════════════════════════ */

footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle, rgba(139, 92, 246, 0.08));
    background: transparent;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-muted, #8892a5);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .footer-links {
        justify-content: center;
        gap: 16px;
    }
}
