@charset "UTF-8";

.intro {
    background: url(../img/home-banner-02.jpg), linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 90%);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    background-blend-mode: multiply;
}

.intro .container {
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.intro h1 {
    font-family: "InterlakenNarrowItalic", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    text-shadow: 4px 4px rgba(0, 0, 0, .25);
    font-size: 4em;
    line-height: 1;
    color: var(--bs-white)
}

.intro h2 {
    font-family: "InterlakenWideItalic", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2em;
    line-height: 1.1;
    text-shadow: 3px 3px rgba(0, 0, 0, .25);
    color: var(--bs-white)
}

.intro a {
    box-shadow: 4px 4px rgba(0, 0, 0, .125);
}

.img-shadow {
    box-shadow: 1px 1px 6px rgba(0, 0, 0, .25);
}

section h2,
footer h2 {
    font-family: "InterlakenNarrowItalic", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: calc(2.5rem + 1.5vw);
    margin-top: .75em;
}

section h3,
section h4 {
    font-family: "InterlakenWideItalic", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@media (min-width: 992px) {

    .intro {
        background: url(../img/home-banner-02.jpg), linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 60%);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .intro .container {
        min-height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .intro h1 {
        font-size: 8em;
    }

    .intro h2 {
        font-size: 3em;
    }
    .intro p {
        font-size: 1.5em;
        color: #fff;
        text-shadow: 3px 3px rgba(0, 0, 0, .25);
    }
    
    .intro a {
        font-size: 1.25em;
    }

    section h2,
    footer h2 {
        font-size: calc(2.5rem + 1.5vw);
    }

    section h3{
        font-size: 2.25rem;
    }
   
}

