/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    height: 70vh; /* Adjust as needed for your background art */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#hero-availability {
    color: white;
    font-size: 48px;
    font-weight: 700;

    position: absolute;
    text-align: center;

    width: 100%;
    margin: 0;
    bottom: 20px;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
    }

    #hero-availability {
        font-size: 32px;
    }
}