/* Dutch homepage hero; navigation uses the shared header styles. */
.full-height-image.home-hero {
    --home-header-height: 97px;
    display: grid;
    height: auto;
    min-height: calc(100vh - var(--home-header-height));
    min-height: calc(100svh - var(--home-header-height));
    background: #111;
}

.full-height-image.home-hero > img {
    position: absolute;
    inset: 0;
}

.full-height-image.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse closest-side at 50% 48%, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.full-height-image.home-hero .full-height-image-content {
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 132px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    box-sizing: border-box;
}

.full-height-image.home-hero .home-hero-rating {
    margin: 0 0 28px;
    color: white;
    font-size: 16px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}

.full-height-image.home-hero .home-hero-title {
    max-width: 710px;
    margin: 0 auto 22px;
    font-family: inherit;
    font-size: clamp(40px, 5.1vw, 46px);
    line-height: 1.13;
    letter-spacing: -.035em;
    font-weight: 900;
    text-wrap: balance;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

.full-height-image.home-hero .home-hero-description {
    max-width: 680px;
    margin: 0 auto 34px;
    color: white;
    font-size: 20px;
    line-height: 1.5;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .48);
}

.full-height-image.home-hero a.full-height-image-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 234px;
    min-height: 54px;
    height: auto;
    margin: 0;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    background: white;
    color: #111;
    font-size: 18px;
    line-height: 1.5;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
    box-sizing: border-box;
}

@media (max-width: 680px) {
    .full-height-image.home-hero .full-height-image-content {
        padding: 80px 20px 100px;
    }

    .full-height-image.home-hero .home-hero-rating {
        font-size: 14px;
    }

    .full-height-image.home-hero .home-hero-title {
        font-size: 40px;
    }

    .full-height-image.home-hero .home-hero-description {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .full-height-image.home-hero {
        --home-header-height: 81px;
    }

}
