
/* Default Image (Fallback) */
.hero-area {
    position: relative;
    background: url('/static/img/hero_image_1920x1080.webp') no-repeat center center/cover;
    background-size: cover;
    padding-top: 20px;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}


@media (min-width: 1024px) {
    .hero-area {
        background-image: url('/static/img/hero_image_3840x2160.webp');
    }
}


.hero-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--transparent-black-form);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--neutral-light);
    padding: 0 20px;
}


.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 
    0 0 5px black,
    0 0 10px black,
    0 0 15px black;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 
    0 0 5px black,
    0 0 10px black,
    0 0 15px black;
}

a.gold.button {
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-area {
        margin-top: -70px;
        padding-top: 70px;
    }
} 