/* Socials Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.95;
}

.socials-section {
    padding: 4rem 0;
}

.featured-socials {
    margin-bottom: 4rem;
}

.featured-socials h2 {
    margin-bottom: 2rem;
}

.social-grid-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-card-large {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.social-card-large.rumble {
    border-color: var(--primary-green);
}

.social-card-large.rumble:hover {
    background: linear-gradient(135deg, #85C742 0%, #00854D 100%);
    color: white;
}

.social-card-large.youtube {
    border-color: #FF0000;
}

.social-card-large.youtube:hover {
    background: #FF0000;
    color: white;
}

.social-card-large .social-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    transition: color 0.3s;
}

.social-card-large.youtube .social-icon {
    color: #FF0000;
}

.social-card-large:hover .social-icon {
    color: white;
}

.social-card-large h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.social-card-large:hover h3 {
    color: white;
}

.social-card-large p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.social-card-large:hover p {
    color: rgba(255,255,255,0.9);
}

.social-card-large .cta {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-green);
}

.social-card-large.youtube .cta {
    color: #FF0000;
}

.social-card-large:hover .cta {
    color: white;
}

.all-socials h2 {
    margin-bottom: 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.social-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.social-card .social-icon {
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

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

.social-card.instagram {
    border-color: #E4405F;
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

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

.social-card.instagram:hover .social-icon {
    color: white;
}

.social-card.twitter {
    border-color: #000000;
}

.social-card.twitter:hover {
    background: #000000;
    color: white;
}

.social-card.twitter .social-icon {
    color: #000000;
}

.social-card.twitter:hover .social-icon {
    color: white;
}

.social-card.tiktok {
    border-color: #000000;
}

.social-card.tiktok:hover {
    background: #000000;
    color: white;
}

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

.social-card.tiktok:hover .social-icon {
    color: white;
}

.social-card.facebook {
    border-color: #1877F2;
}

.social-card.facebook:hover {
    background: #1877F2;
    color: white;
}

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

.social-card.facebook:hover .social-icon {
    color: white;
}

.social-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.social-card:hover h3 {
    color: white;
}

.social-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.social-card:hover p {
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .social-card-large {
        padding: 2rem 1.5rem;
    }

    .social-grid-featured {
        grid-template-columns: 1fr;
    }
}
