/* --- Refonte Graphique Complète du Footer Lolo26DIR --- */

.main-footer {
    background: linear-gradient(180deg, rgba(10, 12, 22, 0.6) 0%, rgba(5, 6, 12, 0.95) 100%);
    backdrop-filter: blur(12px);
    /* Effet flou transparent sur ton fond d'écran */
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid rgba(138, 43, 226, 0.3);
    /* Ligne néon violette en haut */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    padding: 50px 8% 20px 8%;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, sans-serif;
}

#global-footer {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
}

/* Conteneur principal : On force l'alignement horizontal en colonnes espacées */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    /* S'adapte si l'écran est trop petit */
    gap: 40px;
    padding-bottom: 30px;
}

/* --- Colonne de la Marque (Lolo26DIR) --- */
.footer-brand {
    flex: 2;
    /* Prend un peu plus de place en largeur */
    min-width: 250px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-logo .white-text {
    color: #ffffff;
}

.footer-logo .purple-text {
    color: #8A2BE2;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.8);
    /* Effet néon brillant */
}

.brand-desc {
    color: #a0a5b5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Colonnes de Liens (Navigation, Communauté, Réseaux) --- */
.footer-nav-col {
    flex: 1;
    /* S'étalent équitablement sur la droite */
    min-width: 160px;
}

/* Titres des sections */
.footer-nav-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

/* Petite barre violette sous les titres */
.footer-nav-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #8A2BE2;
    box-shadow: 0 0 8px #8A2BE2;
    border-radius: 2px;
}

/* Gestion des listes */
.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Style des liens : ADIEU LE BLEU MOCHE ! */
.footer-nav-col ul li a {
    color: #8b8f9e;
    /* Couleur grise propre par défaut */
    text-decoration: none;
    /* Supprime le soulignement */
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-block;
}

/* Effet au survol des liens classiques */
.footer-nav-col ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
    /* Léger glissement vers la droite */
}

/* Couleurs néons personnalisées pour tes réseaux au survol */
.social-links-list li a.link-yt:hover {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.social-links-list li a.link-x:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.social-links-list li a.link-dc:hover {
    color: #5865f2;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

/* --- Zone Copyright tout en bas --- */
.footer-copyright {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p {
    color: #626675;
    font-size: 0.85rem;
    margin: 0;
}

/* --- Responsive pour écrans de tablettes/téléphones --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 35px;
    }

    .footer-brand {
        width: 100%;
        text-align: center;
    }

    .footer-nav-col {
        width: 100%;
        text-align: center;
    }

    .footer-nav-col h3::after {
        left: 50%;
        transform: translateX(-50%);
        /* Centre la barre sous le titre sur mobile */
    }

    .footer-nav-col ul li a:hover {
        transform: translateY(-2px);
        /* Sur mobile, on lève au lieu de décaler à droite */
    }
}