/* Social Links Component */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

/* Platform-specific colors on hover */
.social-link.social-facebook:hover { background: #1877f2; }
.social-link.social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.social-twitter:hover { background: #000; }
.social-link.social-linkedin:hover { background: #0a66c2; }
.social-link.social-youtube:hover { background: #ff0000; }
.social-link.social-tiktok:hover { background: #000; }
.social-link.social-pinterest:hover { background: #e60023; }
.social-link.social-snapchat:hover { background: #fffc00; color: #000; }
.social-link.social-whatsapp:hover { background: #25d366; }
.social-link.social-telegram:hover { background: #0088cc; }
.social-link.social-discord:hover { background: #5865f2; }
.social-link.social-reddit:hover { background: #ff4500; }
.social-link.social-github:hover { background: #333; }
.social-link.social-dribbble:hover { background: #ea4c89; }
.social-link.social-behance:hover { background: #1769ff; }
.social-link.social-medium:hover { background: #000; }
.social-link.social-threads:hover { background: #000; }

/* Size variations */
.social-links-sm .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.social-links-lg .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
}

/* Style variations */
.social-links-rounded .social-link {
    border-radius: 3px;
}

.social-links-square .social-link {
    border-radius: 0;
}

/* With labels */
.social-link span {
    margin-left: 8px;
    font-size: 0.9rem;
}

.social-links.with-labels .social-link {
    width: auto;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Footer specific styling */
.footer .social-links {
    justify-content: center;
}

.footer .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Header specific styling */
.header .social-links {
    gap: 8px;
}

.header .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    background: transparent;
}

