:root {
  --blue: #1c3e94;
  --blue-dark: #142c6b;
  --gold: #b08d3f;
  --gold-dark: #8f7026;
  --cream: #faf6ec;
  --beige: #efe6d3;
  --ink: #2b3147;
  --muted: #5d6173;
  --white: #ffffff;
}

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

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, .brand-name {
  font-family: "Nunito", sans-serif;
  color: var(--blue);
  line-height: 1.15;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

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

/* Preview-balk */
.preview-bar {
  background: var(--blue-dark);
  color: #d6ddef;
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 16px;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; flex-direction: column; }

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
}

.brand-name span { color: var(--gold); }

.brand-sub {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted);
  margin-top: -4px;
}

.nav a {
  margin-left: 22px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.nav a:hover { color: var(--gold-dark); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, #f3ead7 55%, var(--beige) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 0;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-text > p { max-width: 480px; }

.hero-buttons { display: flex; gap: 14px; margin: 28px 0 14px; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }

.btn-secondary { background: var(--gold); color: var(--white); }
.btn-secondary:hover { background: var(--gold-dark); }

.hero-note { font-size: 0.85rem; color: var(--muted); padding-bottom: 40px; }

.hero-image { align-self: end; }

.hero-image img {
  border-radius: 18px 18px 0 0;
  max-height: 520px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

/* Intro */
.intro { padding: 72px 0; text-align: center; }

.intro h2 { font-size: 1.9rem; margin-bottom: 18px; }

.intro p { margin-bottom: 14px; color: var(--muted); }

/* Categorie-kaarten */
.categories { padding-bottom: 80px; }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(28, 62, 148, 0.10);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 62, 148, 0.16);
}

.card-image { height: 260px; overflow: hidden; }

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

#paard .card-image img { object-position: 50% 30%; }

.card-body { padding: 26px 28px 30px; }

.card-body h3 { font-size: 1.45rem; margin-bottom: 10px; }

.card-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-dark);
}

/* Over ons */
.story { background: var(--cream); padding: 80px 0; }

.story-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.story-image img { border-radius: 18px; }

.story h2 { font-size: 1.9rem; margin-bottom: 16px; }

.story h3 { font-size: 1.25rem; margin: 24px 0 10px; color: var(--gold-dark); }

.story p { color: var(--muted); margin-bottom: 12px; }

/* Footer */
.site-footer { background: var(--blue-dark); color: #d6ddef; }

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.footer-inner p { font-size: 0.92rem; margin-bottom: 6px; }

.footer-inner strong { color: var(--white); }

.footer-brand {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white) !important;
}

.footer-brand span { font-style: italic; font-weight: 400; color: #d8c08a; }

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  padding-bottom: 18px;
}

.footer-note p { font-size: 0.8rem; color: #95a1c4; }

/* Mobiel */
@media (max-width: 820px) {
  .nav { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 44px;
  }

  .hero-note { padding-bottom: 0; }

  .hero-image img { max-height: 380px; border-radius: 18px 18px 0 0; }

  .cards { grid-template-columns: 1fr; }

  .story-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
}
