.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
    url('../images/splash.webp') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.hero * {
    text-shadow: 0 2px 10px rgba(0,0,0,1);
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5rem); /* Responsive font sizing */
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.intro-text {
    max-width: 600px;
    margin: 4rem auto;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .hero {
        background-position: 60% center;
    }
}