* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;

    -webkit-touch-callout: none;
    /* -webkit-user-select: none;user-select: none; */
    font-family: "Merriweather", "Helvetica Neue", Helvetica, Arial, sans-serif;
}


body > header {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-height: 600px;
    /* aspect-ratio: 1 / .5; */
    background: center no-repeat url('./images/headerBg.jpg');
    background-size: cover;
    overflow: hidden;
}
body > header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin-top: 50px;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat';
    background-color: rgba(255, 255, 255, .05);
    border-radius: 3px;
}

body > header nav > button {
    display: none;
    /* display: flex; */
    position: fixed;left: 20px;top: 20px;

    -webkit-appearance: none;
    appearance: none;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 8px 12px;
    background-color: #000;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Montserrat';
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

body > header nav button::after {
    content: url('./icons/menu.svg');
    display: block;
    width: 24px;
    height: 24px;
}



body > header nav > span {
    display: inline-block;
    color: #afafaf;
    letter-spacing: 2px;
    text-transform: uppercase;
}

body > header nav > span:not(:last-child)::after {
    content: '•';
    display: inline-block;
    margin: 0 26px;
    color: #fff;
}

body > header nav a {
    color: #fff;
    text-decoration: none;
}

body > header img.logo {
    display: block;
    width: 60%;
    max-width: 630px;
    margin: 10px auto;
}

@media screen and (max-width: 820px) {
    body > header nav {
        position: fixed;
        top: 20px;
        left: 20px;
        background-color: #000;
        margin: 0;
        /* padding: 50px 10px 0; */
        padding: 0;
        height: auto;
        flex-direction: column;align-items: flex-start;
    }

    body > header nav > button {
        display: flex;
    }

    body > header nav > span {
        display: none;
        margin: 0 20px 20px;
    }
    body > header nav > span:nth-child(2) {margin-top: 50px;}
    body > header nav > span:not(:last-child)::after {display: none;}


    body > header img.logo {
        margin-top: 15px;
    }

    body > header nav > button.Open ~ span {
        display: block;
    }
    body > header nav button.Open::after {
        content: url('./icons/close.svg');
    }
}




body > footer {
    display: block;
    background-color: #111;
    color: #fff;
}

body > footer .copyright {
    line-height: 80px;
    text-align: center;
    background-color: #121212;
    font-size: 13px;
    color: #fff;
    font-family: 'Montserrat-Light';
}

body > footer .openingstijden {
    display: inline-flex;

    flex-direction: column;
    padding: 50px 30px;
}

body > footer .openingstijden h3 {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 3px;
}

body > footer .openingstijden > div {
    display: flex;
    padding: 7px 0;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
}

body > footer .openingstijden > div span {
    width: 160px;
    text-align: center;
}

body > footer .openingstijden > div span:first-child {
    width: 100px;
    margin-right: 20px;
}

body > footer .openingstijden .gesloten {
    color: #a30000;
}





body > section {
    display: block;
    width: 90%;max-width: 800px;
    margin: 60px auto;
    font-weight: 150;color: #333;
}
body > section h2 {
    margin-top: 0;
    font-size: 36px;color: #a30000;font-weight: 500;
    border-bottom: 1px ;
}
body > section h2 div,
body > section h2 p {
    font-family: 'Montserrat';
    font-size: 26px;font-weight: bold;color: #444;
    text-transform: uppercase;
}
body > section h2 ~ div {
    line-height: 22px;
}





body > img.section {
    display: block;
    width: 100%;
}