/* TNE brand identity */
:root {
  --kleur-donker:    #36130d;
  --kleur-accent:    #8c5e5a;
  --kleur-accent-2:  #36130d;
  --kleur-cta:       #7A3B2C;
  --kleur-cta-hover: #5C2A1E;
  --kleur-licht:     #f4f2ee;
  --kleur-zacht:     #f8f7f4;
  --kleur-paneel:    #ede9e3;
  --kleur-beige:     #d8d2c7;
  --kleur-wit:       #ffffff;
  --kleur-tekst:     #2e2e2e;
  --kleur-subtekst:  #706a63;
  --kleur-rand:      #d8d2c7;

  --kleur-rood:      #B5453A;
  --kleur-rood-bg:   #fdf4f4;
  --kleur-oranje:    #C9952A;
  --kleur-oranje-bg: #fdf7ef;
  --kleur-groen:     #2D8B57;
  --kleur-groen-bg:  #f0f7f2;

  --font-hoofd:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-ui:     'Libre Franklin', system-ui, -apple-system, sans-serif;

  --radius:        10px;
  --radius-lg:     10px;
  --schaduw:       0 2px 14px rgba(54,19,13,0.07);
  --schaduw-lg:    0 8px 36px rgba(54,19,13,0.10);
  --schaduw-kaart: 10px 10px 15px 0px rgba(0,0,0,0.08);
  --overgang:      0.2s ease;
}

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

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

body {
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--kleur-tekst);
  background: var(--kleur-wit);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-hoofd);
  line-height: 1.25;
  color: var(--kleur-tekst);
}

h1 { font-size: clamp(1.5rem, 3vw, 2rem); }
h2 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h3 { font-size: 1.15rem; }

p { line-height: 1.7; }

a { color: var(--kleur-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Knoppen */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--overgang);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primair {
  background: var(--kleur-cta);
  color: var(--kleur-wit);
  box-shadow: var(--schaduw-kaart);
}
.btn-primair:hover {
  background: var(--kleur-cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--schaduw-kaart);
  text-decoration: none;
}

.btn-secundair {
  background: var(--kleur-wit);
  color: var(--kleur-cta);
  border: 1px solid var(--kleur-cta);
  box-shadow: none;
}
.btn-secundair:hover {
  background: var(--kleur-cta-hover);
  border-color: var(--kleur-cta-hover);
  color: var(--kleur-wit);
  text-decoration: none;
}

.btn-groot { font-size: 0.85rem; padding: 18px 36px; }
.btn-volledig { width: 100%; }

/* Formuliervelden */
.veld-groep { display: flex; flex-direction: column; gap: 6px; }
.veld-groep label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--kleur-donker);
}
.veld-groep input[type="text"],
.veld-groep input[type="email"],
.veld-groep textarea {
  padding: 12px 16px;
  border: 2px solid var(--kleur-rand);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--kleur-tekst);
  background: var(--kleur-wit);
  transition: border-color var(--overgang);
  width: 100%;
}
.veld-groep input:focus,
.veld-groep textarea:focus {
  outline: none;
  border-color: var(--kleur-accent);
  box-shadow: 0 0 0 3px rgba(140,94,90,0.12);
}

/* Container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-breed { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Hulpklassen */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.text-center { text-align: center; }
.mt-sm  { margin-top: 12px; }
.mt-md  { margin-top: 24px; }
.mt-lg  { margin-top: 40px; }
.mt-xl  { margin-top: 64px; }

/* Animaties */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.35s ease forwards; }

@keyframes fadeUit {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}
.fade-uit { animation: fadeUit 0.25s ease forwards; }

/* Responsief */
@media (max-width: 600px) {
  html { font-size: 15px; }
  .btn-groot { padding: 16px 24px; font-size: 1rem; }
}
