/**
 * Social Links Fix CSS
 * Corrections spécifiques pour l'affichage des liens sociaux
 */

/* Force l'affichage des liens sociaux */
.social-links {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.social-links .social-link {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
}

.social-links .social-link svg {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 24px !important;
    height: 24px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    color: inherit !important;
}

/* Fix pour les buttons glass qui peuvent masquer le contenu */
.social-links .btn-glass {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: var(--spacing-sm) !important;
}

.social-links .btn-glass:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: rgba(255, 255, 255, 1) !important;
}

/* Débuggage pour identifier les problèmes */
.social-links .social-link:before {
    content: "" !important;
}

.social-links .social-link:after {
    content: "" !important;
}

/* Assurer la visibilité sur tous les backgrounds */
.site-footer .social-links .social-link {
    background: rgba(26, 26, 26, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* Mode debug - Temporaire pour voir les éléments */
.debug-social .social-links .social-link {
    border: 2px solid red !important;
    background: rgba(255, 0, 0, 0.2) !important;
}

.debug-social .social-links .social-link svg {
    stroke: red !important;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .social-links .social-link {
        width: 44px !important;
        height: 44px !important;
    }
    
    .social-links .social-link svg {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: var(--spacing-sm) !important;
    }
    
    .social-links .social-link {
        width: 40px !important;
        height: 40px !important;
    }
    
    .social-links .social-link svg {
        width: 18px !important;
        height: 18px !important;
    }
}
