/* ===== Basiskleuren — Trix vibe ===== */
:root{
  --bg: #ffffc5;      /* lichtgeel */
  --ink: #111;        /* bijna zwart */
  --muted:#515151;    /* grijs  */
  --paper:#ffffff;    /* panel wit */
  --line:#111;        /* zwarte lijnen */
}

.site-header {
  text-align: center;   /* logo centreren */
  margin: 0px 0;
}

.trix-logo {
  height: 100px;        
  width: auto;
  margin-bottom: 5px;
}

.crumb {
    padding: 0% 0% 0% 64%;
}


*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height:1.6;
}
.wrap{ width:min(980px,92%); margin-inline:auto }

/* -------- Header -------- */
.header{ padding:2rem 0 1.2rem }
.crumb{
  display:inline-block;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.5px;
  color:var(--ink);
  text-decoration:none;
  margin-bottom:.25rem;
}
h1{
  margin:.1rem 0 .6rem;
  text-transform:uppercase;
  letter-spacing:.5px;
  font-weight:900;
  font-size:clamp(2.2rem, 6vw, 4rem);
}
.lede{ color:var(--muted); }

/* -------- Panel / Form -------- */
.panel{
  background:transparent;
  border:2px solid var(--line);
  border-radius:6px;
  padding:1.2rem;
  margin: .8rem 0 2.2rem;
}
fieldset{
  border:2px solid var(--line);
  border-radius:6px;
  padding:1rem;
  margin:0 0 1rem;
}
legend{
  padding:0 .4rem;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.5px;
}

/* Layout */
.grid{
  display:grid; gap:1rem;
  grid-template-columns:1fr 1fr;
}
@media (max-width:780px){ .grid{ grid-template-columns:1fr; } }

.field{ display:flex; flex-direction:column; gap:.4rem; }
.label, label{ font-weight: 635; }

/* Velden */
input[type="text"], input[type="email"], input[type="date"],
select, textarea{
  width:100%;
  padding:14px 16px;
  border:2px solid var(--line);
  border-radius:4px;         
  background:transparent;
  color:var(--ink);
  outline:none;
}
textarea{ resize:vertical; }

/* Placeholder donker (niet grijs) */
::placeholder{ color:#000; opacity:1; }


input:focus, select:focus, textarea:focus{
  outline:3px solid #000;
  outline-offset:2px;
}

/* Radios strak zwart */
.radios{ display:flex; flex-wrap:wrap; gap:1rem; }
.radios input{ accent-color:#000; }

.hint{ color:var(--muted); font-size:.92rem; }

/* Acties */
.actions{ margin-top:.8rem; display:flex; flex-direction:column; gap:.5rem; }
.btn{
  background:#000; color:#fff;
  border:2px solid #000;
  border-radius:4px;
  padding:14px 18px;
  font-weight: 900;
  text-transform:uppercase;
  letter-spacing:.5px;
  cursor:pointer;
}
.btn:hover{ filter:brightness(1.05); transform:translateY(-1px); }

.privacy{ color:var(--muted); font-size:.92rem; }

/* Footer */
.footer{
  padding:1.2rem 0 2rem;
  border-top:2px solid var(--line);
  color:#222;
}


a{ color:var(--ink); text-underline-offset:2px; }

/* ===== Trix footer ===== */
.trix-footer{
  background:#000; color:#fff;
  padding:28px 0px 0px 36px; margin-top:32px;
}

.trix-footer {
  font-size: 18px;
}

.trix-footer h3 {
  font-size: 25px; 
}

.trix-footer a{ color:#ffffff; text-decoration:underline; text-underline-offset:2px; }
.trix-footer a:hover{ text-decoration:none; }

.tf-top{
  display:grid; grid-template-columns: 1.2fr 1fr; gap:32px;
  align-items:start; padding:24px 0 28px; border-bottom:1px transparent;
}
.tf-col h3{
  margin:0 0 10px; font-weight:900; letter-spacing:.4px;
  text-transform:uppercase;
}
.tf-col p{ margin:.35rem 0; }
.kvk{ opacity:.9; }

.tf-socials{ display:flex; gap: 0px; margin:10px 10px 20px 500px; }
.tf-socials a{
  display:inline-grid; place-items:center;
  width:34px; height:34px; border:2px solid #fff; border-radius:4px;
  font-weight:900; text-decoration:none;
}

.tf-cta{
  display:inline-block; background:#fff; color:#000; text-decoration:none;
  padding:12px 18px; border-radius:2px; font-weight:900; letter-spacing:.4px;
  border:2px solid #fff;
}

.tf-logos{
  display:flex; gap:28px; flex-wrap:wrap; justify-content:center;
  padding:26px 0 20px; border-bottom:1px solid #222;
  justify-content: space-between;
}

.tf-logos img{
  height:50px; filter:grayscale(100%) brightness(100%);
  background:transparent; object-fit:contain;
}

.tf-legal{ text-align:center; padding-top:16px; }
.tf-legal small{ color:#ddd; }
.tf-legal a{ color:#ddd; }
.tf-legal {padding-bottom: 20px;}

/* Responsive */
@media (max-width: 820px){
  .tf-top{ grid-template-columns:1fr; }
  .tf-cta{ display:inline-block; margin-top:8px; }
}

.tf-col.tf-contacts {text-align: right;}
