/* Social Media Icons */
.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Platform-specific colors */
.social-icon.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: #fd1d1d;
}

.social-icon.tiktok:hover {
    background: linear-gradient(135deg, #000000, #ff0050);
    border-color: #ff0050;
}

.social-icon.youtube:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
}

/* Icon SVGs */
.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    scale: 1.1;
}

/* Social media labels */
.social-label {
    color: #888;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

/* Social media section variations */
.social-media.large {
    gap: 1.5rem;
}

.social-media.large .social-icon {
    width: 56px;
    height: 56px;
}

.social-media.large .social-icon svg {
    width: 28px;
    height: 28px;
}

.social-media.small {
    gap: 0.8rem;
}

.social-media.small .social-icon {
    width: 40px;
    height: 40px;
}

.social-media.small .social-icon svg {
    width: 20px;
    height: 20px;
}



/* Responsive design */
@media (max-width: 768px) {
    .social-media {
        gap: 0.8rem;
    }
    
    .social-media.large .social-icon {
        width: 48px;
        height: 48px;
    }
    
    .social-media.large .social-icon svg {
        width: 24px;
        height: 24px;
    }
} 