@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("public/fonts/inter/Inter_18pt-Regular.woff2") format("woff2");
}
@font-face { font-family:"Inter"; font-style:normal; font-weight:500; font-display:swap; src:url("public/fonts/inter/Inter_18pt-Medium.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:600; font-display:swap; src:url("public/fonts/inter/Inter_18pt-SemiBold.woff2") format("woff2"); }
@font-face { font-family:"Inter"; font-style:normal; font-weight:700; font-display:swap; src:url("public/fonts/inter/Inter_18pt-Bold.woff2") format("woff2"); }
:root {
  --color-bg: #f5f5f7;
  --color-surface: #ffffff;
  --color-text: #222;
  --color-muted: #555;

  --color-brand: #0b5ed7;
  --color-brand-ink: #ffffff;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;

  --container: 1100px;
  --container-wide: 1400px;
}
html, body {
  font-family: "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

/* Base typography */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

/* Hide scrollbars visually, keep scroll */
html, body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

body.is-nav-open {
  overflow: hidden;
}
/* Headings */
h1, h2, h3 {
  margin: 0;
  line-height: 1.15;
  font-weight: 600;
}

/* Body text */
p {
  margin: 0;
  line-height: 1.5;
}

/* Links */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Component-level typography */
.c-card__title {
  font-weight: 600;
}

.c-card__price {
  font-weight: 600;
}

.c-btn {
  font-weight: 500;
}
.o-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-5);
}

.o-container--wide {
  max-width: var(--container-wide);
}

.o-layout-ads {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.o-layout-ads__main {
  flex: 0 0 900px; /* matches what you had */
  min-width: 0;
}

.o-layout-ads__side {
  flex: 0 0 180px;
  margin-top: 10rem;
  min-width: 0;
}

.o-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  justify-items: stretch;
}

.o-grid-cards > * {
  min-width: 0; /* critical: prevents overflow/cut-off */
}

.o-main {
  max-width: 1000px; 
  margin: 0 auto;
}

/* Kill horizontal scrollbar site-wide (keep vertical scroll) */
html, body {
  overflow-x: hidden;
}

/* Responsive layout rules */
@media (max-width: 900px) {
  .o-layout-ads {
    display: block;
  }
  .o-layout-ads__side {
    display: none; /* ads disabled / hidden */
  }
  .o-layout-ads__main {
    flex: auto;
  }
}

@media (min-width: 900px) {
  .o-grid-cards .c-card--featured {
    grid-column: 1 / -1;
  }
}


/* Mobile: 1-up grid + compact card layout */
@media (max-width: 700px) {
  /* container */
  .o-container {
    padding: var(--space-3);
  }

  /* 1 column grid on phones */
  .o-grid-cards {
    grid-template-columns: 1fr;
    justify-items: center; /* center cards */
  }

  .c-card {
    width: 100%;
    max-width: 520px; /* prevents weird stretching and keeps it centered */
  }

  /* header: logo + text, no 3rd column */
  .c-card__header {
    grid-template-columns: 44px 1fr;
    gap: var(--space-3);
    align-items: start;
  }

  .c-card__logo {
    width: 44px;
    height: 44px;
  }

  .c-card__title {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .c-card__meta {
    font-size: 0.8rem;
  }

  .c-card__price {
    font-size: 0.95rem;
  }

  .c-card__summary {
    font-size: 0.88rem;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .c-pill {
    font-size: 0.78rem;
    padding: 0.18rem 0.5rem;
    margin: 0 0.2rem 0.2rem 0;
  }

  /* buttons: stacked */
  .c-card__actions {
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-3);
  }

  .c-btn {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
  }
}
.c-header {
  background: var(--color-brand);
  color: var(--color-brand-ink);
  padding: var(--space-1) 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.c-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  position: relative;
}

.c-brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-decoration: none;
  color: inherit;
}

.c-brand:hover {
  text-decoration: none;
}

@media (min-width: 900px) {
  .c-brand {
    margin-left: -14rem;
  }
}


.c-brand__logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  opacity: 0.95;
}

.c-brand__subtitle {
  margin-top: var(--space-1);
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Nav */
.c-nav { display: flex; align-items: center; gap: var(--space-4); }

.c-nav__toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  position: relative;
  z-index: 10000;
}

.c-nav__icon {
  width: 24px;
  height: 24px;
  display: block;
}


/* Dropdown menu (mobile) */
.c-nav__menu {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2);

  padding: calc(var(--space-6) + 64px) var(--space-5) var(--space-6);

  background:
  radial-gradient(900px 500px at 70% 10%, rgba(255,255,255,0.10), transparent 60%),
  radial-gradient(700px 400px at 30% 80%, rgba(255,255,255,0.06), transparent 65%),
  rgba(8, 10, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* animation setup */
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  visibility: hidden;

  transition:
    opacity 180ms ease,
    transform 220ms ease,
    visibility 0ms linear 220ms;
}

.c-nav__menu::before {
  content: "Menu";
  display: block;
  max-width: 520px;
  width: 100%;
  margin: 0 auto var(--space-3);
  padding-bottom: var(--space-3);
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.c-nav__menu::after {
  display: block;
  max-width: 520px;
  width: 100%;
  margin: var(--space-4) auto 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}


.c-nav__menu .c-nav__link {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.05rem;
}

@media (max-width: 899px) {
  .c-nav__toggle[aria-expanded="true"] + .c-nav__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;

    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 0ms;
  }
}

.c-nav__link {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
}

.c-nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .c-nav__menu {
    transition: none;
    transform: none;
  }
}

.c-nav__link.is-active {
  font-weight: 600;
}

/* Desktop nav: hamburger toggles slide-in links */
@media (min-width: 900px) {
  .c-nav__toggle { order: 2; }
  .c-nav__menu   { order: 1; }
  /* a single knob to shift the whole nav up/down */
  .c-nav {
    --nav-nudge-y: 40%; /* change this to move up/down */
    transform: translateY(var(--nav-nudge-y));
  }

  .c-nav {
    justify-content: flex-end;
    flex: 0 0 auto;
    align-items: center;
    gap: var(--space-3);
  }

  /* Hamburger keeps its subtle button look */
  .c-nav__toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    transition: background 160ms ease, transform 160ms ease;
  }

  .c-nav__toggle:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .c-nav__toggle:active {
    transform: translateY(1px);
  }

  /* Menu becomes inline (not overlay) and SLIDES */
  .c-nav__menu {
    position: static;
    inset: auto;
    z-index: auto;

    display: flex;
    flex-direction: row;
    align-items: center;

    padding: 0;
    margin: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    justify-content: flex-end; 
    transform-origin: right center;

    /* slide animation */
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    visibility: hidden;

    gap: var(--space-4);
    transition: opacity 180ms ease, transform 220ms ease, visibility 0ms linear 220ms;
  }

  /* Open state on desktop */
  .c-nav.is-open .c-nav__menu {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;

    transition: opacity 180ms ease, transform 220ms ease, visibility 0ms;
  }
  .c-nav.no-anim .c-nav__menu { transition: none !important; }

  /* No overlay-only polish on desktop */
  .c-nav__menu::before,
  .c-nav__menu::after {
    content: none;
  }

  /* Links: clean inline */
  .c-nav__link {
    padding: 0;
    line-height: 1;
    color: #fff;
  }

  .c-nav__link:hover {
    text-decoration: underline;
    background: none;
  }

  /* Undo overlay link sizing rules */
  .c-nav__menu .c-nav__link {
    max-width: none;
    margin: 0;
    font-size: inherit;
  }
}

@media (max-width: 700px) {
  .c-header {
    padding: var(--space-4) 0;
  }

  .c-brand {
    gap: var(--space-3);
  }

  .c-brand__logo {
    width: 64px;
    height: 64px;
  }

  .c-brand h1 {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .c-brand__subtitle {
    display: none;
  }
}
.c-controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.c-controls__input,
.c-controls__select {
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.c-controls__input { flex: 1 1 220px; }
.c-controls__select { flex: 0 0 220px; }
/* =========================
   card.css
========================= */
.c-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  z-index: 0;
  margin-top: 20px;
  overflow: visible;
}

.c-card.has-badge {
  margin-top: 44px; /* ruimte voor tab */
}


/* blauwe tab ALLEEN bij cards met badge (aanrader) */
.c-card.has-badge::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  top: -32px;      /* <-- WAS -44px → nu 12px lager */
  height: 44px;

  background: var(--color-brand);
  border-radius: 14px;
  z-index: -1;
}
.c-card.has-badge::after{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height:12px;                     /* overlap */
  background:#fff;                 /* want card is #fff */
  border-radius: 0;   
  z-index: 0;
  pointer-events:none;
}

/* zorg dat je echte content boven die strip blijft */
.c-card > *{
  position: relative;
  z-index: 1;
}



.c-card__header {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-4);
  align-items: start;
}

.c-card__toprow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .c-hero-intro__text,
  #page-intro {
    display: none;
  }

  .c-hero-intro {
    margin-bottom: 16px; 
  }
}

.c-hero-intro {
  margin: 32px auto 22px;
  max-width: 980px;
  padding: 0 16px; 
}

.c-hero-intro h1,
#page-title {
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #111;
}

/* subtiele “brand” accent zonder center */
.c-hero-intro h1::after,
#page-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--color-brand);
  opacity: 0.9;
}

.c-hero-intro__text,
#page-intro {
  max-width: 72ch;
  margin: 0;
  line-height: 1.65;
  color: var(--color-muted);
}

/* optioneel: maak belangrijke woorden blauw via <strong> in je intro */
.c-hero-intro__text strong,
#page-intro strong {
  color: var(--color-brand);
  font-weight: 700;
}





@media (min-width: 768px) {
  .c-card__toprow {
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
@media (min-width: 900px) {
  .c-card--featured {
    padding: 1.25rem 1.35rem;
  }

  .c-card--featured .c-card__header {
    grid-template-columns: 80px 1fr;
  }

  .c-card--featured .c-card__logo {
    width: 80px;
    height: 80px;
  }
}


.c-card__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.c-card__title {
  font-size: 1.2rem;
  margin: 0;
}

.c-card__meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.c-card__price {
  font-weight: 600;
  margin-top: 0.4rem;
}

.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;       
  flex-shrink: 0;           
  min-width: 3.6rem;           
  height: 1.9rem;            
  padding: 0 0.65rem;

  border-radius: 999px;      
  line-height: 1;

  font-size: 0.85rem;
  font-weight: 600;
  background: #fff6cc;
  color: #c89500;
  border: 1px solid #e6c34a;

  justify-self: end;           
}

.c-card__summary {
  font-size: 0.9rem;
  color: #444;
  margin: 0.6rem 0 0.3rem;
  line-height: 1.4;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-card__features {
  margin: 0.6rem 0;
  font-size: 0.8rem;
  color: #444;
}

.c-pill {
  display: inline-block;
  background: #f0f0f2;
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.5rem;
  margin: 0 0.25rem 0.25rem 0;
}

/* wrapper die precies OP de tab ligt (voor de tekst) */
.c-card__pillwrap {
  position: absolute;
  left: 0;
  right: 0;

  top: -32px;      /* <-- zelfde waarde */
  height: 44px;

  display: flex;
  align-items: center;
  padding: 0 18px;
  transform: translateY(-5px);

  pointer-events: none;
  z-index: 1;
}


/* badge tekst zelf */
.c-pill-badge {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 600px) {
  .c-card.has-badge::before {
    height: 64px;     /* meer hoogte = meer ruimte */
    top: -52px;
    border-radius: 18px;
  }

  .c-card.has-badge {
    margin-top: 64px;
  }

  .c-card__pillwrap {
    height: 64px;
    top: -52px;
  }

  .c-pill-badge {
    font-size: 0.85rem;
    line-height: 1.25;
  }
}

.c-card__actions {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.c-btn {
  flex: 1;
  text-align: center;
  border-radius: 0.6rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.c-btn--primary {
  background: var(--color-brand);
  color: #fff;
}

.c-btn--secondary {
  background: #fff;
  color: var(--color-brand);
  border: 1px solid var(--color-brand);
}

.c-btn:hover {
  filter: brightness(0.95);
  text-decoration: none;
}
.c-ads { width: 100%; }

.c-ads__stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: 140px;
}

.c-ad { display: block; }

.c-ad__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* =========================
   articles.css
========================= */

.c-articles { margin-top: var(--space-5); }

.c-articles__intro {
  margin-bottom: var(--space-6);
  color: var(--color-muted);
}

.c-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.c-article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.c-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.c-article-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #e9f3ff;
}

.c-article-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.c-article-card__title {
  font-size: 1.1rem;
  min-height: 2.6em;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.c-article-card__desc {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  min-height: 4.5em;
}

.c-article-card__meta {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: #888;
  line-height: 1.2;
}

.c-article-card__meta span {
  display: inline;
}

.c-article-card__sep {
  margin: 0 0.45rem;
  opacity: 0.7;
}

.c-article-card__category {
  color: inherit;      
  font-weight: inherit;
}

.c-article-card__actions {
  margin-top: auto;
  align-self: flex-start; 
}

/* Mobile: make articles comfortable + fix huge thumbnail crop */
@media (max-width: 700px) {
  .c-articles {
    margin-top: var(--space-4);
  }

  .c-articles h1 {
    font-size: 1.6rem;
    line-height: 1.15;
    margin: 0 0 var(--space-2);
  }

  .c-articles__intro {
    margin-bottom: var(--space-4);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .c-articles__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .c-article-card__thumb {
    height: 160px; /* smaller so it doesn’t dominate the screen */
  }

  .c-article-card__body {
    padding: var(--space-4);
  }

  .c-article-card__title {
    font-size: 1.05rem;
    line-height: 1.25;
    margin-bottom: var(--space-2);
  }

  .c-article-card__desc {
    font-size: 0.9rem;
    margin-bottom: var(--space-3);
  }

  .c-article-card__date {
    font-size: 0.78rem;
    margin-bottom: var(--space-2);
  }
}
.c-footer {
  margin-top: var(--space-6);
  padding: var(--space-4) 0;
  font-size: 0.8rem;
  color: #666;
}
.u-hidden { display: none !important; }
.u-center { text-align: center !important; }
.u-text-muted { color: var(--color-muted) !important; }
.u-sticky { position: sticky; top: 0; }
.c-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-4);
  align-items: center;
}

.c-menu__btn {
  flex: 0 0 auto;
}

@media (max-width: 700px) {
  .c-menu {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    margin: var(--space-4) 0;
  }

  .c-menu__btn {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
  }
}
.c-menu__toggle {
  display: none; 
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.c-menu__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.c-menu__panel {
  display: none;          
  width: 100%;
  margin-top: var(--space-2);
  padding: var(--space-2);
  border-radius: 16px;
}

.c-menu.is-open .c-menu__panel {
  display: block;
}

@media (max-width: 700px) {
  .c-menu__btn {
    display: none;
  }
  .c-menu__toggle {
    display: inline-flex;
  }
  .c-menu__panel a {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    text-decoration: none;
  }
}
/* =========================
   Contact page
========================= */

.c-contact {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.25rem 2rem;

  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;

  box-shadow:
    0 12px 34px rgba(0,0,0,0.06),
    0 2px 6px rgba(0,0,0,0.04);
}

.c-contact__intro {
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.85;
}


/* =========================
   Inner card (inset look)
   - anders dan outer card
========================= */

.c-form {
  background: #ffffffd7; /* bijna wit, klein koel randje */
  border: 1.5px solid rgba(156, 156, 156, 0.575);
  border-radius: 16px;
  padding: 1.75rem;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85);

  position: relative;
}





/* Inputs: laat ze iets "dieper" lijken dan het panel */
.c-form input,
.c-form textarea {
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

/* Mobile polish: nog meer app-gevoel */
@media (max-width: 680px) {
  .c-form {
    padding: 1.15rem;
    border-radius: 16px;
  }

  .c-form::before {
    inset: 8px;
  }
}


/* =========================
   Form container
========================= */

.c-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.c-form__field {
  display: flex;
  flex-direction: column;
}

.c-form__field--full {
  grid-column: 1 / -1;
}

.c-form label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.c-form input,
.c-form textarea {
  font: inherit;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.c-form textarea {
  resize: vertical;
  min-height: 140px;
}

.c-form input:focus,
.c-form textarea:focus {
  outline: none;
  border-color: rgba(20, 99, 214, 0.8);
  box-shadow: 0 0 0 3px rgba(20, 99, 214, 0.18);
}

/* Actions row */
.c-form__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* =========================
   Contact — Mobile polish
========================= */

@media (max-width: 680px) {
  /* iets meer “app” gevoel: betere randen + minder zware card */
  .c-form {
    padding: 1.1rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  /* labels iets compacter + rustiger */
  .c-form label {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  /* inputs: grotere tap targets + iets zachtere look */
  .c-form input,
  .c-form textarea {
    padding: 0.85rem 0.95rem;     /* groter voor vingers */
    border-radius: 12px;
    border-color: rgba(0,0,0,0.12);
  }

  /* textarea niet meteen mega hoog */
  .c-form textarea {
    min-height: 120px;
  }

  /* acties: maak button full-width + mooier uitgelijnd */
  .c-form__actions {
    justify-content: stretch;
    margin-top: 1.25rem;
  }

  .c-form button[type="submit"] {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    font-size: 1rem;
  }

  /* optioneel: iets meer “lucht” tussen velden */
  .c-form__grid {
    gap: 1rem;
  }
}


/* =========================
   Submit button (scoped)
========================= */

.c-form button[type="submit"] {
  appearance: none;
  border: none;
  border-radius: 10px;

  padding: 0.65rem 1.4rem;

  font: inherit;
  font-weight: 600;

  background: #1664d7; /* match header blauw */
  color: #fff;

  cursor: pointer;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 80ms ease;
}

.c-form button[type="submit"]:hover {
  background: #1256b8;
  box-shadow: 0 6px 16px rgba(18, 86, 184, 0.25);
}

.c-form button[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(18, 86, 184, 0.25);
}

.c-form button[type="submit"]:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(22, 100, 215, 0.25),
    0 6px 16px rgba(18, 86, 184, 0.25);
}
/* =========================
   Contact — Mobile fix (anti-squeeze)
========================= */

@media (max-width: 520px) {
  /* outer card: minder zij-padding, neemt scherm beter in */
  .c-contact {
    padding: 1.25rem 1rem;
    border-radius: 18px;
  }

  /* inner panel: ook iets compacter */
  .c-form {
    padding: 1rem;
    border-radius: 14px;
  }

  /* BELANGRIJK: forceer 1 kolom */
  .c-form__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* voorkomt “grid shrink” issues */
  .c-form__field {
    min-width: 0;
  }

  /* inputs: lekker brede tap targets */
  .c-form input,
  .c-form textarea {
    width: 100%;
    min-width: 0;
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
  }

  /* button full-width voelt mobile veel beter */
  .c-form__actions {
    justify-content: stretch;
  }

  .c-form button[type="submit"] {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
  }
}
/* =========================
   article-page.css
========================= */

.article-full {
  max-width: 820px;
  margin: 2.5rem auto 4rem;
}

/* Card wrapper */
.article-full {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 2.25rem 2.25rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

/* Header spacing */
.article-header {
  margin-bottom: 1.5rem;
}

.article-date {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  opacity: 0.7;
}

.article-header h1 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
}


.article-lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Prose spacing */
.article-full section {
  margin-top: 1.65rem;
}

.article-full h2 {
  margin: 1.6rem 0 0.6rem;
  line-height: 1.25;
}

.article-full h3 {
  margin: 1.25rem 0 0.45rem;
  line-height: 1.25;
}

.article-full p {
  margin: 0.75rem 0;
  line-height: 1.75;
}

.article-full ul,
.article-full ol {
  margin: 0.75rem 0 0.75rem 1.25rem;
  padding: 0;
}

.article-full li {
  margin: 0.35rem 0;
  line-height: 1.65;
}

/* Small divider feel */
.article-full section + section {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Footer actions */
.article-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.article-footer p {
  margin: 0.75rem 0;
}

/* Mobile */
@media (max-width: 720px) {
  .article-full {
    margin: 1.5rem auto 3rem;
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }

  .article-header h1 {
    font-size: 1.6rem; /* in case typography defaults are huge/small */
  }
}












