/* Social Media Section */
.social-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 31, 166, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.social-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 26, 133, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.social-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 300;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(90, 31, 166, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(90, 31, 166, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover {
    background: rgba(90, 31, 166, 0.1);
    border-color: var(--accent-orange);
    transform: translateY(-8px);
}

.social-card:hover::before {
    opacity: 1;
}

.social-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.social-card.instagram .social-icon {
    color: #e4405f;
}

.social-card.facebook .social-icon {
    color: #1877f2;
}

.social-card.tiktok .social-icon {
    color: #25f4ee;
}

.social-card.snapchat .social-icon {
    color: #fffc00;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px currentColor);
}

.social-info {
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.social-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
}

.social-cta {
    text-align: center;
    padding: 40px;
    border-radius: 12px;
}

.social-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #d0d0d0;
    margin: 0;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .social-section {
        padding: 60px 20px;
    }

    .social-header h2 {
        font-size: 2.2rem;
    }

    .social-header p {
        font-size: 1rem;
    }

    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .social-card {
        padding: 30px 20px;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .social-card h3 {
        font-size: 1.1rem;
    }

    .social-card p {
        font-size: 0.9rem;
    }

    .social-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-card {
        padding: 25px 15px;
    }

    .social-header h2 {
        font-size: 1.8rem;
    }
}
