/*styles*/
html {
    min-height: 100vh;
    color: #eee;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
    font-size: 24px;
    scroll-behavior: smooth;
}

body {
    min-width: 100vw;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #000000;
    overflow-x: hidden;
}

.content {
    min-width: 320px;
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
    width: 100%;
}

.jumbotron-wrapper {
    background: url('/assets/visual/splash/min/intro-2022-05-22.gradient.webp') repeat-x;
}

.jumbotron {
    background-image: url('/assets/visual/splash/min/intro-2022-05-22.webp');
    background-position-y: top;
    background-position-x: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 1440px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.whitespace {
    flex-grow: 1;
}

.header__border {
    height: 30px;
    width: 100%;
    background: linear-gradient(0, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.header__content {
    background-color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px 32px 16px 32px;
    gap: 0;
    isolation: isolate;
}

.header__logo {
    width: 133px;
    height: auto;
}

.header__text {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    text-align: center;
    line-height: 0.9em;
}

.header__text--pasterski {
    font-weight: 500;
    font-style: italic;
    font-size: 1em;
    letter-spacing: 1px;
}

.header__text--poznan {
    font-size: 0.7em;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.nav__bordertop {
    height: 30px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.nav__borderbottom {
    height: 30px;
    width: 100%;
    max-width: 1440px;
    position: absolute;
    margin-top: -1px;
    background: linear-gradient(0, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
}

.nav__content {
    background: black;
    font-family: 'Nunito', sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 32px;
    gap: 24px;
    isolation: isolate;
}

.nav__content a {
    letter-spacing: 0.03em;
    font-size: 16px;
    color: white;
    text-decoration: none;
    font-weight: 300;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;

}

.nav__content .nav__link--fb {
    font-size: 20px;
    font-weight: 400;
}

/*DESKTOP STYLES*/


@media (min-width: 1024px) {

    .jumbotron, .jumbotron-wrapper {
        background-position-y: 70%;
    }

    .jumbotron {
        min-height: 100vh;
    }

    .header__border {
        display: none;
    }

    .header__content {
        padding: 3.1vw;
        background: none;
        justify-content: flex-end;
        align-items: flex-end;
        flex-direction: column-reverse;
    }

    .header__logo {
        width: 13vw;
    }

    .header__text {
        font-size: 2.3vw
    }

    .nav__content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 32px;
        padding: 32px 32px;
    }

    .nav__content a {
        font-size: 18px;
        font-weight: 400;
    }

    .nav__content a:hover {
        text-shadow: 0 0 3px #888;
    }

    .nav__content .nav__link--fb {
        font-size: 32px;
        font-weight: 500;
    }

    .scroll-down-button {
        display: none
    }
}

@media (min-width: 1280px) {

    .nav__content {
        gap: 96px;
    }
}
