/* SOCIAL MEDIA SECTION STYLES */

.social-media {
    padding: var(--spacing-xl) 0;
    background: var(--gray-800);
    text-align: center;
}

.social-media h3 {
    color: var(--white);
    font-size: var(--font-2xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: var(--font-xl);
    color: var(--white);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: scale(0);
    transition: transform var(--transition-base);
    border-radius: 50%;
    z-index: 0;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.facebook:hover {
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
}

.social-link.facebook:hover i {
    color: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.twitter:hover {
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.5);
}

.social-link.twitter:hover i {
    color: #1da1f2;
}

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

.social-link.instagram:hover {
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
}

.social-link.instagram:hover i {
    color: #e1306c;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.linkedin:hover {
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.5);
}

.social-link.linkedin:hover i {
    color: #0077b5;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.youtube:hover {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.social-link.youtube:hover i {
    color: #ff0000;
}

@media (max-width: 768px) {
    .social-link {
        width: 50px;
        height: 50px;
        font-size: var(--font-lg);
    }
}
