/* ====== Design tokens ====== */
:root{
  --brand:#8B0000;
  --brand-ink:#ffffff;
  --ink:#1f2430;
  --muted:#6a7381;
  --bg:#f5f5f5;
  --surface:#ffffff;
  --surface-2:#fafafa;
  --radius:14px;
  --shadow:0 10px 24px rgba(0,0,0,.08);
  --shadow-soft:0 6px 16px rgba(0,0,0,.06);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color:var(--ink);
  background:linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  line-height:1.6;
}

/* ====== Layout ====== */
.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}

.section{
  padding:56px 0;
}
.section.alt{
  background:var(--surface);
}
.section-title{
  margin:0 0 20px;
  font-size:clamp(22px, 3.5vw, 32px);
  font-weight:800;
  letter-spacing:.2px;
}

/* ====== Header & Nav ====== */
.site-header{
  background:linear-gradient(135deg, var(--brand), #b31212 70%);
  color:var(--brand-ink);
  position:sticky; top:0; z-index:20;
  box-shadow:var(--shadow-soft);
}
.brand{
  margin:0;
  padding:18px 0 8px;
  font-size:clamp(22px, 3.2vw, 30px);
}
.top-nav{
  display:flex; gap:14px; flex-wrap:wrap; padding:0 0 16px;
}
.top-nav a{
  color:#fff; text-decoration:none; font-weight:600; opacity:.95;
  border:1px solid rgba(255,255,255,.25);
  padding:8px 12px; border-radius:999px;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.top-nav a:hover{ background:rgba(255,255,255,.12); transform:translateY(-1px); border-color:rgba(255,255,255,.4) }

/* ====== Hero (geen witte doos) ====== */
.hero{
  background:linear-gradient(135deg, var(--brand) 0%, #b31212 70%);
  color:#fff;
  padding:34px 0 22px;
  box-shadow:var(--shadow-soft);
}
.hero-inner{ margin-bottom:0; }
.hero-title{
  margin:6px 0 4px;
  font-size:clamp(26px, 4vw, 40px);
  font-weight:900;
  color:#fff;
  text-shadow:0 2px 8px rgba(0,0,0,.2);
}
.hero-subtitle{
  color:rgba(255,255,255,.9);
  margin:0;
}

/* ====== Slider (niet meer gebruikt – mag blijven of verwijderen) ====== */
.slider{ display:none; }              /* <- uit beeld voor de zekerheid */
.slides{ display:none; }
.slides img{ display:none; }
.slider-hint{ display:none; }

/* ====== Cards & grids ====== */
.card-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
}
.card-grid.one{ grid-template-columns: minmax(260px, 520px); }

.card{
  background:var(--surface);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex; flex-direction:column;
}
.card.highlight{
  background:linear-gradient(180deg, #fff 0%, #fff 40%, #fff5f5 100%);
  border:1px solid #f1d3d3;
}
.card-media{
  width:100%; height:220px; object-fit:cover;
}
.card-body{ padding:18px 18px 10px }
.card-title{ margin:0 0 6px; font-size:20px; font-weight:800 }
.card-meta{ margin:0 0 10px; color:var(--muted); font-weight:600 }
.card-text{ margin:0 0 12px }
.card-text.small{ font-size:14px }
.card-actions{ padding:0 18px 18px }

/* ====== Buttons & links ====== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:10px;
  background:var(--brand); color:#fff; text-decoration:none; font-weight:700;
  border:1px solid #7b0000;
  transition:transform .15s ease, box-shadow .15s ease, background .2s ease;
  box-shadow:0 6px 18px rgba(139,0,0,.25);
}
.btn:hover{ transform:translateY(-1px); box-shadow:0 10px 22px rgba(139,0,0,.28); background:#9b0000 }
.btn.ghost{
  background:#fff; color:var(--brand); border:1px solid #e1b4b4; box-shadow:none;
}
.btn.ghost:hover{ background:#fff3f3 }

.link{ color:var(--brand); text-underline-offset:3px; font-weight:700 }

/* ====== Catalogus ====== */
.catalog-wrap{
  display:grid; grid-template-columns:1fr; gap:16px;
}
.catalog-card{
  display:grid; grid-template-columns: 160px 1fr; gap:16px;
  background:var(--surface);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  text-decoration:none; color:inherit;
  padding:12px;
}
.catalog-card img{
  width:100%; height:160px; object-fit:cover; border-radius:10px;
}
.catalog-info h3{ margin:4px 0 6px }
.catalog-info p{ margin:0 0 10px; color:var(--muted) }

/* ====== Dealer logos ====== */
.logo-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap:16px;
}
.logo-card{
  background:var(--surface);
  border-radius:12px;
  padding:18px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .2s ease;
}
.logo-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow) }
.logo-card img{ width:min(160px, 80%); height:auto; display:block }

/* ====== Contact ====== */
.contact-card{
  background:var(--surface);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
  max-width:560px;
}
.contact-actions{ margin-top:8px }

/* ====== Footer ====== */
.site-footer{
  background:var(--brand); color:#fff; text-align:center;
  padding:20px 0; margin-top:24px;
}

/* ====== Small tweaks ====== */
img{ max-width:100%; display:block }
