/*
Theme Name: ZoeterMeer Lokaal
Theme URI: https://zoetermeerlokaal.nl
Author: ZoeterMeer Lokaal / DuurSamen Zoetermeer
Author URI: https://duursamenzoetermeer.nl
Description: WordPress-thema voor de Voedselbeweging van Zoetermeer. Bevat initiatieven, agenda, persoonspagina's, inzendformulieren en admin-goedkeuring.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zoetermeerlokaal
Tags: food, local, community, dutch
*/

/* ===== CSS VARIABLES ===== */
:root {
  --green-deep: #2B6B2A;
  --green-mid: #4A8C3F;
  --green-light: #7DB56A;
  --orange: #E07B1A;
  --orange-bright: #F59E2B;
  --brown: #7A5C30;
  --brown-light: #C8A86B;
  --sky: #A8D4E8;
  --cream: #F9F5ED;
  --white: #FFFFFF;
  --text-dark: #1E2D1E;
  --text-mid: #3D4F3D;
  --text-light: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ===== ANNOUNCEMENT BANNER ===== */
.fietstocht-banner {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 100%);
  padding: 0.9rem 2.5rem;
  text-align: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.fietstocht-banner a {
  background: rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.28rem 0.85rem;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  transition: background 0.2s;
}
.fietstocht-banner a:hover { background: rgba(255,255,255,0.4); }

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(43,107,42,0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-badge {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.1;
}
.nav-logo-text span {
  color: var(--orange-bright);
  display: block;
  font-size: 0.72rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 0.38rem 0.75rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 20px !important;
  padding: 0.42rem 1rem !important;
}
.nav-cta:hover { background: var(--orange-bright) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== SHARED ===== */
section { padding: 4.5rem 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.section-header p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 0.82rem 1.9rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(224,123,26,0.38);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(224,123,26,0.48);
}
.btn-secondary {
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  padding: 0.82rem 1.9rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
}
.btn-secondary:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--green-deep);
  padding: 0.65rem 1.4rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.87rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--orange-bright); color: var(--white); }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(140deg, var(--green-deep) 0%, #1a4a1a 45%, #2e6e2e 75%, var(--brown) 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-circle { position: absolute; border-radius: 50%; opacity: 0.07; background: var(--orange-bright); }
.hero-circle-1 { width: 580px; height: 580px; top: -180px; right: -80px; }
.hero-circle-2 { width: 280px; height: 280px; bottom: -30px; left: 8%; opacity: 0.05; }
.hero-circle-3 { width: 160px; height: 160px; top: 35%; left: 58%; opacity: 0.04; }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; height: 110px; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  padding: 6rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(240,159,43,0.18);
  border: 1px solid var(--orange-bright);
  color: var(--orange-bright);
  padding: 0.32rem 0.9rem;
  border-radius: 20px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.7s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.35rem;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}
.hero h1 em { color: var(--orange-bright); font-style: normal; }
.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem; line-height: 1.72;
  margin-bottom: 2rem;
  max-width: 460px;
  animation: fadeSlideUp 0.7s 0.2s ease both;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeSlideUp 0.7s 0.3s ease both; }
.hero-right { display: flex; flex-direction: column; gap: 0.9rem; animation: fadeSlideUp 0.9s 0.15s ease both; }
.hero-stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.25rem 1.6rem;
  display: flex; align-items: center; gap: 1rem;
  transition: transform 0.25s;
}
.hero-stat-card:hover { transform: translateX(6px); }
.stat-icon { font-size: 2rem; flex-shrink: 0; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--orange-bright); font-weight: 700; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.72); font-size: 0.84rem; font-weight: 300; margin-top: 0.2rem; }

/* ===== OVER DE BEWEGING ===== */
.over-section { background: var(--white); }
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.over-visual { position: relative; }
.over-big-circle {
  width: 100%; aspect-ratio: 1; max-width: 460px; margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-light) 0%, var(--green-deep) 60%, var(--brown) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(43,107,42,0.25);
}
.over-big-circle-inner { text-align: center; color: var(--white); padding: 2rem; position: relative; z-index: 2; }
.over-big-circle-inner .big-emoji { font-size: 4rem; display: block; margin-bottom: 0.75rem; }
.over-big-circle-inner p { font-family: 'Playfair Display', serif; font-size: 1.5rem; line-height: 1.3; color: var(--white); }
.over-badge { position: absolute; background: var(--orange); color: var(--white); border-radius: 12px; padding: 0.6rem 1.1rem; font-weight: 700; font-size: 0.85rem; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.over-badge-1 { top: 10%; right: -10%; }
.over-badge-2 { bottom: 15%; left: -8%; }
.over-text h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--green-deep); margin-bottom: 1.25rem; line-height: 1.2; }
.over-text p { color: var(--text-mid); line-height: 1.75; font-size: 1.05rem; margin-bottom: 1.25rem; }
.over-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.pillar { background: var(--cream); border-left: 3px solid var(--green-mid); padding: 0.85rem 1rem; border-radius: 0 8px 8px 0; font-size: 0.9rem; font-weight: 600; color: var(--green-deep); display: flex; align-items: center; gap: 0.6rem; }

/* ===== WAAROM SECTIE (v2) ===== */
.waarom-section { background: var(--white); }
.waarom-intro {
  background: linear-gradient(135deg, var(--green-deep) 0%, #1d4e1d 100%);
  border-radius: 20px; padding: 3rem; color: var(--white);
  margin-bottom: 3rem; position: relative; overflow: hidden;
}
.waarom-intro::before {
  content: '\201C'; position: absolute; top: -20px; left: 20px;
  font-family: 'Playfair Display', serif; font-size: 15rem;
  color: rgba(255,255,255,0.04); line-height: 1;
}
.waarom-intro blockquote {
  font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-style: italic; line-height: 1.55; color: var(--white);
  max-width: 820px; position: relative; z-index: 2; margin-bottom: 1rem;
}
.waarom-intro cite { color: var(--orange-bright); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; font-style: normal; display: block; position: relative; z-index: 2; }
.waarom-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
.waarom-pillar { border-radius: 16px; padding: 2rem 1.5rem; position: relative; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.waarom-pillar:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.waarom-pillar.green { background: linear-gradient(145deg, #e8f5e9, #c8e6c9); }
.waarom-pillar.orange { background: linear-gradient(145deg, #fff8e1, #ffe0b2); }
.waarom-pillar.blue { background: linear-gradient(145deg, #e3f2fd, #b3e5fc); }
.waarom-pillar.brown { background: linear-gradient(145deg, #efebe9, #d7ccc8); }
.waarom-pillar.rose { background: linear-gradient(145deg, #fce4ec, #f8bbd0); }
.waarom-pillar.teal { background: linear-gradient(145deg, #e0f2f1, #b2dfdb); }
.wp-icon { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.wp-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 0.5rem; font-weight: 700; }
.wp-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.58; }
.waarom-systeem {
  background: var(--cream); border-radius: 20px; padding: 2.5rem 3rem; border-left: 4px solid var(--orange);
}
.waarom-systeem h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-deep); margin-bottom: 1rem; }
.waarom-systeem p { color: var(--text-mid); line-height: 1.75; font-size: 1rem; margin-bottom: 0.85rem; }
.ambities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 1.5rem; }
.ambitie { background: var(--white); border-radius: 10px; padding: 0.8rem 1rem; font-size: 0.87rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.45; }
.ambitie-num { color: var(--orange); font-weight: 700; flex-shrink: 0; font-size: 1rem; line-height: 1.3; }

/* ===== INITIATIEVEN / PROJECTEN ===== */
.initiatieven-section { background: var(--cream); }
.initiatieven-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.initiatief-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform 0.25s, box-shadow 0.25s; }
.initiatief-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(43,107,42,0.15); }
.initiatief-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.initiatief-body { padding: 1.5rem; }
.initiatief-tag { display: inline-block; background: rgba(74,140,63,0.12); color: var(--green-mid); padding: 0.2rem 0.65rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 0.75rem; text-transform: uppercase; }
.initiatief-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-deep); margin-bottom: 0.5rem; line-height: 1.25; }
.initiatief-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.initiatief-org { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-top: 0.5rem; }
.initiatief-link { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--green-mid); font-size: 0.85rem; font-weight: 700; text-decoration: none; margin-top: 0.6rem; transition: color 0.2s; }
.initiatief-link:hover { color: var(--green-deep); }

/* ===== LOCATIES / VERBINDINGSPLEKKEN ===== */
.locaties-section, .plekken-section { background: var(--white); }
.locaties-filters, .plekken-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.filter-btn { padding: 0.42rem 1rem; border-radius: 20px; border: 2px solid var(--green-mid); background: transparent; color: var(--green-mid); font-family: 'Source Sans 3', sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--green-mid); color: var(--white); }
.locaties-grid, .plekken-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.2rem; }

/* Plek cards (v2 style) */
.plek-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 3px 16px rgba(0,0,0,0.06); transition: transform 0.22s, box-shadow 0.22s; border: 1.5px solid transparent; display: flex; flex-direction: column; }
.plek-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(43,107,42,0.13); border-color: var(--green-light); }
.plek-deelnemer-header { padding: 1.1rem 1.4rem 0.75rem; display: flex; align-items: flex-start; gap: 0.9rem; border-bottom: 1px solid #f0f0f0; }
.plek-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(74,140,63,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.45rem; flex-shrink: 0; }
.plek-cat { font-size: 0.72rem; font-weight: 700; color: var(--orange); letter-spacing: 0.06em; text-transform: uppercase; }
.plek-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green-deep); margin-top: 0.15rem; line-height: 1.2; }
.plek-body { padding: 0.9rem 1.4rem; flex-grow: 1; }
.plek-eigen-tekst { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; background: #f8fff8; border-left: 3px solid var(--green-light); padding: 0.65rem 0.85rem; border-radius: 0 8px 8px 0; margin-bottom: 0.75rem; font-style: italic; }
.plek-eigen-label { font-size: 0.68rem; color: var(--green-mid); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.3rem; }
.plek-details { display: flex; flex-direction: column; gap: 0.3rem; }
.plek-detail { font-size: 0.82rem; color: var(--text-light); display: flex; align-items: center; gap: 0.4rem; }
.plek-footer { padding: 0.75rem 1.4rem; border-top: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; }
.plek-link { font-size: 0.83rem; font-weight: 700; color: var(--green-mid); text-decoration: none; display: flex; align-items: center; gap: 0.35rem; transition: color 0.2s; }
.plek-link:hover { color: var(--green-deep); }
.plek-badge { font-size: 0.68rem; padding: 0.18rem 0.55rem; border-radius: 10px; background: rgba(74,140,63,0.1); color: var(--green-mid); font-weight: 700; }

/* Locatie cards (v1 style) */
.locatie-card { border: 1.5px solid #e4eee4; border-radius: 14px; padding: 1.5rem; background: var(--cream); display: flex; flex-direction: column; gap: 0.75rem; transition: all 0.2s; position: relative; overflow: hidden; }
.locatie-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--green-mid); border-radius: 4px 0 0 4px; }
.locatie-card:hover { border-color: var(--green-mid); box-shadow: 0 6px 28px rgba(74,140,63,0.12); transform: translateY(-3px); }
.locatie-header { display: flex; align-items: flex-start; gap: 1rem; }
.locatie-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; background: rgba(74,140,63,0.1); }
.locatie-info h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green-deep); margin-bottom: 0.2rem; }
.locatie-cat { font-size: 0.75rem; font-weight: 700; color: var(--orange); letter-spacing: 0.06em; text-transform: uppercase; }
.locatie-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.55; }
.locatie-address { font-size: 0.82rem; color: var(--text-light); display: flex; align-items: center; gap: 0.4rem; }
.locatie-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--green-mid); font-size: 0.85rem; font-weight: 700; text-decoration: none; margin-top: auto; transition: color 0.2s; }
.locatie-link:hover { color: var(--green-deep); }

/* ===== AGENDA ===== */
.agenda-section { background: linear-gradient(180deg, var(--cream) 0%, #eef5ee 100%); }
.agenda-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.agenda-list { display: flex; flex-direction: column; gap: 0.85rem; }
.agenda-item {
  background: var(--white);
  border-radius: 14px;
  padding: 1.35rem 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  border: 1.5px solid transparent;
  transition: all 0.22s;
  text-decoration: none;
  color: inherit;
}
.agenda-item:hover { border-color: var(--green-mid); transform: translateX(5px); box-shadow: 0 4px 20px rgba(74,140,63,0.1); }
.agenda-date { text-align: center; flex-shrink: 0; width: 54px; }
.agenda-date .day { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--orange); font-weight: 900; line-height: 1; }
.agenda-date .month { font-size: 0.72rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.agenda-divider { width: 2px; height: 52px; background: linear-gradient(to bottom, var(--green-light), transparent); flex-shrink: 0; }
.agenda-content h3 { font-family: 'Playfair Display', serif; font-size: 1.02rem; color: var(--green-deep); margin-bottom: 0.25rem; }
.agenda-content p { color: var(--text-light); font-size: 0.86rem; line-height: 1.48; }
.agenda-content .loc { display: flex; align-items: center; gap: 0.3rem; color: var(--orange); font-size: 0.79rem; font-weight: 600; margin-top: 0.35rem; }
.agenda-tag { display: inline-block; background: rgba(74,140,63,0.1); color: var(--green-mid); padding: 0.15rem 0.55rem; border-radius: 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.3rem; }

.agenda-sidebar {}
.agenda-cta-card {
  background: linear-gradient(145deg, var(--green-deep), #1d4e1d);
  border-radius: 16px; padding: 2rem; color: var(--white); margin-bottom: 1.25rem;
}
.agenda-cta-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.75rem; }
.agenda-cta-card p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 1.25rem; color: rgba(255,255,255,0.78); }
.fietstocht-card {
  background: linear-gradient(145deg, var(--orange), var(--orange-bright));
  border-radius: 16px; padding: 1.75rem; color: var(--white);
}
.fietstocht-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.5rem; }
.fietstocht-card p { font-size: 0.85rem; line-height: 1.55; color: rgba(255,255,255,0.88); margin-bottom: 1rem; }

/* ===== DUURSAMEN ===== */
.duursamen-section { background: var(--cream); }
.duursamen-inner { background: var(--white); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 2fr; box-shadow: 0 4px 30px rgba(0,0,0,0.07); }
.duursamen-left { background: linear-gradient(160deg, var(--green-deep), #1a4a1a); padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.ds-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.ds-logo span { color: var(--orange-bright); }
.duursamen-left p { color: rgba(255,255,255,0.78); font-size: 0.92rem; line-height: 1.68; flex-grow: 1; margin-bottom: 2rem; }
.ds-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 0.85rem 1rem; color: var(--orange-bright); font-size: 0.82rem; font-weight: 700; }
.duursamen-right { padding: 2.5rem 3rem; }
.duursamen-right h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green-deep); margin-bottom: 1rem; }
.duursamen-right p { color: var(--text-mid); line-height: 1.72; font-size: 0.97rem; margin-bottom: 1rem; }
.traject-stappen { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }
.traject-stap { display: flex; gap: 1.25rem; align-items: flex-start; padding-bottom: 1.5rem; position: relative; }
.traject-stap:not(:last-child)::before { content: ''; position: absolute; left: 17px; top: 36px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--green-light), transparent); }
.stap-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--green-mid); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 2px 10px rgba(74,140,63,0.3); }
.stap-text h4 { font-family: 'Playfair Display', serif; font-size: 0.97rem; color: var(--green-deep); margin-bottom: 0.2rem; }
.stap-text p { font-size: 0.84rem; color: var(--text-light); line-height: 1.5; }

/* ===== MEEDOEN ===== */
.meedoen-section { background: var(--green-deep); position: relative; overflow: hidden; }
.meedoen-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 50%, rgba(245,158,43,0.08) 0%, transparent 55%), radial-gradient(circle at 85% 20%, rgba(125,181,106,0.08) 0%, transparent 50%); }
.meedoen-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding: 5rem 2.5rem; text-align: center; }
.meedoen-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 3rem); color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.meedoen-content h2 span { color: var(--orange-bright); }
.meedoen-content > p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.72; margin-bottom: 2.5rem; font-weight: 300; }
.meedoen-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; text-align: left; margin-bottom: 2.75rem; }
.meedoen-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 1.4rem; transition: background 0.2s; }
.meedoen-card:hover { background: rgba(255,255,255,0.12); }
.meedoen-card .icon { font-size: 1.9rem; margin-bottom: 0.7rem; display: block; }
.meedoen-card h3 { color: var(--orange-bright); font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 0.45rem; }
.meedoen-card p { color: rgba(255,255,255,0.68); font-size: 0.86rem; line-height: 1.55; }

/* ===== NIEUWS ===== */
.nieuws-section { background: var(--white); }
.nieuws-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.nieuws-card { background: var(--cream); border-radius: 16px; overflow: hidden; transition: transform 0.22s; }
.nieuws-card:hover { transform: translateY(-4px); }
.nieuws-img { height: 148px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; background-size: cover; background-position: center; }
.nieuws-body { padding: 1.2rem 1.4rem; }
.nieuws-date { font-size: 0.76rem; color: var(--orange); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.4rem; }
.nieuws-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--green-deep); margin-bottom: 0.4rem; line-height: 1.28; }
.nieuws-body p { color: var(--text-light); font-size: 0.86rem; line-height: 1.55; }
.nieuws-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--green-mid); font-size: 0.82rem; font-weight: 700; text-decoration: none; margin-top: 0.65rem; transition: color 0.2s; }
.nieuws-link:hover { color: var(--green-deep); }

/* ===== NIEUWSBRIEF ===== */
.nieuwsbrief-section { background: linear-gradient(135deg, #f0f7ee 0%, #fdf8f0 100%); border-top: 1px solid #ddeedd; border-bottom: 1px solid #ddeedd; }
.nieuwsbrief-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.nieuwsbrief-text h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--green-deep); margin-bottom: 0.7rem; line-height: 1.25; }
.nieuwsbrief-text p { color: var(--text-mid); line-height: 1.7; font-size: 0.97rem; }
.nieuwsbrief-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: flex; gap: 0.7rem; }
.form-row input, .nieuwsbrief-form input, .nieuwsbrief-form select {
  flex: 1;
  padding: 0.8rem 1.15rem;
  border: 2px solid #c8ddc8;
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.93rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
}
.form-row input:focus, .nieuwsbrief-form input:focus, .nieuwsbrief-form select:focus { border-color: var(--green-mid); }

/* ===== FORMULIEREN ===== */
.zml-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  max-width: 700px;
  margin: 0 auto;
}
.zml-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}
.zml-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  margin-top: 1rem;
}
.zml-form label:first-of-type { margin-top: 0; }
.zml-form input[type="text"],
.zml-form input[type="email"],
.zml-form input[type="tel"],
.zml-form input[type="url"],
.zml-form input[type="date"],
.zml-form input[type="time"],
.zml-form input[type="file"],
.zml-form textarea,
.zml-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #c8ddc8;
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.93rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
}
.zml-form input:focus, .zml-form textarea:focus, .zml-form select:focus { border-color: var(--green-mid); }
.zml-form textarea { resize: vertical; min-height: 100px; }
.zml-form .char-counter { font-size: 0.78rem; color: var(--text-light); text-align: right; margin-top: 0.2rem; }
.zml-form .checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 0.75rem; }
.zml-form .checkbox-row input[type="checkbox"] { width: auto; margin-top: 0.25rem; accent-color: var(--green-mid); }
.zml-form .checkbox-row label { margin: 0; font-weight: 400; font-size: 0.88rem; color: var(--text-mid); }
.zml-form .form-help { font-size: 0.8rem; color: var(--text-light); margin-top: 0.2rem; }
.zml-form .btn-primary { margin-top: 1.5rem; width: 100%; justify-content: center; }
.zml-form .form-success {
  background: #e8f5e9; border: 2px solid var(--green-mid);
  border-radius: 12px; padding: 1.5rem; text-align: center;
  color: var(--green-deep); font-weight: 600;
}

/* ===== AANMELDEN BANNER ===== */
.aanmelden-banner {
  margin-top: 2.5rem;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
}
.aanmelden-banner p { color: var(--text-mid); font-size: 1rem; line-height: 1.5; }
.aanmelden-banner p strong { color: var(--green-deep); }

/* ===== PERSONEN / DEELNEMERS OVERZICHT ===== */
.personen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.persoon-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  transition: transform 0.22s;
}
.persoon-card:hover { transform: translateY(-4px); }
.persoon-foto {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--green-light);
}
.persoon-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--green-deep); margin-bottom: 0.25rem; }
.persoon-org { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 0.5rem; }
.persoon-contact { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ===== FOOTER ===== */
footer {
  background: #141f14;
  color: rgba(255,255,255,0.62);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; text-decoration: none; }
.footer-logo-badge { width: 38px; height: 38px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.footer-logo-name { font-family: 'Playfair Display', serif; color: var(--white); font-size: 0.97rem; }
.footer-brand p { font-size: 0.86rem; line-height: 1.65; max-width: 250px; margin-bottom: 1.1rem; }
.footer-social { display: flex; gap: 0.5rem; }
.social-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; text-decoration: none; transition: background 0.2s; }
.social-btn:hover { background: var(--orange); }
.footer-col h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 0.97rem; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--orange-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-duursamen { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.footer-duursamen strong { color: var(--orange-bright); }

/* ===== WP ADMIN BAR FIX ===== */
.admin-bar .site-nav { top: 32px; }

/* ===== ADMIN NOTICE STYLES ===== */
.zml-admin-notice { padding: 1rem; border-left: 4px solid var(--orange); background: #fff8e1; margin: 0.5rem 0; border-radius: 0 8px 8px 0; }
.zml-admin-table { width: 100%; border-collapse: collapse; }
.zml-admin-table th { background: var(--green-deep); color: var(--white); padding: 0.75rem; text-align: left; font-size: 0.85rem; }
.zml-admin-table td { padding: 0.75rem; border-bottom: 1px solid #e0e0e0; font-size: 0.88rem; }
.zml-admin-table tr:hover { background: #f9f9f9; }
.zml-approve-btn { background: var(--green-mid); color: var(--white); border: none; padding: 0.4rem 0.9rem; border-radius: 6px; cursor: pointer; font-size: 0.82rem; font-weight: 600; }
.zml-approve-btn:hover { background: var(--green-deep); }
.zml-reject-btn { background: #d32f2f; color: var(--white); border: none; padding: 0.4rem 0.9rem; border-radius: 6px; cursor: pointer; font-size: 0.82rem; font-weight: 600; margin-left: 0.3rem; }
.zml-reject-btn:hover { background: #b71c1c; }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .over-grid { grid-template-columns: 1fr; }
  .over-visual { display: none; }
  .waarom-pillars { grid-template-columns: 1fr 1fr; }
  .duursamen-inner { grid-template-columns: 1fr; }
  .agenda-layout { grid-template-columns: 1fr; }
  .initiatieven-grid { grid-template-columns: 1fr 1fr; }
  .plekken-grid, .locaties-grid { grid-template-columns: 1fr; }
  .meedoen-cards { grid-template-columns: 1fr; }
  .nieuws-grid { grid-template-columns: 1fr; }
  .nieuwsbrief-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ambities-grid { grid-template-columns: 1fr; }
  .personen-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .waarom-pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .aanmelden-banner { flex-direction: column; text-align: center; }
  section { padding: 3rem 0; }
  .initiatieven-grid { grid-template-columns: 1fr; }
  .personen-grid { grid-template-columns: 1fr; }
}
