@font-face {
    font-family: 'LEMONMILK-Light';
    src: url('/mnt/data/LEMONMILK-Light.otf') format('opentype');
}
@font-face {
    font-family: 'LEMONMILK-Bold';
    src: url('/mnt/data/LEMONMILK-Bold.otf') format('opentype');
}
body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: black;
    font-size: 12px;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    color: black;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
nav a {
    color: black;
    text-decoration: none;
    margin: 5px 10px;
    font-size: 14px;
    font-family: 'LEMONMILK-Light', sans-serif;
    white-space: nowrap;
}
header {
    text-align: center;
    width: 75%;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 36px;
}
header h1 {
    font-size: 90px;
    line-height: 1;
}
header p {
    font-family: 'LEMONMILK-Light', sans-serif;
    font-size: 14px;
    margin-top: 5px;
}
.praktijk {
    font-family: 'LEMONMILK-Light', sans-serif !important;
    font-weight: normal;
}
.syco {
    font-family: 'LEMONMILK-Bold', sans-serif !important;
    font-weight: bold;
}
section {
    padding: 80px 20px;
    font-size: 14px;
    text-align: center;
    margin: 50px auto;
    border-radius: 10px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.columns-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.column {
    flex: 6;
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
}
h2, h3 {
    font-family: 'LEMONMILK-Bold', sans-serif;
}
.home-content {
    max-width: 60%;
    margin: 0 auto;
}
a {
    color: black; /* Zet de tekstkleur op zwart */
}
/* Responsiveness */
@media (max-width: 768px) {
    header {
        width: 90%;
    }
    header h1 {
        font-size: 60px;
    }
    header p {
        font-size: 12px;
    }
    nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav a {
        display: inline-block;
        margin: 5px 10px;
    }
    .columns-container {
        flex-direction: column;
    }
    .column {
        flex: 100%;
        text-align: center;
    }
    .home-content {
        max-width: 90%;
    }
    section {
        padding: 50px 15px;
    }
}
