/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

:root {
    --red: #CB5056;
}

* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    font-weight: 300;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--red);
}

img {
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h2, h3 {
    color: var(--red);
    margin-bottom: 5px;
}

.backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.overlay-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    max-width: 60vw;
    width: 90vw;
    overflow: scroll;
    max-height: 80vh;
    padding: 4vw;
    box-shadow: 0px 0px 9px -1px rgba(0,0,0,0.47);
}

@media all and (max-width: 670px) {
    .overlay {
        max-width: 90vw;
    }

    .overlay p {
        font-size: 14px;
        line-height: 20px;
    }
}

.logo {
    position: fixed;
    top: 4vw;
    right: 4vw;
    max-width: 40vw;
    width: 12.5vw;
    min-width: 120px;
}

.logo img {
    width: 100%;
}

.background {
    position: fixed;
    z-index: -1;
    width: 100vw;
    opacity: 0;
    transition: opacity 1.2s ease;
    height: calc(100vh - 78px);
}

@media all and (max-width: 900px) {
    .background {
        height: calc(100vh - 120px);
    }
}

@media all and (max-width: 670px) {
    .background {
        height: calc(100vh - 220px);
    }
}

.background.is-active {
    opacity: 1;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 30%;
}

.background.schmitzel img {
    object-position: right top;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-gap: 4vw;
    background-color: var(--red);
    padding: 1vw 4vw;
    vertical-align: center;
    align-items: center;
    color: #ffffff;
}

.footer * {
    font-size: 0.7vw;
    line-height: 1vw;
}


.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    color: #000000;
}

.footer-logo {
    grid-column: auto / span 3;
}

.footer-item {
    grid-column: auto / span 6;
}

.footer-links {
    grid-column: auto / span 3;
    text-align: right;
}

.footer-logo img {
    width: 100%;
    max-width: 60px;
}

@media all and (max-width: 1600px) {
    .footer * {
        font-size: 1.2vw;
        line-height: 1.8vw;
    }
}
@media all and (max-width: 1180px) {
    .footer * {
        font-size: 14px;
        line-height: 20px;
    }
}

@media all and (max-width: 900px) {
    .footer-item {
        grid-column: auto / span 7;
    }

    .footer-links {
        grid-column: auto / span 24;
        text-align: left;
    }
}

@media all and (max-width: 670px) {
    .footer {
        padding: 15px 0;
    }
    .footer * {
        font-size: 12px;
        line-height: 16px;
    }

    .footer-logo,
    .footer-item,
    .footer-links {
        grid-column: auto / span 24;
        text-align: center;
    }

    .footer-logo img {
        max-width: 50px;
        margin: 0 auto;
    }
}


.cookie-banner {
    display: none;
    position: fixed;
    z-index: 100;
    top: 20px;
    left: 20px;
    width: 300px;
    background-color: var(--red);
    padding: 10px 15px;
    color: #ffffff;
}

.cookie-banner a {
    display: block;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
}

.cookie-banner .accept {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--red);
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 5px;
}
