/* Styles pour les réseaux sociaux dans le header */
.header-social-networks {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social-networks .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social-networks .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Couleurs spécifiques par réseau au hover */
.header-social-networks .social-facebook:hover {
    background-color: #1877f2;
    color: white;
}

.header-social-networks .social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.header-social-networks .social-twitter:hover {
    background-color: #1da1f2;
    color: white;
}

.header-social-networks .social-linkedin:hover {
    background-color: #0077b5;
    color: white;
}

.header-social-networks .social-youtube:hover {
    background-color: #ff0000;
    color: white;
}

.header-social-networks .social-pinterest:hover {
    background-color: #bd081c;
    color: white;
}

.header-social-networks .social-tiktok:hover {
    background-color: #000000;
    color: white;
}

/* Ajustements pour le header sticky */
.sticky-enabled.is-sticky .header-social-networks .social-link {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

/* Version mobile */
@media (max-width: 768px) {
    .header-social-networks {
        gap: 8px;
    }
    
    .header-social-networks .social-link {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}