:root {
    --klassiek-groen: #4A5D4E;   
    --logo-donker: #489100;      
    --logo-licht: #97D700;       
    --white: #ffffff;
    --text-dark: #2d3436;
    --navbar-height: 90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

html { scrollbar-gutter: stable; }

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* Voor tekstpagina's (niet voor de home) */
.content-wrapper {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    padding-top: var(--navbar-height);
}
