/* ============================================
   Waddinxveen Beweegt - Gedeelde stijlen
   ============================================ */

:root {
  --leaf: #16A34A;
  --leaf-dark: #15803D;
  --leaf-light: #F0FDF4;
  --leaf-bright: #4ADE80;
  --sky: #38BDF8;
  --sky-light: #F0F9FF;
  --sun: #FBBF24;
  --sun-light: #FFFBEB;
  --earth: #A16207;
  --earth-light: #FEF3C7;
  --text: #1C1917;
  --text-mid: #57534E;
  --text-light: #A8A29E;
  --bg: #FAFAF9;
  --white: #FFFFFF;
  --border: #E7E5E4;
  --radius: 20px;
  --max-beschrijving: 250;
  --max-activiteit: 190;
  --max-promo: 160;
}

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

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HEADER ---- */
header {
  background: linear-gradient(170deg, #166534 0%, var(--leaf) 40%, #22C55E 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.header-sun {
  position: absolute;
  top: -40px;
  right: 8%;
  width: 200px;
  height: 200px;
  background: var(--sun);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(20px);
}

.header-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: white;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.logo-badge svg { width: 22px; height: 22px; }

.logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

header p {
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.7;
}

/* ---- META TAG ---- */
.meta-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  background: var(--leaf-light);
  color: var(--leaf-dark);
  display: inline-block;
}

/* ---- FOOTER ---- */
footer {
  background: #166534;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

footer a { color: var(--leaf-bright); text-decoration: none; font-weight: 700; }
footer a:hover { color: white; }

footer .footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.4rem;
}

/* ---- RESPONSIVE BASE ---- */
@media (max-width: 700px) {
  .header-content { padding: 2rem 1.25rem 2.5rem; }
}
