/* ==========================================================================
   Hero Section Styles
   ========================================================================== */

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: var(--space-xxl) var(--space-md);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(39, 174, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease;
    color: white;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    display: none;
    position: relative;
    z-index: 1;
}

.prompt-card-preview {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.prompt-text {
    color: #212529 !important;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.prompt-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.prompt-card-preview .tag {
    background: #e9ecef;
    color: #2c3e50;
    border: 1px solid #adb5bd;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: var(--space-xxl);
    }
    
    .hero-visual {
        display: block;
    }
}

/* Educators CTA Section */
.educators-cta {
    background: linear-gradient(135deg, var(--purple) 0%, #8e44ad 100%);
    color: white;
    padding: var(--space-xxl) var(--space-md);
    text-align: center;
}

.educators-cta .container {
    max-width: 800px;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

