/* Container avec fond bleu pour les icônes sociales */
.footer__social-container {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b82f6 100%);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Version alternative - fond bleu uni */
.footer__social-container.solid-blue {
    background: #2563eb;
}

/* Version alternative - fond bleu foncé */
.footer__social-container.dark-blue {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

/* Responsive pour le container */
@media (max-width: 768px) {
    .footer__social-container {
        padding: 20px;
        gap: 15px;
        flex-wrap: wrap;
    }
}

/* Styles modernes pour les icônes sociales - Version améliorée */
.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;                   /* Taille très grande */
    height: 100px;                  /* Taille très grande */
    background: rgba(255, 255, 255, 0.15);      /* Fond blanc transparent */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Bordure blanche */
    border-radius: 25px;            /* Coins plus arrondis pour la grande taille */
    color: white;                   /* Icônes blanches */
    text-decoration: none;
    font-size: 3rem;                /* Icône très grande */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Effet de brillance subtile */
.footer__social-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: transform 0.6s ease;
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
}

.footer__social-link:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* États de survol avec animations fluides */
.footer__social-link:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);     /* Bordure blanche au survol */
    backdrop-filter: blur(20px);
}

/* Animation de pulsation subtile */
.footer__social-link:active {
    transform: translateY(-6px) scale(1.05);
    transition: all 0.15s ease;
}

/* Couleurs spécifiques pour chaque plateforme */
.footer__social-link[href*="facebook"]:hover {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 50%, #64b5f6 100%);
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.4);
}

.footer__social-link[href*="instagram"]:hover {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 25%, #fcb045 75%, #ffdc80 100%);
    box-shadow: 0 20px 40px rgba(225, 48, 108, 0.4);
}

.footer__social-link[href*="tiktok"]:hover {
    background: linear-gradient(135deg, #000000 0%, #ff0050 50%, #00f2ea 100%);
    box-shadow: 0 20px 40px rgba(255, 0, 80, 0.4);
}

.footer__social-link[href*="twitter"]:hover,
.footer__social-link[href*="x.com"]:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    box-shadow: 0 20px 40px rgba(29, 161, 242, 0.4);
}

.footer__social-link[href*="linkedin"]:hover {
    background: linear-gradient(135deg, #0077b5 0%, #0e76a8 100%);
    box-shadow: 0 20px 40px rgba(0, 119, 181, 0.4);
}

.footer__social-link[href*="youtube"]:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
}

/* Animation de rotation continue */
.footer__social-link {
    animation: fadeInUp 0.8s ease forwards, float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Animation de pulsation */
.footer__social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Animation de rotation au survol */
.footer__social-link:hover {
    transform: translateY(-12px) scale(1.2) rotate(5deg);
    animation: shake 0.6s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateY(-12px) scale(1.2) rotate(5deg); }
    25% { transform: translateY(-12px) scale(1.2) rotate(-5deg); }
    75% { transform: translateY(-12px) scale(1.2) rotate(5deg); }
}

/* Animation de battement de cœur */
.footer__social-link:active {
    animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    20% { transform: scale(1.25); }
    40% { transform: scale(1.1); }
    60% { transform: scale(1.25); }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délai d'animation pour effet cascade */
.footer__social-link:nth-child(1) { animation-delay: 0.1s; }
.footer__social-link:nth-child(2) { animation-delay: 0.2s; }
.footer__social-link:nth-child(3) { animation-delay: 0.3s; }
.footer__social-link:nth-child(4) { animation-delay: 0.4s; }
.footer__social-link:nth-child(5) { animation-delay: 0.5s; }

/* Effet de focus pour l'accessibilité */
.footer__social-link:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Autres options de couleurs de fond - Choisissez selon votre préférence */

/* Option actuelle: Fond rose/rouge */
/* 
background: rgba(255, 23, 68, 0.15);
border: 2px solid rgba(255, 23, 68, 0.3);
*/

/* Option 2: Fond noir - Décommentez pour utiliser */
/*
.footer__social-link {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 0, 0, 0.6);
}
.footer__social-link:hover {
    border-color: rgba(0, 0, 0, 0.8);
}
*/

/* Option 3: Fond rouge foncé - Décommentez pour utiliser */
/*
.footer__social-link {
    background: rgba(196, 40, 40, 0.15);
    border: 2px solid rgba(196, 40, 40, 0.3);
}
.footer__social-link:hover {
    border-color: rgba(196, 40, 40, 0.6);
}
*/

/* Option 4: Fond rose doux - Décommentez pour utiliser */
/*
.footer__social-link {
    background: rgba(233, 30, 99, 0.15);
    border: 2px solid rgba(233, 30, 99, 0.3);
}
.footer__social-link:hover {
    border-color: rgba(233, 30, 99, 0.6);
}
*/

/* Option 1: Rose/Pink moderne (actuel) */
.footer__social-link {
    color: #ff1744;
}

/* Option 2: Rose plus doux - Décommentez pour utiliser */
/*
.footer__social-link {
    color: #e91e63;
}
*/

/* Option 3: Rouge vif - Décommentez pour utiliser */
/*
.footer__social-link {
    color: #f44336;
}
*/

/* Option 4: Rouge foncé - Décommentez pour utiliser */
/*
.footer__social-link {
    color: #c62828;
}
*/

/* Option 5: Noir - Décommentez pour utiliser */
/*
.footer__social-link {
    color: #1a1a1a;
}
*/

/* Option 6: Dégradé rose-rouge sur les icônes - Décommentez pour utiliser */
/*
.footer__social-link {
    background: linear-gradient(45deg, #ff1744, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
*/
@media (max-width: 768px) {
    .footer__social-link {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .footer__social-link:hover {
        transform: translateY(-5px) scale(1.1);
    }
}
