:root {
    --color-teal: #0d9488;       
    --color-gold: #f59e0b;       
    --color-coral: #fb7185;      
    --color-mint: #34d399;       
    
    --bg-cream: #fffbf5;         
    --text-dark: #374151;        
    --text-heading: #111827;     
    
    --border-radius-card: 24px;  
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--text-heading);
    font-weight: 800;
    line-height: 1.3;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }

a { text-decoration: none; transition: 0.3s; }

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}
.page-header {
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
}
.page-header h1 { color: var(--color-teal); margin-bottom: 20px; }
.page-header p { max-width: 700px; margin: 0 auto; font-size: 1.15rem; color: #6b7280; }

.header-blob {
    position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; background: var(--color-gold); opacity: 0.05;
    border-radius: 50%; z-index: -1; filter: blur(60px);
}

/* --- TEAM SECTIE --- */
.story-section { padding: 60px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.story-text h2 { margin-bottom: 20px; }
.story-text p { margin-bottom: 20px; }

.discipline-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.discipline-card {
    background: white;
    padding: 25px 15px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: 0.3s;
}
.discipline-card:hover { border-color: var(--color-teal); transform: translateY(-3px); box-shadow: 0 10px 15px rgba(13, 148, 136, 0.1); }

.discipline-icon { 
    font-size: 2.5rem; margin-bottom: 15px; display: block; color: var(--color-teal);
}
.discipline-title { font-weight: 700; color: var(--text-heading); font-family: var(--font-head); font-size: 0.95rem; }

.story-image {
    height: 450px;
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-card);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* --- VISIE SECTIE (AANGEPAST) --- */
.vision-section { 
    padding: 80px 0; 
    background-color: #ffffff; /* NU WIT IPV GEEL */
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f3f0e7;
    border-bottom: 1px solid #f3f0e7;
}

.vision-blob {
    position: absolute; left: -5%; bottom: -50%;
    width: 300px; height: 300px;
    background: var(--color-mint); /* Muntgroen ipv goud voor frisser gevoel */
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
}

.vision-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }

.vision-values {
    background: var(--bg-cream); /* Nu crème kleurig blok */
    padding: 40px;
    border-radius: var(--border-radius-card);
    border-left: 6px solid var(--color-teal); /* Teal accent */
}
.vision-values h3 { color: var(--color-teal); margin-bottom: 20px; font-size: 1.5rem; }
.vision-values ul { list-style: none; padding: 0; }
.vision-values li { 
    margin-bottom: 15px; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 10px; 
}
.vision-values li i { color: var(--color-teal); font-size: 1.2rem; }

.vision-content h2 { margin-bottom: 25px; }
.vision-content p { margin-bottom: 20px; font-size: 1.05rem; }

/* --- KLACHTEN & JEUGDSTEM --- */
.info-section { padding: 80px 0; position: relative; }
.info-blob { 
    position: absolute; right: -10%; top: 20%; 
    width: 400px; height: 400px; 
    background: var(--color-mint); opacity: 0.1; 
    border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%; 
    filter: blur(50px); z-index: -1;
}

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.info-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 6px solid var(--color-coral);
}
.info-card.jeugdstem { border-top-color: var(--color-teal); }

.info-card h3 { margin-bottom: 20px; font-size: 1.5rem; }
.info-card ul { list-style-type: none; padding-left: 0; margin-top: 20px; }
.info-card li { 
    position: relative; padding-left: 25px; margin-bottom: 10px; 
    font-size: 0.95rem; color: #4b5563;
}
.info-card li::before {
    content: '✓';
    position: absolute; left: 0; color: var(--color-teal); font-weight: 800;
}
.contact-box {
    background: #f0fdfa; 
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 0.9rem;
}
.contact-box strong { color: var(--color-teal); display: block; margin-bottom: 5px; }
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .story-grid, .info-grid, .vision-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .story-image { height: 250px; order: -1; }
}
/* --- RAAD VAN COMMISSARISSEN --- */
.rvc-section {
    padding: 80px 0;
    background-color: #fffbf5; /* Dezelfde crème kleur als de body voor rust */
    /* border-bottom: 1px solid #f3f0e7; */
}

.rvc-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.rvc-header h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: var(--text-heading);
}

.rvc-header p {
    color: #64748b;
    font-size: 1.05rem;
}

.rvc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.rvc-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--border-radius-card);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.rvc-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold); /* Goud accent voor toezicht */
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.1);
}

.rvc-icon {
    width: 60px;
    height: 60px;
    background-color: #fff7ed; /* Heel licht oranje/goud */
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
}

.rvc-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--text-heading);
}

.rvc-role {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.rvc-card p {
    font-size: 0.95rem;
    color: #64748b;
}