/* --------------------- Kleuren --------------------- */
:root {

    --accent: #8F1C16;
    --zwart: #000000;
    --bg: #FDF3EA;

    --nav-height: 90px;
    /* Pas aan naar de hoogte van je navigatie */

    --margin-sections: 100px 0;
    ;
    --padding-sections: 100px 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

.bg-color {
    background-color: var(--bg);
}

.bg-color .margin {
    margin: 0;
    padding: var(--padding-sections);
}

.bg-color .section.margin {
    margin: 0;
}


/* --------------------- Fonts --------------------- */

body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;

    background-color: white;
    color: var(--zwart);

    /* gradient van --satin naar --halo */
    background-image: linear-gradient(to bottom,
            /* richting: van boven naar onder */
            var(--satin),
            /* beginkleur */
            var(--halo)
            /* eindkleur */
        );

    /* optioneel: volledige dekking, geen herhaling */
    background-repeat: no-repeat;
}


h1 {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;

    font-size: 3.5em;
    line-height: 1em;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

h2 {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;

    font-size: 2em;
    margin-bottom: 15px;
}


h3 {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;

    font-size: 1.4em;
    margin-bottom: 15px;
}


p {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;

    font-size: 1.1em;
    line-height: 1.4em;
}

a {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;

    font-size: 1.1em;
    line-height: 1.4em;

    text-decoration: none;
    color: unset;
}

ul {
    list-style-type: none;
    padding-inline-start: 0px;
    margin-block-start: 0px;
}

li {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;

    font-size: 1.1em;
    line-height: 1.4em;
}

.bold {
    font-weight: 500;
}

.soon {
    opacity: 0.3;
}

.hidden {
    display: none;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------- Marges --------------------- */
.section .container {
    width: 80vw;
    margin: 0 auto;
}

.section.margin {
    margin: var(--margin-sections);
}

.section.padding {
    padding: 100px 0;
}

.spacer {
    height: 100vh;
}

/* --------------------- Grid --------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.split-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}


.split-1-3 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
}

.split-3-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
}

.sticky {
    position: sticky;
    top: 100px;
}

/* --------------------- Components --------------------- */
/* - tekst-foto - */
.text-foto .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.text-foto .foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.text-foto .tekst {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 50px;
}

/* --------------------- Algemeen --------------------- */

/* btn  */
.btn {
    position: relative;
    /* nodig voor het ::after */
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 30px;
    text-decoration: none !important;
    color: white;
    background-color: var(--accent);
    font-weight: 500;
    font-size: 0.9em;
    width: fit-content;
}

.btn-wit {
    position: relative;
    /* nodig voor het ::after */
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 30px;
    text-decoration: none !important;
    color: var(--accent);
    background-color: white;
    font-weight: 500;
    font-size: 0.9em;
    width: fit-content;
}

.btn-outline {
    position: relative;
    /* nodig voor het ::after */
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 30px;
    text-decoration: none !important;
    color: var(--accent);
    border: 1px solid var(--accent);
    background-color: unset;
    font-weight: 500;
    font-size: 0.9em;
    width: fit-content;
}

.btn-outline-wit {
    position: relative;
    /* nodig voor het ::after */
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 30px;
    text-decoration: none !important;
    color: white;
    border: 1px solid white;
    background-color: unset;
    font-weight: 500;
    font-size: 0.9em;
    width: fit-content;
}


/* animatie op het lijntje onder de knop */
.btn:hover {
    transform: scaleX(1.05);
}

.number {
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid black;
}


/* --------------------- Navigatie --------------------- */
.navbar {
    position: fixed;
    top: 30px;
}

.navbar .btn {
    margin-top: 0px;
}

.navbar .logo {
    width: 280px;
}

.navbar .container {
    position: relative;
    max-width: unset;
    width: 90vw;
    margin-left: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link {
    color: white;
    text-decoration: none;
    margin: 0px 10px;
}



/* --------------------- Laad scherm --------------------- */


/* --------------------- Fontchange scherm --------------------- */

/* --------------------- Mediaquerries --------------------- */


/* Tablet */
@media screen and (max-width: 1023px) {
    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.4em;
    }

    .split {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }


    .split-1-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-3-1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.2em;
    }

    .hide-mobile {
        display: none;
    }

    .section.margin {
        margin: 100px 0;
    }


    .split {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }


    .split-1-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-3-1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }
}