* FOOTER STYLES */
.main-footer {
    background-color: #1e3a5f; /* Bleu nuit profond du screenshot */
    color: #ffffff;
    padding: 60px 8% 30px;
    font-family: 'Outfit', sans-serif;
    border-top: 5px solid #fcd34d; /* Rappel du jaune vif en bordure */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 350px;
}

.logo-footer {
    font-family: 'Fredoka', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fcd34d;
    margin-bottom: 15px;
}

.logo-footer span {
    color: #ffffff;
}

.footer-slogan {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Réseaux Sociaux */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    transform: scale(1.15) rotate(5deg);
    background: #fcd34d;
}

/* Liens */
.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    color: #fcd34d;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.link-group ul li a:hover {
    color: #f43f5e; /* Rose pour le survol */
}

/* Partie Légale Basse */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.legal-notice {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #a1a1aa;
    margin-bottom: 30px;
}

.legal-notice strong {
    color: #ffffff;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
    flex-wrap: wrap;
    gap: 15px;
}

.sub-links a {
    color: #ffffff;
    text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
    .footer-links {
        gap: 30px;
        flex-direction: column;
    }
    .copyright {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
    .footer-links {
        gap: 30px;
        flex-direction: column;
    }
    .copyright {
        flex-direction: column;
        text-align: center;
    }
}
.main-footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #1e3a5f;
    clip-path: ellipse(60% 100% at 50% 100%); /* Crée une courbe douce */
}




/* --- FOOTER GLOBAL --- */
.main-footer {
    position: relative; /* Nécessaire pour la vague */
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 100px 8% 40px; /* Plus de padding en haut pour la vague */
    font-family: 'Outfit', sans-serif;
    margin-top: 80px;
}

/* LA VAGUE DE SÉPARATION */
.main-footer::before {
    content: "";
    position: absolute;
    top: -49px; /* Ajusté pour éviter le trait blanc */
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #1e3a5f;
    clip-path: ellipse(60% 100% at 50% 100%);
}

.footer-top {
    display: flex;
    justify-content: space-between; /* Écarte la marque des liens */
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

/* ALIGNEMENT DES LIENS À DROITE */
.footer-links {
    display: flex;
    gap: 80px;
    text-align: left; /* Aligne le texte à l'intérieur des colonnes */
}

.link-group h4 {
    color: #fcd34d;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group ul li {
    margin-bottom: 15px;
}

.link-group ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s;
}

.link-group ul li a:hover {
    color: #fcd34d;
    padding-left: 5px; /* Petit effet dynamique au survol */
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        text-align: center;
    }
    .footer-brand {
        margin: 0 auto;
    }
}


