@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/playfair_display.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("fonts/playfair_display.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ----------------------------------------------------------------------------
* Body
* ------------------------------------------------------------------------- */
body {
    background-color: var(--white);
    color: var(--mediumgrey);
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ----------------------------------------------------------------------------
* Colour
* ------------------------------------------------------------------------- */
:root {
    --darkgrey: rgb(48, 48, 48);
    --lightgrey: rgb(244, 244, 244);
    --lightgreytransparent: rgba(244, 244, 244, .98);
    --mainred-light: rgb(130, 0, 0);
    --mainred: rgb(110, 0, 0);
    --mediumgrey: rgb(110, 110, 110);
    --mediumlightgrey: rgb(154, 154, 154);
    --secondarygrey: rgb(194, 194, 194);
    --white: rgb(255, 255, 255);
    --green: rgb(41, 174, 0);

    --color-app1: rgb(223, 195, 195);
    --color-app2: rgb(167, 213, 230);
    --color-app3: rgb(233, 218, 196);
    --color-app1-l: rgb(233, 206, 206);
    --color-app2-l: rgb(175, 223, 240);
    --color-app3-l: rgb(243, 227, 205);
}

/* ----------------------------------------------------------------------------
* Normalize
* ------------------------------------------------------------------------- */
a {
    color: var(--mediumgrey);
    text-decoration: none;
}

strong {
    font-weight: 700;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 15px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 13px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 4px;
}

nav {
    background: transparent;
    box-shadow: none;
    height: initial;
    line-height: initial;
}

nav * {
    color: var(--mediumgrey);
}

nav ul a {
    color: var(--mediumgrey);
}

/* ----------------------------------------------------------------------------
* Layout
* ------------------------------------------------------------------------- */
.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 90%;
}

#text-container {
    color: var(--mediumgrey);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    background: var(--white);
    height: 40vh;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    justify-content: center;
}

#text {
    padding: 16px;
    max-width: 400px;
}

/* ----------------------------------------------------------------------------
* Header
* ------------------------------------------------------------------------- */
.header {
    display: flex;
}

.row.header {
    margin-bottom: 0px;
}

#nav-inner {
    display: grid;
    grid-template-areas: "logo language";
    padding: 14px 0;
}

#navbar-logo {
    grid-area: logo;
    height: 74px;
    width: auto;
}

#navbar-lang {
    align-self: flex-start;
    display: flex;
    grid-area: language;
    justify-content: space-between;
    justify-self: end;
    width: 7ch;
}

#navbar-links {
    grid-area: links;
    justify-self: center;
    margin-top: 12px;
    padding: 12px 0;
}

#navbar-links>li>a {
    padding: 12px 16px;
}

#navbar-links>li>a:hover {
    border-radius: 4px;
}

.lang-active {
    font-weight: bold;
}


@media screen and (min-width: 601px) {
    #navbar-lang {
        align-self: center;
    }

    #nav-inner {
        grid-template-areas:
            "logo language"
            "links links";
    }

    #navbar-links {
        justify-self: start;
    }
}

@media screen and (min-width: 993px) {
    #nav-inner {
        grid-template-areas:
            "logo links language";
    }

    #navbar-links {
        align-self: center;
        margin-top: 0;
        padding: 0;
    }
}

/* ----------------------------------------------------------------------------
* Image
* ------------------------------------------------------------------------- */
#landing {
    min-height: calc(100vh - 102px);
}

#img-landing {
    background-size: cover;
    border-radius: 6px;
    margin-bottom: calc(62px);
    min-height: calc(100vh - 102px - 100px);
    min-height: calc(100svh - 102px - 100px);
    background-image: url("img/winter.jpg");
    background-position: 52%;
}

@supports (-webkit-touch-callout: none) {
    #img-landing {
        min-height: calc(100svh - 102px - 100px);
    }
}

@media screen and (min-width: 601px) {
    #landing {
        gap: 18px;
        min-height: initial;
    }
    #img-landing {
        height: 62.8vw;
        margin-bottom: 0;
        min-height: initial;
        border-radius: 6px;
        max-height: 80vh;
    }
}

/* ----------------------------------------------------------------------------
* Footer
* ------------------------------------------------------------------------- */
#footer {
    margin-top: 52px;
    text-align: center;
    height: 52px;
}

@media screen and (min-width: 601px) {
#footer {
    position: absolute;
    bottom: 0;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 52px;
    text-align: center;
    height: 52px;
}
}

/* ----------------------------------------------------------------------------
 * Imprint
 * ------------------------------------------------------------------------- */
#imprint {
    padding: 52px 0;
    min-height: calc(100vh - 320px);
}

#imprint-wrapper {
    max-width: 624px;
}

#imprint-address {
    margin-bottom: 96px;
}

table {
    border-spacing: 12px;
}

/* ----------------------------------------------------------------------------
 * Privacy
 * ------------------------------------------------------------------------- */
#privacy {
    padding: 52px 0;
    min-height: calc(100vh - 320px);
}