@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

/* ===========================
   MODERN THEME (licht + plantgroen)
=========================== */
:root{
  --font-family: "Inter", sans-serif;

  --primary: #1f8a4c;
  --primary-dark: #15683a;
  --primary-soft: rgba(31,138,76,0.10);

  --accent: #7ed957;
  --accent-soft: rgba(126,217,87,0.14);

  --ink: #102016;
  --text: rgba(16,32,22,0.82);
  --muted: rgba(16,32,22,0.62);

  --border: rgba(16,32,22,0.10);

  --surface: rgba(255,255,255,0.78);
  --white: #ffffff;

  --bg:
    radial-gradient(1000px 520px at 15% 5%, rgba(126,217,87,0.22), transparent 55%),
    radial-gradient(900px 520px at 85% 10%, rgba(31,138,76,0.16), transparent 55%),
    radial-gradient(800px 400px at 40% 100%, rgba(126,217,87,0.10), transparent 60%),
    #f7faf8;

  --shadow-sm: 0 1px 1px rgba(16,32,22,0.04), 0 8px 18px rgba(16,32,22,0.06);
  --shadow-md: 0 2px 2px rgba(16,32,22,0.05), 0 18px 40px rgba(16,32,22,0.10);
  --shadow-glow: 0 0 0 6px rgba(126,217,87,0.10);

  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --container: 1120px;
}

/* ===========================
   BASE
=========================== */
*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: var(--font-family);
  color: var(--ink);
  font-size: 16px;
  background: var(--bg);
  overflow-x: hidden;
}

@media (max-width: 991px){
  body{ font-size:14px; }
}

img{
  max-width:100%;
  display:block;
  height:auto;
}

a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }

h1,h2,h3,h4,h5,h6{
  margin:0;
  color: var(--ink);
  letter-spacing: -0.02em;
}
h1{ font-weight: 850; line-height: 1.05; font-size: clamp(30px, 3.2vw, 48px); }
h2{ font-weight: 850; line-height: 1.12; font-size: clamp(24px, 2.4vw, 36px); }
h3{ font-weight: 800; line-height: 1.2; font-size: 18px; }

p{ margin:0; color: var(--muted); line-height: 1.7; }

.container{
  width:min(var(--container), 92%);
  margin:0 auto;
}

/* ===========================
   BUTTONS
=========================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight: 750;
  font-size: 14px;
  line-height: 20px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.primary-btn{
  background: linear-gradient(180deg, rgba(31,138,76,1), rgba(21,104,58,1));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.primary-btn:hover{ box-shadow: var(--shadow-md); }

.primary-btn-outline{
  background: rgba(255,255,255,0.65);
  border-color: rgba(31,138,76,0.22);
  color: var(--primary-dark);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.primary-btn-outline:hover{
  border-color: rgba(31,138,76,0.35);
  box-shadow: var(--shadow-sm);
}

/* ===========================
   TOP NAV
=========================== */
.navbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-logo{
  height: 52px;
  width: auto;
  object-fit: contain;
  display:block;
}

@media (max-width: 980px){
  .brand-logo{ height: 44px; }
}

.nav-links{
  display:flex;
  gap:8px;
  align-items:center;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(16,32,22,0.08);
  background: rgba(255,255,255,0.55);
}

.nav-links a{
  color: rgba(16,32,22,0.72);
  font-weight: 750;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover{
  background: rgba(31,138,76,0.10);
  color: var(--primary-dark);
}

/* mobile */
.burger{
  display:none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.70);
  padding: 10px;
  border-radius: 14px;
  cursor: pointer;
  flex: 0 0 auto;
}

.burger span{
  display:block;
  width:22px;
  height:2px;
  background: rgba(16,32,22,0.65);
  margin:4px 0;
}

.mobile-nav{
  display:none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 60;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(16,32,22,0.08);
}

.mobile-nav .mobile-inner{
  padding: 12px 0 16px;
  display:grid;
  gap:10px;
}

.mobile-nav a{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(31,138,76,0.06);
  font-weight: 800;
  color: rgba(16,32,22,0.78);
}

/* ===========================
   HERO
=========================== */
.hero{ padding: 34px 0 18px; }

.surface{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-grid{
  display: flex;
  gap: 18px;
  align-items: stretch;
  justify-content: center;
}

.hero-card{
  flex: 0 0 58%;
  padding: 22px;
}

.hero .lead{
  margin-top: 12px;
  font-size: 1.05em;
  color: var(--muted);
  max-width: 64ch;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(16,32,22,0.08);
  color: rgba(16,32,22,0.72);
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}

.hero-cta{
  margin-top: 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pills{
  margin-top: 18px;
  display:grid;
  gap:10px;
}

.pill{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(16,32,22,0.08);
  border-radius: var(--radius-md);
  padding: 12px 12px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  transition: box-shadow .2s ease, transform .12s ease, border-color .2s ease;
}

.pill:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(31,138,76,0.18);
}

.pill-ico{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(31,138,76,0.10), rgba(126,217,87,0.12));
  border: 1px solid rgba(31,138,76,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--primary-dark);
  font-weight: 900;
}

.pill-title{
  font-size:12px;
  color: rgba(16,32,22,0.55);
  font-weight:900;
  letter-spacing:0.06em;
  text-transform:uppercase;
}

.pill-value{
  margin-top:2px;
  font-weight:750;
  color: rgba(16,32,22,0.78);
}

/* rechter flyer container */
.flyer-bleed{
  flex: 0 0 30%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  display:flex;
  align-items: stretch;
}

/* stack basis + overlay */
.flyer-stack{
  position: relative;
  width: 100%;
  height: 100%;
  display:flex;
  align-items: stretch;
}

.team-photo{
  max-height: 260px;
  width: auto;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
}

/* basis flyer */
.flyer-base{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: contain;
  object-position: center;
  max-width: none;
  max-height: none;
}

/* overlay foto over "Eerstvolgende editie" in de flyer */
.flyer-overlay{
  position: absolute;
  left: 8%;
  top: 9%;
  width: 42%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(16,32,22,0.12);
  box-shadow: 0 10px 24px rgba(16,32,22,0.14);
  background: rgba(255,255,255,0.35);
}

/* ===========================
   SECTIONS
=========================== */
.section{ padding: 62px 0; }

.section.alt{
  background: rgba(255,255,255,0.58);
  border-top: 1px solid rgba(16,32,22,0.06);
  border-bottom: 1px solid rgba(16,32,22,0.06);
}

.section-head{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.section-head .tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(31,138,76,0.18);
  background: rgba(255,255,255,0.55);
  color: rgba(16,32,22,0.70);
  font-weight: 850;
  margin-bottom: 12px;
}

.section-head p{
  margin-top: 10px;
  color: var(--muted);
}

/* cards */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(16,32,22,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  padding: 18px;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm), var(--shadow-glow);
  border-color: rgba(31,138,76,0.18);
}

.card p{ color: var(--muted); }

/* ===========================
   ORGANISATIES
=========================== */
.org-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.org{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(16,32,22,0.08);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.org:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm), var(--shadow-glow);
  border-color: rgba(31,138,76,0.18);
}

.org-top{
  display:flex;
  align-items:center;
  gap:14px;
  min-height: 82px;
}

.org-logo-wrap{
  width: 112px;
  height: 76px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(16,32,22,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
  flex: 0 0 auto;
  box-shadow: 0 1px 1px rgba(16,32,22,0.03), 0 10px 20px rgba(16,32,22,0.06);
}

.org-logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.org-text{
  display:flex;
  flex-direction:column;
}

.org-name{
  font-weight:900;
  color: rgba(16,32,22,0.82);
}

.org-sub{
  margin-top:6px;
  font-size: 13px;
  color: var(--muted);
}

.org-link{
  margin-top: 2px;
  font-weight:900;
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-color: rgba(31,138,76,0.30);
}

/* ===========================
   PRAKTISCH / CONTACT
=========================== */
.two-col{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  max-width: 720px;
  margin: 0 auto;
}

.bullets{ margin-top:10px; }

.bullets li{
  position:relative;
  padding-left: 20px;
  margin: 8px 0;
  color: var(--muted);
}

.bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(126,217,87,0.14);
}

.contact-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:14px;
  align-items:start;
}

.form label{
  display:grid;
  gap:6px;
  margin-top:10px;
  font-weight:800;
  color: rgba(16,32,22,0.72);
  font-size: 13px;
}

input, textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16,32,22,0.10);
  background: rgba(255,255,255,0.80);
  color: var(--ink);
  outline:none;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

input:focus, textarea:focus{
  border-color: rgba(31,138,76,0.24);
  box-shadow: 0 0 0 6px rgba(31,138,76,0.10);
  background: rgba(255,255,255,0.92);
}

.footer{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(16,32,22,0.08);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 13px;
}

.footer a{
  color: var(--primary-dark);
  font-weight:900;
}

.scroll-top{
  width: 46px;
  height: 46px;
  background: linear-gradient(180deg, rgba(31,138,76,1), rgba(21,104,58,1));
  color: #fff !important;
  border-radius: 16px;
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 40;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.scroll-top:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===========================
   IMPRESSIE (foto's)
=========================== */
.gallery-wrap{
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.gallery-strip{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.gallery-card{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(20,40,28,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-card img{
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

.gallery-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gallery-grid img{
  width: 100%;
  height: 173px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(20,40,28,0.10);
  box-shadow: var(--shadow-sm);
}

.gallery-caption{
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(16,32,22,0.72);
  background: rgba(31,138,76,0.05);
  border-top: 1px solid rgba(20,40,28,0.08);
}

/* ===========================
   AGENDA
=========================== */
.agenda-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:30px;
}

.agenda-card{
  background: var(--white);
  border: 1px solid rgba(20,40,28,0.10);
  border-radius: 18px;
  padding:24px;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
  position:relative;
}

.agenda-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31,138,76,0.25);
}

.agenda-card.highlight{
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.agenda-date{
  font-weight:900;
  font-size:20px;
  margin-bottom:12px;
}

.agenda-location{
  color: rgba(16,32,22,0.72);
  margin-bottom:12px;
  line-height:1.5;
}

.agenda-time{
  font-weight:700;
  color: var(--primary-dark);
}

.agenda-badge{
  position:absolute;
  top:-12px;
  right:20px;
  background: var(--accent);
  color: rgba(16,32,22,0.9);
  font-size:12px;
  font-weight:900;
  padding:6px 12px;
  border-radius:999px;
  box-shadow: var(--shadow-sm);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 980px){
  .nav-links{
    display:none;
  }

  .burger{
    display:block;
  }

  .navbar-inner{
    justify-content:space-between;
    gap:16px;
    position: relative;
  }

  .mobile-nav[hidden]{
    display:none !important;
  }

  .mobile-nav:not([hidden]){
    display:block;
  }

  .hero-grid{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card,
  .flyer-bleed{
    flex: 1 1 auto;
    width: 100%;
  }

  .grid-3{
    grid-template-columns: 1fr;
  }

  .org-grid{
    grid-template-columns: 1fr;
  }

  .two-col{
    grid-template-columns: 1fr;
  }

  .contact-grid{
    grid-template-columns: 1fr;
  }

  .gallery-strip{
    grid-template-columns: 1fr;
  }

  .gallery-card img{
    max-height: 280px;
  }

  .gallery-grid img{
    height: 190px;
  }

  .agenda-grid{
    grid-template-columns: 1fr;
  }

  .org-top{
    align-items:flex-start;
  }

  .org-logo-wrap{
    width: 120px;
    height: 78px;
  }

  .flyer-base{
    height: auto;
  }

  .flyer-overlay{
    left: 7%;
    top: 8%;
    width: 55%;
  }
}

@media (max-width: 768px){
  .container{
    width: min(var(--container), calc(100% - 24px));
  }

  .section{
    padding: 48px 0;
  }

  .hero{
    padding: 24px 0 12px;
  }

  .hero-card{
    padding: 16px;
  }

  .team-photo{
    width: 100%;
    max-width: 100%;
    max-height: none;
    height: auto;
    margin: 0 auto;
  }

  .flyer-bleed{
    overflow: visible;
  }

  .flyer-base{
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .mobile-nav .mobile-inner{
    gap:8px;
  }

  .mobile-nav a{
    width: 100%;
  }

  .org-top{
    gap:12px;
  }

  .org-logo-wrap{
    width: 100px;
    height: 70px;
    padding: 8px;
  }

  .agenda-card{
    padding: 20px;
  }

  .agenda-badge{
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }

  .footer{
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-top{
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 640px){
  h1{
    font-size: 28px;
  }

  h2{
    font-size: 24px;
  }

  .navbar-inner{
    padding: 10px 0;
  }

  .brand-logo{
    height: 38px;
  }

  .burger{
    padding: 8px;
  }

  .burger span{
    width: 20px;
  }

  .section-head{
    margin-bottom: 22px;
  }

  .section-head .tag{
    padding: 8px 12px;
    font-size: 12px;
  }

  .card,
  .org,
  .agenda-card{
    padding: 16px;
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-grid img{
    height: auto;
    min-height: 160px;
  }

  .gallery-card img{
    max-height: 220px;
  }

  .contact-grid{
    gap: 12px;
  }

  .form label{
    font-size: 12px;
  }

  input,
  textarea,
  button.btn{
    width: 100%;
  }

  .footer{
    font-size: 12px;
  }

  .org-top{
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }

  .org-logo-wrap{
    width: 100%;
    max-width: 140px;
  }
}

@media (max-width: 420px){
  .container{
    width: calc(100% - 20px);
  }

  .hero-card{
    padding: 14px;
  }

  .card,
  .org,
  .agenda-card{
    padding: 14px;
  }

  .scroll-top{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
}