.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    z-index: 2;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('../img/hero_wave.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

    .hero__inner {
        position: absolute;
        z-index: 3;
        top: 30%;
        left: 50%;
        transform: translateX(-50%);
        width: calc(var(--inner-width) * 0.75);
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

        .hero__inner > h1 {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-align: center;
            text-shadow: 4px 6px 8px #AFAFAF29;
            color: var(--color-rose);
        }

        .hero__inner > p {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            text-transform: uppercase;
            text-align: center;
            text-shadow: 4px 6px 8px #AFAFAF29;
            color: #fff;
        }

@media screen and (max-width: 1023px) {
    .hero__inner {
        width: var(--inner-width);
    }

        .hero__inner > h1 {
            font-size: 16px;
        }

        .hero__inner > p {
            font-size: 36px;
        }
}