/* ==========================================
   FOOTER SIMPLE
   ========================================== */
   .footer-simple {
    background: #7C4DFF; /* ← Nouvelle couleur violette */
    color: #E2E8F0;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.footer-section h4 {
    color: #FFFFFF; /* ← Titres en blanc pour contraster avec le fond violet */
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    margin: 0.5rem 0;
    color: #F1F5F9; /* ← Texte en blanc cassé pour la lisibilité */
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: #FFFFFF; /* ← Icônes sociales en blanc */
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); /* ← Fond semi-transparent */
}

.social-links a:hover {
    color: #7C4DFF;
    background: rgba(255, 255, 255, 0.9); /* ← Fond blanc au survol */
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* ← Bordure blanche semi-transparente */
}

.footer-bottom p {
    margin: 0;
    color: #E2E8F0; /* ← Texte du copyright en blanc cassé */
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}