/* ========================================
   GOAT HOUSE MEDIA - Creators Page Styles
   ======================================== */

/* Hero Section */
.creators-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
}

.creators-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.creators-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.creators-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Creators Section */
.creators-section {
    padding: 80px 0 120px;
    background: var(--dark);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    justify-items: center;
}

/* Creator Card */
.creator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    width: 100%;
    max-width: 320px;
    text-decoration: none;
    color: inherit;
}

.creator-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 81, 40, 0.5);
    box-shadow: 0 20px 40px rgba(197, 81, 40, 0.15);
}

.creator-card:hover .creator-avatar {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(197, 81, 40, 0.4);
}

.creator-card:hover .tiktok-badge {
    background: var(--gradient-primary);
    border-color: transparent;
}

/* Creator Avatar */
.creator-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--light-gray);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all var(--transition-normal);
    position: relative;
    background: var(--medium-gray);
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
}

.avatar-placeholder i {
    font-size: 3.5rem;
    color: var(--text-muted);
}

/* Creator Info */
.creator-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.creator-handle {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.creator-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.creator-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.creator-stats i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* TikTok Badge */
.tiktok-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.tiktok-badge i {
    font-size: 1.1rem;
}

/* Join CTA Section */
.join-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(197, 81, 40, 0.1) 0%, var(--black) 50%, rgba(197, 81, 40, 0.05) 100%);
    text-align: center;
    position: relative;
}

.join-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 81, 40, 0.5), transparent);
}

.join-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.join-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.free-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: var(--border-radius-xl);
    font-size: 1rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 24px;
}

.free-cta-badge i {
    font-size: 1.1rem;
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary) !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 900px) {
    .creators-hero {
        padding: 140px 0 80px;
    }

    .creators-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .creators-hero {
        padding: 120px 0 60px;
    }

    .creators-section {
        padding: 60px 0 80px;
    }

    .creator-card {
        padding: 32px 24px;
    }

    .creator-avatar {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .creators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .creator-card {
        max-width: 100%;
    }

    .join-cta {
        padding: 60px 0;
    }
}
