/* Hero Section */
.hero {
    height: calc(100vh + 140px);
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('/lavaca/images/vaca_background_1920x1108.png');
    background-size: cover;
    background-position: center;
    color: var(--primary-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 2rem;
}


/* Specific adjustment for portrait mode if needed */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('/lavaca/images/vaca_background_768x443.png');
        background-size: auto 100%;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        background-position: center center;
    }
}
