/* ===================================
   HERO SECTION
   Main banner with CTA
   =================================== */

.hero {
    background: var(--gradient-hero);
    color: white;
    padding: var(--spacing-xl) var(--spacing-sm);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    transition: all var(--transition-base);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}
