/* Social Media Section */
.social-section {
    background-color: #FFFFFF;
    padding: 80px 0;
    color: #8C0886;
    text-align: center;
}

.social-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    color: #8C0886;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 4px solid #8C0886;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #8C0886;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: #8C0886;
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Social Links */
.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #8C0886;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #8C0886;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-10px);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #8C0886;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(140, 8, 134, 0.2);
}

.instagram .social-icon {
    color: #FFFFFF;
}

.tiktok .social-icon {
    color: #FFFFFF;
}

.social-link span {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-section h2 {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 350px;
        padding: 0 1rem;
    }
    
    .video-item {
        aspect-ratio: 1/1;
        border-radius: 15px;
        border: 3px solid #8C0886;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .video-overlay {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .social-icons {
        gap: 2rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-links h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-section {
        padding: 60px 0;
    }
    
    .social-section h2 {
        font-size: 1.8rem;
    }
    
    .social-icons {
        flex-direction: column;
        gap: 1.5rem;
    }
}