/*======================= HERO =============================*/
.hero__separator {
    display: block;
    width: 100%;
    height: 8.4vh;
}

#home {
    scroll-margin-top: 8.4vh;
}

.hero__section {
    height: 91.6vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-position: center right -200px;
    background-size: cover;
    position: relative;
}

.hero__section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary);
    opacity: 0.7;
}

.hero__content {
    z-index: 1;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.hero__content > h1 {
    text-transform: uppercase;
}

.hero__content > h3 {
    font-weight: 400;
}

.hero__content > a {
    text-decoration: none;
    width: fit-content;
    background-color: var(--accent);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 13px;
    transition: opacity 0.2s;
}

.hero__content > a:hover {
    opacity: 0.8;
}

/* Separator for larger screens */
@media screen and (min-width: 1360px) {
    .hero__separator {
        height: 13vh;
    }
    #home {
        scroll-margin-top: 13vh;
    }
}

/* For larger screens */
@media screen and (min-width: 1000px) {
    .hero {
        align-items: center;
        height: 100%;
    }
    .hero__section {
        background-position: center;
    }
    .hero__content {
        row-gap: 35px;
        margin: 0;
    }
    .hero__content > a {
        padding: 18px 48px;
        font-size: 18px;
    }
}