/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {

  --green-dark:    #1B5AA0; 
  --green-mid:     #123d6d; 
  --green-bright:  #BFDA00; 
  --green-light:   #d4eb3d;
  --blue-doc:      #1a5fa8;
  --blue-doc-dark: #13467c;
  --blue-tak:      #BFDA00; 
  
  
  --beige:         #f5ede0;
  --beige-dark:    #e8d9c4;
  --brown:         #7c4e2d;
  --brown-light:   #a06a40;
  --cream:         #fdf8f1;
  --charcoal:      #1a1a1a;
  --text:          #2c2c2c;
  --text-muted:    #6b6b6b;
  --white:         #ffffff;

 
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;


  --shadow-sm: 0 2px 8px rgba(27,90,160,0.08);
  --shadow-md: 0 8px 32px rgba(27,90,160,0.12);
  --shadow-lg: 0 20px 60px rgba(27,90,160,0.18);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   UTILITY & BUTTONS
============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: clamp(4rem, 8vw, 7rem); }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.75rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: normal;
  justify-content: center;
  text-align: center;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--beige);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.arrow { font-style: normal; transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAVBAR & MOBILE MENU
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(253, 248, 241, 0.8);
  backdrop-filter: blur(12px);
}
#navbar.scrolled {
  background: rgba(253, 248, 241, 0.96);
  box-shadow: 0 1px 24px rgba(30,58,30,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem; 
  height: 80px;       
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;             
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden; 
}
.nav-logo-img {
  height: 48px;             
  width: auto;              
  object-fit: contain;      
  margin-right: 0.25rem;    
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--green-dark);
}
.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem; 
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--beige);
  color: var(--green-dark);
}

.nav-cta { margin-left: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  padding-top: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--green-bright); }


.page-header-spacer {
  height: 80px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(74,140,63,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(122,191,106,0.1) 0%, transparent 60%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 85vh;
  background: radial-gradient(circle at 60% 40%, rgba(74,140,63,0.18) 0%, transparent 60%);
  border-radius: 40% 60% 60% 40% / 50% 50% 70% 30%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--beige);
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-xl);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-bright);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1.5px solid var(--beige-dark);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-dark);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emblem {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.hero-card-title {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-card-sub {
  font-size: 0.8rem;
  opacity: 0.8;
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  transition: transform 0.3s ease;
}
.hero-float-1 {
  top: 8%;
  right: 0;
  color: var(--green-dark);
}
.hero-float-2 {
  bottom: 12%;
  left: 0;
  color: var(--brown);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}

.kamp-sectie {
  overflow: hidden; 
  width: 100%;
}

.kamp-card {
  background: var(--beige);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 5vw, 3rem);
  box-shadow: var(--shadow-sm);
  margin-inline: auto;
}

/* ============================================================
   INTRO BAND
============================================================ */
.intro-band {
  background: var(--green-dark);
  color: var(--white);
  padding-block: 1.5rem;
  overflow: hidden;
  width: 100%;
  margin-top: 4rem;
}

.intro-band-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 4rem;
}


.intro-band-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.intro-band-dot {
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.tak-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* Leiding Badges Design */
.leader-card {
  display: flex;
  align-items: center;
  background: #fdfdfd;
  padding: 1.25rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid #eaeaea;
  transition: transform 0.2s;
}

.leader-card.master {
  background: #fff;
  border-left: 5px solid #2d5a27;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.leader-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.25rem;
  border: 2px solid #fff;
}

.leader-details {
  display: flex;
  flex-direction: column;
}

.role-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #2d5a27;
  letter-spacing: 0.05rem;
  margin-bottom: 0.2rem;
}

.totem {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  line-height: 1.2;
}

.real-name {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.1rem;
}
.programma-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.programma-wrapper iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: none;
}
/* ============================================================
   ABOUT / WERKING
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-area { position: relative; }

.about-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--green-mid), var(--green-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}

/* --- CAROUSEL (OVER ONS) --- */
.image-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.image-carousel img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0;
  animation: carouselFade 12s ease-in-out infinite;
}
.image-carousel img:nth-child(1) { animation-delay: 0s; }
.image-carousel img:nth-child(2) { animation-delay: 4s; }
.image-carousel img:nth-child(3) { animation-delay: 8s; }

@keyframes carouselFade {
  0%       { opacity: 0; }
  8%       { opacity: 1; }
  30%      { opacity: 1; }
  38%      { opacity: 0; }
  100%     { opacity: 0; }
}

.about-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
}
.about-float-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-dark);
}
.about-float-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.about-float-card.left { left: -2rem; bottom: 2.5rem; }
.about-float-card.right { right: -2rem; top: 2.5rem; }

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.75rem 0;
}
.pill {
  background: var(--beige);
  border: 1.5px solid var(--beige-dark);
  color: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   TAKKEN
============================================================ */
.takken { background: var(--beige); }

.takken-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.takken-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
}
.takken-header p {
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
  margin-top: 0.75rem;
}

.takken-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--beige-dark);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.takken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
}

.tak-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.tak-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--green-light));
}
.tak-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tak-logo-container {
  width: 100%;
  height: 120px; /* Iets hoger gemaakt voor de logo's met tekst */
  margin-bottom: 2rem; /* Extra ruimte zodat de leeftijd niet geplakt zit */
  display: flex;
  align-items: center;
  justify-content: center;
}

.tak-custom-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.tak-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.tak-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}
.tak-age {
  display: inline-block;
  background: var(--beige);
  border-radius: var(--radius-xl);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark); 
  margin-bottom: 0.75rem;
}
.tak-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.tak-dag {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown-light);
}

.hidden { display: none !important; }

/* ============================================================
   WERKING
============================================================ */
.werking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.werking-item {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--beige-dark);
  transition: var(--transition);
}
.werking-item:hover {
  border-color: var(--green-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.werking-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.25rem;
}
.werking-icon img {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.werking-item h3 { font-size: 1.15rem; margin-bottom: 0.65rem; }
.werking-item p { font-size: 0.88rem; color: var(--text-muted); }



/* ============================================================
   CALENDAR / PRAKTISCH
============================================================ */
.praktisch { background: var(--green-dark); color: var(--white); }

.praktisch h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.praktisch .section-label { color: var(--green-light); }
.praktisch .section-label::before { background: var(--green-light); }

.praktisch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.praktisch-text p {
  color: rgba(255,255,255,0.72);
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}

.info-cards { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.info-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.info-card-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.3rem; }
.info-card p { color: rgba(255,255,255,0.65); font-size: 0.83rem; }

.tijden-box {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.tijden-box h3 {
  color: var(--green-light);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.tijd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tijd-row:last-child { border-bottom: none; }
.tijd-dag { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.tijd-tak { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.tijd-uur {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-light);
}

/* ============================================================
   UNIFORM
============================================================ */
.uniform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.uniform-visual {
  background: linear-gradient(145deg, var(--beige), var(--beige-dark));
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  border: 2px solid var(--beige-dark);
}

.uniform-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.uniform-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

.uniform-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.uniform-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9rem; color: var(--text); }
.check {
  width: 20px; height: 20px;
  background: var(--green-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ============================================================
   SCOUTSWET
============================================================ */
.wet { background: var(--beige); }

.wet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.wet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-left: 4px solid var(--green-bright);
}
.wet-card h3 { font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--green-dark); }
.wet-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   STEUNCOMITÉ & LEIDING
============================================================ */
.steun {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  text-align: center;
  padding-block: 5rem;
}
.steun h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.steun p {
  color: rgba(255,255,255,0.75);
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.steun-acro { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; margin: 2rem 0; }
.acro-pill {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--white);
}
.steun-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.leider-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 2px solid var(--beige-dark);
  transition: var(--transition);
}
.leider-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.leider-avatar {
  width: 80px;
  height: 80px;
  background: var(--green-mid); 
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden; 
}
.leider-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center; 
  border-radius: 50%;
}
.leider-naam {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}
.leider-rol { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA / LID WORDEN
============================================================ */
.cta-section { background: var(--beige); padding-block: 5rem; }
.cta-box {
  background: var(--cream);
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-text h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 900; margin-bottom: 1rem; }
.cta-text p { color: var(--text-muted); margin-bottom: 1.75rem; }

.cta-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.cta-step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.cta-step h4 { font-size: 0.95rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.2rem; }
.cta-step p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   CONTACT
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.15rem; }
.contact-item p { font-size: 0.92rem; font-weight: 600; color: var(--green-dark); }

.socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: 0.83rem;
  font-weight: 600;
  border: 2px solid var(--beige-dark);
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  border-color: var(--green-bright);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-map {
  background: linear-gradient(145deg, var(--beige), var(--beige-dark));
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  position: relative;
  border: 2px solid var(--beige-dark);
}
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.map-pin-icon { font-size: 3rem; display: block; animation: pinBounce 2s ease-in-out infinite; }
@keyframes pinBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.map-pin p {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
  margin-top: 0.5rem;
  white-space: nowrap;
}
.map-overlay-btn { position: absolute; bottom: 1.5rem; right: 1.5rem; }

/* ============================================================
   DOCUMENTEN PAGINA SPECIFIEK
============================================================ */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Card Basis */
.doc-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--blue-doc);
}

/* ============================================================
   FOOTER
============================================================ */
footer { background: var(--charcoal); color: var(--white); padding-block: 3.5rem 2rem; margin-top: auto; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); max-width: 36ch; line-height: 1.6; }
.footer-logo-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.fos-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
/* Interactieve Foto Sectie */
.photo-stack-grid {
  display: flex;
  gap: 1rem;
  height: 450px;
  margin: 3rem 0;
}

.photo-card {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition); 
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card:hover {
  flex: 2.5; 
  transform: translateY(-10px); 
  box-shadow: var(--shadow-lg);
}

.photo-card .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(27, 90, 160, 0.8));
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-card:hover .overlay {
  opacity: 1;
}


.tak-image-box {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  background: var(--green-dark);
}

.tak-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* --- INTERACTIEVE CARD STACK EFFECTEN --- */

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 420px;
  perspective: 1000px; 
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); 
  cursor: pointer;
}

.logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;

}


.hero-card-back1 {
  width: 260px;
  height: 300px;
  top: 10%;
  left: -5%;
  background: var(--beige);
  border: 2px solid var(--beige-dark);
  z-index: 1;
  transform: rotate(-6deg);
}


.hero-card-back2 {
  width: 240px;
  height: 280px;
  bottom: 5%;
  right: -5%;
  background: var(--green-light);
  z-index: 2;
  transform: rotate(5deg);
  opacity: 0.6;
}

.hero-card-main {

  position: absolute;
  width: 100%; 
  max-width: 320px;
  height: 380px; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;


  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), 
                    url('../images/homepage3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;


  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  color: white;
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}


.hero-card-main .hero-card-title {
  color: white !important;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1.1;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
  margin-block: 0.5rem;
}

.hero-card-main .hero-card-sub {
  color: white !important;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}


.hero-card-main img {
  width: 90px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}



.hero-card-back1:hover {
  z-index: 10;
  transform: scale(1.1) rotate(0deg);
  opacity: 1;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}


.hero-card-back2:hover {
  z-index: 10;
  transform: scale(1.1) rotate(0deg);
  opacity: 1;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}


.hero-card-main:hover {
  z-index: 10;
  transform: translate(-50%, -60%) scale(1.05); /* Komt iets omhoog */
  box-shadow: 0 30px 60px rgba(27, 90, 160, 0.3);
}


.hero-card-stack:hover .hero-float-1 { transform: translateY(-10px); }
.hero-card-stack:hover .hero-float-2 { transform: translateY(10px); }

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   ANIMATIONS
============================================================ */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: none; }
/* ============================================================
   CAROUSEL CONTROLS
============================================================ */
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: var(--green-dark);
}
.carousel-btn:hover { background: var(--white); }
.carousel-prev { left: 0.6rem; }
.carousel-next { right: 0.6rem; }
.carousel-dots {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.image-carousel.js-carousel img {
  animation: none !important;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.image-carousel.js-carousel img.active {
  opacity: 1;
}

.doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.type-pdf .doc-icon {
  background-color: #fef2f2;
  color: #ef4444; 
}

.type-pptx .doc-icon {
  background-color: #fff7ed;
  color: #f97316; 
}

.doc-content {
  flex-grow: 1;
}

.doc-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}

.doc-type {
  font-size: 0.85rem;
  color: #64748b;
}


.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--blue-doc);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.btn-download:hover {
  background-color: var(--blue-doc-dark);
}

.btn-download .arrow {
  transition: transform 0.2s ease;
}

.btn-download:hover .arrow {
  transform: translateY(2px);
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}


.filter-btn {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background-color: #e2e8f0;
  color: #1e293b;
}


.filter-btn.active {
  background-color: var(--blue-doc);
  color: var(--white);
  border-color: var(--blue-doc);
}


.doc-card.is-hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  transform: scale(0.9);
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
}

.tak-intro {
  max-width: 850px;
  margin-bottom: 3rem;
}
.tak-leeftijd {
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.tak-beschrijving {
  color: var(--text-muted);
  line-height: 1.8;
}

.tak-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  margin: 40px 0;
  align-items: stretch;
}

.tak-info-card,
.tak-info-cards .info-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  overflow: hidden;
  border: 1px solid #e0e6ed;
}

.tak-info-cards .info-card-side-border,
.tak-info-card .info-card-side-border {
  width: 6px;
  background-color: var(--blue-tak);
  flex-shrink: 0;
}

.tak-info-cards .info-card-content,
.tak-info-card .info-card-content {
  padding: 24px;
  flex-grow: 1;
}

.tak-info-cards .info-card-header,
.tak-info-card .info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tak-info-cards .info-card-header h4,
.tak-info-card .info-card-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
}

.info-icon {
  width: 20px;
  height: 20px;
  color: var(--blue-tak);
  flex-shrink: 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: 8px;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-list li:last-child {
  margin-bottom: 0;
}

.info-card-single {
  margin-top: 5px;
}

.info-mail-link {
  color: var(--blue-tak);
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}

.info-mail-link:hover {
  text-decoration: underline;
}


.tak-programma-section {
  margin-bottom: 4rem;
}
.tak-programma-section iframe {
  width: 100%;
  height: 600px;
  border: 1px solid #ddd;
  border-radius: 12px;
}


.tak-leiding-section {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 2px solid #f0f0f0;
}

.leiding-titel {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2rem;
  color: var(--green-dark);
}


.leiding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); /* Verhoogd van 220px naar 280px */
  gap: 2.5rem;
}


.leader-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.leader-avatar {
  width: 140px;
  height: 140px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0f4f8;
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


.leader-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.totem {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
}

.real-name {
  font-size: 1rem;
  color: var(--text-muted);
}

.role-tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: center;
  margin-bottom: 0.5rem;
}

.phone-link a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE OVERRIDES (HIERARCHY FIX - MOET ONDERAAN)
============================================================ */
@media (max-width: 992px) {
  .tak-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .kamp-sectie .container { padding-inline: 1rem; }
  .kamp-card { border-radius: var(--radius-md); width: 100%; margin: 0; }
  .kamp-sectie .about-grid { display: flex; flex-direction: column; gap: 1.5rem; width: 100%; }
  .kamp-sectie .about-text { width: 100%; padding: 0; text-align: left; }
  .kamp-sectie .about-text h2 { font-size: 1.8rem; line-height: 1.2; word-wrap: break-word; }
  .kamp-sectie .about-text p { font-size: 0.95rem; }

  .hero-grid, .about-grid, .uniform-grid, .contact-grid, .cta-box, .praktisch-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding-block: 6rem 3rem; }
  .werking-grid { grid-template-columns: 1fr; }
  .wet-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-float-card { display: none; }
  .cta-text { order: -1; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .photo-stack-grid { flex-direction: column; height: auto; }
  .photo-card { height: 250px; }
  .photo-card:hover { flex: 1; transform: translateY(-5px); }
}

@media (max-width: 600px) {
  .takken-grid { grid-template-columns: 1fr; }
  .leiding-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  
  .about-img-box { max-width: 320px; margin-inline: auto; }
  
  .tijden-box { padding: 1.25rem; }
  .info-card { padding: 1.25rem; }
  .tijd-row { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .tijd-uur { margin-top: 0.25rem; }
  
  .contact-map { min-height: 250px; }

  .carousel-btn { width: 32px; height: 32px; font-size: 0.8rem; }
  .carousel-prev { left: 0.4rem; }
  .carousel-next { right: 0.4rem; }
  .carousel-dots { bottom: 0.4rem; }
  .carousel-dot { width: 6px; height: 6px; }

  .tak-programma-section iframe, .programma-wrapper iframe { height: 400px; }
}