/* --------------------- Kleuren --------------------- */
:root {
    --bruin: #963D2E;
    --beige: #EAE2D8;
    --zwart: #1A2215;
    --wit: #FFFFFF;
    --bg: #FAF8F6;

    --margin-sections: 0px auto;
    --padding-sections: 80px 0px 80px 0px;
}

/* --------------------- Fonts --------------------- */
@font-face {
    font-family: 'Ayer';
    /* Naam die je zelf kiest voor het font */
    src: url('/assets/fonts/ayerposter-mediumitalic-webfont.woff2') format('woff2'),
        url('assets/fonts/ayerposter-mediumitalic-webfont.woff') format('woff');
    font-style: normal;
}

@font-face {
    font-family: 'Mairo';
    /* Naam die je zelf kiest voor het font */
    src: url('/assets/fonts/mairo-webfont.woff2') format('woff2'),
        url('/assets/fonts/mairo-webfont.woff') format('woff');
    font-style: normal;
}

html, body {
    overflow-x: hidden;
}



body {
    font-family: "open-sans", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-optical-sizing: auto;
    font-style: normal;

    background-color: var(--bg);
    color: var(--zwart);
}


h1 {
    font-family: "fabiola-capitals", Arial, Helvetica, sans-serif;
    font-size: 6em;
    font-weight: 400;

    line-height: 1em;
    margin-bottom: 50px;
}

.highlight {
    font-family: 'Ayer';
}

h2 {
    font-family: "fabiola-capitals", Arial, Helvetica, sans-serif;
    font-size: 6em;
    font-weight: 400;

    line-height: 1em;
    margin-bottom: 50px;
}

h3 {
    font-family: "fabiola-capitals", Arial, Helvetica, sans-serif;
    font-size: 3em;
    font-weight: 400;

    line-height: 1em;
    margin-bottom: 50px;
}


p {
    font-family: "open-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    font-family: "open-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

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

li {
    font-family: "open-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.bold {
    font-family: "open-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* marges  */
.container {
    max-width: 1280px;
    width: 80vw;
    margin: 0 auto;
}

/* btn  */
.btn-outline {
    border: 1.5px solid var(--bruin);
    padding: 10px 20px;
    border-radius: 25px;

    text-decoration: none !important;
    text-transform: uppercase;

    color: var(--bruin);
    font-weight: 700;
    display: inline-flex;
    transition: 0.3s all;
}

.btn-outline:hover {
    background-color: var(--bruin);
    color: var(--bg);

    transition: 0.3s all;
}


.btn-filled {
    border: 1.5px solid var(--bruin);
    background-color: var(--bruin);
    padding: 10px 20px;
    border-radius: 25px;

    text-decoration: none !important;
    text-transform: uppercase;

    color: var(--bg);
    font-weight: 700;
    display: inline-flex;

    transition: 0.3s all;
}

.btn-filled:hover {
    background-color: var(--bg);
    color: var(--bruin);

    transition: 0.3s all;
}


/* --------------------- 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;
}

.active {
    color: var(--groen);
}

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


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

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


/* Tablet */
@media screen and (max-width: 1023px) {
    .btn-outline {
        padding: 7px 14px;
    }

    .btn-filled {
        padding: 7px 14px;
    }

    h1 {
        margin-bottom: 30px;
    }

    h2 {
        margin-bottom: 30px;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    h1 {
        font-size: 4em;
    }
    
    h2 {
        font-size: 3em;
        margin-bottom: 30px;
    }
    
    h3 {
        font-size: 2em;
    }
}