.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Hover effects */
.social-link:hover .social-icon {
    transform: scale(1.1) rotate(8deg);
}

.social-link:hover:nth-child(1) .social-icon {
    background: linear-gradient(45deg, #f09433, #bc1888);
}

.social-link:hover:nth-child(2) .social-icon {
    background: linear-gradient(45deg, #ea4c89, #f082ac);
}

.social-link:hover:nth-child(3) .social-icon {
    background: linear-gradient(45deg, #1769ff, #00a0ff);
}

/* Animation des icônes */
.social-link:hover .social-icon i {
    transform: scale(1.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}
