:root {
    --green-dark: #3f6f58;
    --green-main: #6f9e7c;
    --green-light: #a8c9b1;
    --bg-light: #f6f7f4;
    --text-dark: #2f2f2f;
    --white: #ffffff;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(254, 246, 240, 0.98);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;     /* Verwijdert ongewenste whitespace onder de afbeelding */
    width: 150px;        /* Filler breedte, kan je later aanpassen */
    height: auto;        /* Houdt de verhouding correct */
}


.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--green-main);
}


/* HERO */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* GROENE OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(63, 111, 88, 0.75);
    z-index: -1;
}

/* CONTENT */
.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
}


/* PAGE HERO (inner pages) */
.page-hero {
    background: var(--green-dark);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* BLOCKQUOTE */
blockquote {
    border-left: 4px solid var(--green-main);
    margin: 1.5rem 0;
    padding: 0.75rem 1.5rem;
    font-style: italic;
    color: var(--green-dark);
    background: var(--white);
    border-radius: 0 4px 4px 0;
}

/* SECTIONS */
.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-alt {
    background: var(--white);
    border-left: 6px solid var(--green-main);
}

.section h3 {
    color: var(--green-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.section p {
    margin-bottom: 1.2rem;
}

.section ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.section ul li {
    margin-bottom: 0.5rem;
}

/* TWO COLUMN LIST */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* HIGHLIGHT */
.highlight {
    font-weight: 600;
    color: var(--green-dark);
}

/* VISION */
.vision {
    background: var(--bg-light);
    border-radius: 8px;
}

.vision-quote {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* FOOTER */
.footer {
    background: var(--green-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}