/* Styles pour les icônes de réseaux sociaux */
.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background-color: #f8f9fa;
    margin-top: 40px;
    border-top: 1px solid #e9ecef;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-icon.tiktok {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.social-icon.tiktok::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: linear-gradient(90deg, #25F4EE, #FE2C55, #000000);
    z-index: -1;
    animation: tiktok-bg 2s linear infinite;
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

@keyframes tiktok-bg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Styles responsifs */
@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
