:root{
  --green-bg: #8CCB59;
  --green-dark: #2F6B3D;
  --green-soft: #A7D87B;

  --blue-title: #0D4FB5;
  --yellow-soft: #F6F0C8;
  --cream: #FFF6CC;

  --text-dark: #103018;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: var(--green-bg);
  color: var(--text-dark);
}

/* Links */
a{ color: var(--blue-title); }
a:hover{ text-decoration: none; }

/* Content width */
.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HEADER (geen kebab menu)
========================= */
.site-header{
  width: 100%;
  padding: 18px 0;
}

/* Breedte header iets ruimer dan content voor mooier links/rechts */
.nav-wrap{
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

/* Logo (icoon + tekst) */
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
}

/* ✅ vaste groottes zodat logo nooit “plots groot” wordt */
.brand .logo-icon{
  width: 120px;
  height: auto;
  display:block;
}

.brand .logo-text{
  height: 40px; /* bepaalt “KALECAN” grootte */
  width: auto;
  display:block;
}

/* Menu knoppen */
.menu{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.menu a{
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  text-decoration:none;
  font-weight: 800;
  color: rgba(16,48,24,0.95);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.menu a:hover{
  background: rgba(255,255,255,0.32);
}

.menu a.active{
  background: var(--cream);
}

/* =========================
   HERO
========================= */
.hero{
  text-align:center;
  padding: 42px 0 18px;
}

.hero .kicker{
  font-size: 20px;
  font-weight: 650;
  color: rgba(255,255,255,0.95);
}

.h1{
  margin: 18px auto 10px;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--blue-title);
  letter-spacing: 0.3px;
}

.sub{
  margin-top: 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow-soft);
}

.date{
  margin-top: 12px;
  font-size: 18px;
  font-weight: 950;
  color: var(--blue-title);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* kids */
.kids{
  margin: 30px 0 12px;
  display:flex;
  justify-content:center;
}
.kids img{
  width: min(520px, 100%);
  height:auto;
  display:block;
}

/* badge */
.badge{
  display:inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--cream);
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2b5a2f;
}

/* =========================
   CTA BUTTON
========================= */
.cta-button{
  display:inline-block;
  padding:16px 28px;
  border-radius:999px;
  background: var(--blue-title);
  color:#fff;
  font-weight:900;
  text-decoration:none;
  font-size:18px;
  letter-spacing:1px;
  transition: all 0.2s ease;
}

.cta-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* =========================
   GRID + CARDS
========================= */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}
@media (min-width: 900px){
  .grid{ grid-template-columns: 1fr 1fr; }
}

.card{
  background: rgba(255,255,255,0.22);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.card h2{
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 950;
  color: var(--blue-title);
  text-transform: none;
}

.card p{
  font-size: 18px;
  margin: 8px 0;
}

main.container {
  padding-bottom: 60px;
}

/* =========================
   CONTACT TEAM (2 per rij, geen afkappen)
========================= */
.contact-team{
  margin: 3rem 0;
}

.contact-team__header h2{
  margin: 0 0 .4rem 0;
  font-size: 26px;
  font-weight: 950;
}

.contact-team__header p{
  margin: 0;
  max-width: 72ch;
  opacity: .9;
  font-size: 18px;
}

/* 1 per rij mobiel, 2 per rij vanaf tablet/desktop */
.contact-cards{
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px){
  .contact-cards{
    grid-template-columns: 1fr 1fr;
  }
}

/* card */
.contact-card{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  transition: transform .15s ease, box-shadow .15s ease;
}

.contact-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}

/* photo */
.contact-card__photo{
  width: 92px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 3px solid rgba(0,0,0,.05);
  background: rgba(0,0,0,.02);
}

/* allow wrapping inside grid cell */
.contact-card__body{ min-width: 0; }

.contact-card__name{
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
}

.contact-card__role{
  margin: 6px 0 10px 0;
  opacity: .82;
  line-height: 1.25;
}

/* chips */
.contact-card__lines{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-card__line{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.07);
  text-decoration: none;
  color: inherit;
  max-width: 100%;
}

.contact-card__line:hover{ background: rgba(0,0,0,.06); }

.contact-card__label{
  font-weight: 900;
  opacity: .75;
  white-space: nowrap;
}

/* default: niet zomaar overal breken */
.contact-card__value{
  font-weight: 900;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

/* e-mail: mag breken, maar liever niet midden in woorden */
.contact-card__line[href^="mailto:"] .contact-card__value{
  overflow-wrap: anywhere; /* nodig voor super smalle schermen */
  word-break: break-word;
}


/* FAILSAFE: voorkom schermvullende foto's in contact-team */
.contact-team img{
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}




/* =========================
   Mobiel (menu blijft zichtbaar)
========================= */
@media (max-width: 600px){

  .nav-wrap{
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  /* Logo centreren */
  .brand{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ✅ kleinere logo’s op mobiel */
  .brand .logo-icon{
    width: 80px;
  }

  .brand .logo-text{
    height: 32px;
  }

  /* Menu onder logo: 2 kolommen */
  .menu{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-items: center;
  }

  .menu a{
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }
}

/* ========
   FOOTER 
============ */
.site-footer{
  background: var(--green-dark);
  padding: 48px 20px 32px;
  color: #fff;
}

.footer-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* logo blok */
.footer-brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-logo-icon{
  width: 90px;
  height: auto;
}

.footer-logo-text{
  height: 34px;
  width: auto;
}

/* slogan */
.footer-slogan{
  font-size: 18px;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 22px;
  font-weight: 500;
  opacity: 0.95;
}

/* copyright */
.footer-copy{
  font-size: 13px;
  opacity: 0.7;
}

/* footer links */
.site-footer a{
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.95;
}

.site-footer a:hover,
.site-footer a:focus-visible{
  text-decoration: underline;
  opacity: 1;
  color: var(--cream);
}

.footer-legal a{
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
}

.footer-legal a:hover,
.footer-legal a:focus-visible{
  text-decoration: underline;
}

.footer-partner{
  margin: 22px 0 18px;
  font-size: 15px;
  opacity: 0.85;
}

.footer-partner a{
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
}

.footer-partner a:hover{
  text-decoration: underline;
}

@media (max-width: 600px){
  .contact-card__line{
    width: 100%;
    justify-content: space-between;
  }
}

/* telefoon: nooit breken */
.contact-card__line[href^="tel:"] .contact-card__value{
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.volzet{
  display: inline-block;
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #d32f2f !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
}




