*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

:root {
    --lime-green: #32CD32;
    --yellow-green-color-wheel: #2CB52C;
    --slimy-green: #249424;
    --lincoln-green: #145214;

    --indigo-dye: #234A6C;
    --prussian-blue: #132739;
    --rich-black: #0A151F;

    --isabelline: #F9F5F0;
    --tan: #D2AB85;
    --camel: #BB8E61;
    --copper: #A4703D;
    --coyote-brown: #865C32;

    --white: #FFF;
    --cultured: #ededed;
}

:target::before {
    content: '';
    display: block;
    height: 180px;
    margin-top: -180px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--prussian-blue);
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

.max-width {
    margin: 0 auto;
    max-width: 75vw;
    position: relative;
}

input {
    border-radius: 0;
}

textarea:focus,
input:focus {
    outline: none;
}

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

ul li h3 {
    margin-bottom: 0;
}

ul li p:first-of-type {
    margin-top: 3px;
}

h1 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 85px;
    text-transform: uppercase;
}

.hero p.sub {
    font-size: 19px;
    line-height: 32px;
}

.page-container.contact h3 {
    margin: 36px 0 -9px 0;
}

.page-container.contact h2 {
    margin-top: 0;
}

p {
    font-size: 17px;
    line-height: 25px;
    font-weight: 300;
}

p a {
    color: var(--copper);
    font-weight: 400;
    text-decoration: underline;
    transition: 0.2s;
}

p a:hover {
    color: var(--coyote-brown);
    transition: 0.2s;
}

p.intro {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.button {
    background-color: var(--lime-green);
    border: none;
    color: var(--prussian-blue);
    cursor: pointer;
    display: inline-block;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    outline: none;
    padding: 8px 15px;
    pointer-events: auto;
    text-align: center;
    transition: background-color 0.2s ease;
}

.button.tan {
    background-color: var(--tan);
}

.button.tan:hover {
    background-color: var(--camel);
}

.button.lime-green {
    background-color: var(--lime-green);
}

.button.lime-green:hover {
    background-color: var(--yellow-green-color-wheel);
    transition: background-color 0.2s ease;
}

.page-container {
    min-height: calc(100vh - (100vh / 3) - 100px);
    padding: 69px 0 51px 0;
    position: relative;
}

.bedankt .intro {
    margin-bottom: 51px;
}

.section .max-width .content {
    max-width: calc(100% - 400px);
    z-index: 2;
}

.section .max-width .content .member {
    display: flex;
    margin: 18px 0;
}

.section .max-width .content .member:first-of-type {
    margin-top: 36px;
}

.section .max-width .content .member .photo {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    margin-right: 36px;
    min-width: 200px;
    width: 200px;
}

.section .max-width .content .member .photo.lacoste {
    background-image: url('/static/img/Anne-Christine Lacoste.jpeg');
}

.section .max-width .content .member .photo.vaal {
    background-image: url('/static/img/JAF_CUIC_3juli23_05_eliette.jpg');
}

.section .max-width .content .member .photo.laffeber-nicolai {
    background-image: url('/static/img/JAF_CUIC_3juli23_03_hilde.jpg');
}

.section .max-width .content .member .photo.korremans {
    background-image: url('/static/img/Paul Korremans.jpeg');
}

.section .max-width .content .member .photo.vanluyn {
    background-image: url('/static/img/Maarten van Luyn (RvT).jpeg');
}

.section .max-width .content .member .photo.visser {
    background-image: url('/static/img/JAF_CUIC_3juli23_17_matthijs.jpg');
}

.section .max-width .content .member .photo.hendriks {
    background-image: url('/static/img/JAF_CUIC_3juli23_02_wilmar.jpg');
}

.section .max-width .content .member .photo.rutten {
    background-image: url('/static/img/JAF_CUIC_3juli23_18_koen.jpg');
}

.section .max-width .content .member .photo.vincent {
    background-image: url('/static/img/Vincent Bohre.jpg');
}

.section#raad-van-toezicht .member h3,
.section#bestuur .member h3 {
    margin-top: 0;
}

.section h2 {
    color: var(--prussian-blue);
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
    margin: 60px 0 27px 0;
}

.hero {
    background-color: var(--prussian-blue);
    background-image: url(/static/img/blurred_apps.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    height: 100vh;
    margin-top: 0;
    width: 100%;
}

.hero.small {
    height: 35vh;
    background: var(--indigo-dye);
    color: var(--white);
}

.hero .max-width {
    height: 100vh;
}

.hero.small .max-width {
    height: 35vh;
}

.hero .content {
    max-width: 70%;
    position: absolute;
    top: calc(50% + 30px);
    transform: translateY(-50%);
}

.hero.small .content {
    top: unset;
    bottom: 0;
    transform: unset;
}

.hero h1 {
    font-weight: 600;
    margin-top: 0;
    transition: opacity 0.2s;
}

.hero.small h2 {
    font-size: 65px;
    margin-bottom: 50px;
    text-transform: none;
    transition: opacity 0.2s;
}

.hero p {
    font-weight: 300;
    line-height: 28px;
    max-width: 650px;
}

.page-container.cookie .section h2 {
    margin: 0 0 27px 0;
}


@media (min-width: 1400px) {
    .section .max-width .content {
        max-width: 60%;
    }
}

@media (max-width: 1600px) {
    h1 {
        font-size: 70px;
        line-height: 75px;
    }
}

@media (max-width: 1500px) {
    h1 {
        font-size: 60px;
        line-height: 65px;
    }
}

@media (max-width: 1350px) {
    .hero .content {
        max-width: 60%;
    }
}

@media (max-width: 1200px) {
    h1 {
        font-size: 50px;
        line-height: 55px;
    }
}

@media (max-width: 1000px) {
    .max-width {
        max-width: 90vw;
    }

    .section .max-width .content {
        max-width: 100%;
    }
}

@media (max-width: 700px) {

    .page-container {
        min-height: unset;
        padding: 0 0 36px 0;
    }

    .hero .content {
        max-width: calc(100% - 36px);
    }

    h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .max-width {
        max-width: 100%;
        padding-left: max(18px, env(safe-area-inset-left, 0px));
        padding-right: max(18px, env(safe-area-inset-right, 0px));
    }

    .hero.small,
    .hero.small .max-width {
        height: 200px;
    }

    .hero.small h2 {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .section h2 {
        font-size: 27px;
        line-height: 33px;
        margin: 36px 0 18px 0;
    }

    .section#raad-van-toezicht .member h3,
    .section#bestuur .member h3 {
        margin-top: 27px;
    }

    .section .max-width .content {
        max-width: 100%;
    }

    .section:not(.first) {
        margin-top: 36px;
    }

    p.intro {
        font-size: 18px;
        line-height: 26px;
        margin-top: 36px;
    }

    .hero .content br {
        display: none;
    }

    .section .max-width .content .member {
        display: block;
        margin-bottom: 36px;
    }

    .section .max-width .content .member:last-of-type {
        margin-bottom: 0;
    }

    .section .max-width .content .member:last-of-type p {
        margin-bottom: 0;
    }

    .page-container.cookie .section p:last-of-type {
        margin-bottom: 0;
    }
}