.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    color: var(--color-text-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--container-padding);
}

.hero-content h1 {
    font-size: var(--text-hero);
    font-weight: 900;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    color: var(--color-text-light);
}

.hero-content p {
    font-size: var(--text-2xl);
    max-width: 600px;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        min-height: 72vh;
        height: auto;
    }

    .hero-content {
        padding-top: var(--space-3xl);
        padding-bottom: var(--space-2xl);
    }

    .hero-content h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        margin-bottom: var(--space-md);
    }

    .hero-content p {
        font-size: var(--text-lg);
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.75rem, 8.5vw, 2.5rem);
    }
}
