/* ======================================
   Social Media Page Styles
   ====================================== */

/* Social Media Cards */
.social-card {
    background: var(--lf-bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--lf-border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card:hover {
    transform: translateY(-8px);
}

/* Social Icons */
.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.social-icon svg {
    font-size: 2.5rem;
    color: #fff;
}

/* Brand Colors for Each Platform */
.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0c5ecd);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-icon.patreon {
    background: linear-gradient(135deg, #ff424d, #e03444);
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

/* Social Card Text */
.social-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--lf-text-primary);
    margin-bottom: 1rem;
}

.social-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--lf-text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Social Buttons */
.btn-social {
    background: var(--lf-orange);
    color: #fff;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-social:hover {
    background: var(--lf-navy);
    color: #fff;
    transform: translateX(4px);
}

.btn-social svg {
    transition: transform 0.3s ease;
}

.btn-social:hover svg {
    transform: translateX(4px);
}

/* Featured Card (Patreon) */
.social-card-featured {
    background: linear-gradient(135deg, var(--lf-navy) 0%, #0a2347 100%);
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-card-featured .social-title {
    color: #fff;
    margin-bottom: 0.5rem;
}

.social-card-featured .social-description {
    color: rgba(255, 255, 255, 0.85);
}

.social-card-featured:hover {
    transform: translateY(-8px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .social-card {
        padding: 2rem;
    }

    .social-card-featured {
        padding: 2rem;
    }

    .social-icon {
        width: 70px;
        height: 70px;
    }

    .social-icon svg {
        font-size: 2rem;
    }

    .social-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .social-card {
        padding: 1.5rem;
    }

    .social-card-featured {
        padding: 1.5rem;
        text-align: center;
    }

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

    .social-icon svg {
        font-size: 1.75rem;
    }

    .social-title {
        font-size: 1.35rem;
    }

    .social-description {
        font-size: 0.95rem;
    }

    .btn-social {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* Section Spacing */
.section {
    padding: 4rem 0;
}

@media (max-width: 767.98px) {
    .section {
        padding: 3rem 0;
    }
}
