@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    --primary: #dc6513;
    --secondary: #f4bf01;
    --tertiary: #ec9f07;
}

html {
    scroll-behavior: smooth;
    scroll-padding-bottom: 10px;
}

:target {
    scroll-margin-top: -1px;
}

body {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    font-size: 18px;
    padding: 50px 0;
    color: var(--primary)
}

h1,
h2,
h3,
h4,
h5 {
    margin-block-start: 0;
}

h1 {
    color: #fff;
    font-size: 60px;
    text-align: center;
}

h2 {
    color: var(--primary);
    font-size: 45px;
}

h2,
h3,
h4,
h5 {
    color: var(--primary);
}

h1 a {
    color: inherit;
}

a {
    color: var(--primary);
    text-decoration: none;
}

img {
    max-width: 100%;
}

.center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.logo {
    margin: 0 auto 40px;
    width: 240px;
}

.block {
    display: grid;
    gap: 50px;
}

.balk {
    width: 100%;
    box-sizing: border-box;
    padding: 8cqw 0;
    margin-top: -1px;
}

.balk--a {
    position: relative;
    background: var(--secondary);
    margin-bottom: -100px;
}

.balk--a .center {

    display: flex;
    align-items: center;
}

.balk--a .logo {
    width: 9cqw;
}

.balk--a h1 {
    width: calc(100% - 18cqw);
}

/* .balk--a:after {
    content: '';
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1926.94' height='155.74' viewBox='0 0 1926.94 155.74'%3E%3Cpath d='m0,0h1926.94v81.17s-235.78,113.93-506.37,60.13S928.44-31.18,781.27,16.29C645.36,60.13,335.03,166.62,0,9.96V0Z' style='fill:%23f4bf01; stroke-width:0px;'/%3E%3C/svg%3E") no-repeat center top/100%;

    content: '';
    width: 100%;
    aspect-ratio: 5 / 1;
    position: absolute;
    bottom: 0;
    display: block;
    translate: 0 99%;

} */

.balk--b {
    position: relative;
    min-height: 100vh;
    z-index: 2;
    color: #fff;
    background: var(--primary);
}

.balk--b h2 a {
    color: #fff;
}

.balk--b h2 {
    color: #fff;
}

.balk--b h3 {
    color: var(--secondary);
}

.balk--b .block {
    grid-template-columns: repeat(2, 1fr);
}

.balk--c {
    color: var(--primary);
    font-size: 30px;
}

.balk--c h2 {
    color: var(--primary);
}

.balk--d {
    min-height: 100vh;
    background: var(--secondary);
    color: #000;
}

.balk--d h2 {
    color: #fff;
}

.balk--d a {
    color: #fff;
}

.balk--e .block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px
}

.balk--f {
    min-height: 100vh;
    background: var(--tertiary);
    color: #fff;
}
.balk--f h2 {
    color: #fff;
}

.text-center {
    text-align: center;
}

.footerlogo {
    margin-bottom: 30px;
    padding-top: 80px;
}
.underlined {
    text-decoration: underline;
}

.publicaties {
    display: grid;
    grid-template-columns: repeat(3, 31.3%);
    gap: 3%;
    color: #fff;
}
.publicaties a {
    display: block;
}
.publicaties strong {
    display: block;
    color: #fff;
    margin-top: 10px;
}
.publicaties p {
    display: block;
    color: #fff;
}

@media(max-width:800px) {

    .menu {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    .logo {
        width: 50%;
        max-width: 200px;
    }

    .block {
        display: flex;
        flex-direction: column;
    }

    .block--right {
        flex-direction: column-reverse !important;
    }

    .balk--a {
        background: var(--secondary);
        margin-bottom: -20px;
    }

    .balk--a h1 {
        width: calc(100% - 32cqw);
    }

    .balk--c {
        font-size: 23px;
    }

    .balk--e .block {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .publicaties {
        grid-template-columns: repeat(2, 48.4%);
    }
}