body {
    margin: 0;
    font-family: 'Inter Tight', Arial, sans-serif;
}



section {
    scroll-margin-top: 90px;
}



/*HEADER*/
.site-header {
    padding: 20px 30px 8px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1001;
    text-align: center;
}

.site-title {
    font-size: 22px;
    font-weight: 600;
    font-family: 'EB Garamond', serif;
}



/*NAVBAR*/
.navbar {
    position: sticky;
    top: 56px;
    background: transparent;
    border-bottom: none;
    padding: 8px 30px 15px;
    display: flex;
    gap: 20px;
    z-index: 1000;
    justify-content: center;
}

.navbar a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.navbar a:hover {
    color: #007bff;
}



.navbar .cta {
    border-radius: 6px;
    /* margin-left: auto; <-- remove this */
}







/* SECTIONS */
.section {
    height: 100vh;
    padding: 80px 30px; /* ruimte voor navbar */
    box-sizing: border-box;
}

