/* Social Media Section */
.social-media-section {
    background: var(--surface);
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(46, 34, 22, 0.06);
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
}

.social-media-section h2 {
    font-size: 1.4rem;
    color: var(--text);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.social-media-section p {
    color: var(--muted);
    margin: 0 0 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.social-link {
    display: inline-flex;
    flex:1;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 34, 22, 0.08);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 34, 22, 0.12);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Facebook */
.social-link.facebook {
    color: #1877F2;
    background: transparent;
}

/* .social-link.facebook:hover {
    background: #0d65d9;
} */

/* YouTube */
.social-link.youtube {
    color: #FF0000;
    background: transparent;
}

/* .social-link.youtube:hover {
    background: #cc0000;
} */

/* WhatsApp */
.social-link.whatsapp {
    color: #25D366;
    background: transparent;
}

/* .social-link.whatsapp:hover {
    background: #1da851;
} */

/* Responsive */
@media (max-width: 600px) {
    .social-links {
        flex-direction: column;
    }

    .social-link {
        justify-content: center;
    }
}