/* ============================================
   HERO SECTION - STEREO IMPORT
   ============================================ */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    height: 100vh;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-in-out;
}

.hero h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
}

.hero p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
}

/* Responsive hero */
@media(max-width: 768px) {
    .hero h2 {
        font-size: var(--font-size-2xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
}