/**
 * Styles pour le module Réseaux Sociaux
 */

.social-links-block {
    padding: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    margin: 0;
}

.social-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #333;
    background-color: #f5f5f5;
}

.social-link a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-link a svg {
    width: 20px;
    height: 20px;
}

/* Couleurs spécifiques aux réseaux sociaux */
.social-link.facebook a:hover {
    background-color: #1877f2;
    color: #fff;
}

.social-link.twitter a:hover {
    background-color: #000;
    color: #fff;
}

.social-link.instagram a:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-link.linkedin a:hover {
    background-color: #0077b5;
    color: #fff;
}

.social-link.youtube a:hover {
    background-color: #ff0000;
    color: #fff;
}

.social-link.tiktok a:hover {
    background-color: #000;
    color: #fff;
}

.social-link.whatsapp a:hover {
    background-color: #25d366;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        gap: 10px;
    }
    
    .social-link a {
        width: 36px;
        height: 36px;
    }
    
    .social-link a svg {
        width: 18px;
        height: 18px;
    }
}

/* Style pour le footer */
footer .social-links-block {
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
}

/* Style pour le header */
header .social-links-block {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
}