/* balance4vets.nl — huisstijl
   Kleuren afgeleid van het logo en de oorspronkelijke Duda-site */
:root {
  --pink: #d6247e;
  --pink-dark: #b01a66;
  --navy: #223855;
  --slate: #2b4a61;
  --text: #313131;
  --muted: #626262;
  --bg-light: #f7f7f7;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--navy);
  line-height: 1.25;
}

img { max-width: 100%; display: block; }

a { color: var(--pink); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* secties krijgen ruimte onder de sticky header bij anker-navigatie */
section[id] { scroll-margin-top: 96px; }

/* ---------- header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .logo img { height: 58px; width: auto; }

.main-nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--navy);
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover { color: var(--pink); border-bottom-color: var(--pink); }

/* mobiel menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 16px rgba(0,0,0,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 24px; width: 100%; border-bottom: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../img/hero-dog.jpeg') center 35% / cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 45, .45);
}

.hero .inner { position: relative; z-index: 1; padding: 80px 24px; max-width: 820px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  text-transform: lowercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero p {
  color: var(--white);
  font-size: clamp(18px, 2.6vw, 26px);
  margin: 12px 0 34px;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* ---------- knoppen ---------- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 40px;
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.btn:hover { background: var(--pink-dark); border-color: var(--pink-dark); }

.btn.ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn.ghost:hover { background: var(--white); color: var(--navy); }

.btn.outline { background: transparent; color: var(--pink); }
.btn.outline:hover { background: var(--pink); color: var(--white); }

/* ---------- secties ---------- */
.section { padding: 76px 0; }
.section.alt { background: var(--bg-light); }

.section h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 18px;
}

.section h3 { font-size: 22px; margin: 34px 0 10px; }

.section .kicker {
  font-family: 'Montserrat', sans-serif;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col.top { align-items: start; }

@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

.two-col img { border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,.12); }

.section p + p { margin-top: 16px; }
.section .btn { margin-top: 28px; }

.lead { font-size: 19px; }

/* ---------- kerncijfers (voor wie) ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 36px 0 8px;
}

.fact {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  padding: 26px;
  text-align: center;
}

.fact .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--pink);
}

.fact p { font-size: 15px; margin-top: 6px; }

/* ---------- dienst-kaarten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  display: flex;
  flex-direction: column;
}

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

.card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }

.card h3 { font-size: 20px; margin: 0 0 4px; }

.card .sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.card p { flex: 1; font-size: 16px; }

/* ---------- doelen-checklist ---------- */
.goals {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 36px;
  margin-top: 18px;
}

@media (max-width: 700px) { .goals { grid-template-columns: 1fr; } }

.goals li { padding-left: 30px; position: relative; font-size: 16px; }

.goals li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* ---------- werkwijze-stappen ---------- */
.steps { margin-top: 36px; display: grid; gap: 22px; }

.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  padding: 24px 28px;
}

.step .n {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 { margin: 0 0 6px; font-size: 19px; }
.step p { font-size: 16px; }

/* ---------- tarieven ---------- */
.price-list {
  list-style: none;
  margin-top: 10px;
  max-width: 560px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid #e4e4e4;
}

.price-list li span:last-child { font-weight: 700; color: var(--navy); white-space: nowrap; }

.note {
  font-size: 15px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 640px;
}

/* ---------- reviews ---------- */
.quote {
  background: var(--white);
  border-left: 5px solid var(--pink);
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  padding: 32px 36px;
  margin: 0 0 28px;
}

.quote p { font-style: italic; font-size: 17px; }

.quote footer {
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- contact ---------- */
.contact-links { list-style: none; margin-top: 26px; }

.contact-links li { display: flex; align-items: center; gap: 14px; padding: 9px 0; font-size: 17px; }

.contact-links .ico { font-size: 21px; width: 30px; text-align: center; }

.contact-links a { color: var(--navy); text-decoration: none; font-weight: 600; }
.contact-links a:hover { color: var(--pink); }

/* contactformulier (verstuurt via WhatsApp of e-mail, geen server nodig) */
.contact-form { display: grid; gap: 16px; }

.contact-form label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-form input, .contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  margin-top: 6px;
  background: var(--white);
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--pink);
  border-color: var(--pink);
}

.form-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.form-buttons .btn { margin-top: 0; }

/* ---------- KABIZ-badge ---------- */
.kabiz {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 16px 22px;
  margin-top: 30px;
  max-width: 560px;
}

.kabiz img { height: 58px; width: auto; }
.kabiz p { font-size: 14px; color: var(--muted); }

/* ---------- CTA-strook ---------- */
.cta-strip {
  background: linear-gradient(rgba(34,56,85,.72), rgba(34,56,85,.72)), url('../img/field-sun.jpg') center/cover;
  text-align: center;
  padding: 84px 24px;
}

.cta-strip h2 { color: var(--white); text-transform: lowercase; font-size: clamp(30px, 4.5vw, 44px); }

.cta-strip .btn { margin-top: 30px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 60px 0 30px;
  font-size: 15px;
}

.site-footer .cols {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}

@media (max-width: 800px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .cols { grid-template-columns: 1fr; } }

.site-footer img.footer-logo { height: 74px; width: auto; margin-bottom: 12px; }

.site-footer img.footer-kabiz {
  height: 52px;
  width: auto;
  margin-top: 16px;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 6px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }

.site-footer .copyright {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
