.hero_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hero_left {
    color: white;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2vh;
}

.hero_title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text_primary);
    font-family: var(--text_font);
    text-transform: uppercase;
    text-shadow: var(--text_shadow_lower);

}

.hero_subtitle {
    font-size: 3rem;
    margin-bottom: 3vh;
    color: var(--accent);
    font-family: var(--header_font);
    text-transform: uppercase;
    text-shadow: var(--text_shadow_lower);
    padding: 0 2vh;
}

.hero_buttons {
    display: flex;
    justify-content: center;
    gap: 2vh;
    flex-wrap: wrap;
    padding: 2vh;
}

.hero_button {
    background: var(--accent2);
    color: var(--background_main);
    border: none;
    padding: 1vh 2vh;
    font-weight: bold;
    border-radius: var(--border_radius_outer);
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: var(--text_font);
    text-transform: uppercase;
    box-shadow: var(--inset_shadow_large);
    font-size: 1rem;
}

.hero_button p {
    margin-top: 0.2vh;
}

.hero_button:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.hero_right {
    min-width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero_right_image {
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
}

/* Responsive Brackets */
@media (min-width: 768px) {
    .hero_container {
        flex-direction: column;
    }

    .hero_title {
        font-size: 3rem;
    }

    .hero_subtitle {
        font-size: 6rem;
    }

    .hero_right {
        min-width: 100%;
    }

    .hero_right_image {
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    .hero_container {
        flex-direction: row;
    }

    .hero_title {
        font-size: 2.4rem;
    }

    .hero_subtitle {
        font-size: 5rem;
    }

    .hero_right {
        min-width: 40%;
    }

    .hero_right_image {
        margin-right: 0;
    }
}
