/* ═══════════════════════════════════════════════════
   banen.in — hoofdstylesheet
   Kleurpalet: #026eee blauw · #10de11 groen · #f5f8ff achtergrond
════════════════════════════════════════════════════ */


:root {
  --md-primary:        #026eee;
  --md-on-surface:     #1a1c2e;
  --md-on-surface-var: #44475a;
  --md-outline:        #c4c8d8;
  --md-outline-var:    #dde1f0;
  --md-surface:        #f5f8ff;
  --md-error:          #ba1a1a;
  --font: 'Work Sans', sans-serif;
  --mono: 'Work Sans', sans-serif;
}

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

html { overscroll-behavior-y: none; }

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  background: #f5f8ff;
  color: #1a1c2e;
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.6;
  overscroll-behavior-y: none;
}

/* ─── CONTAINER ──────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── LAAG 1: BLAUWE HEADER ──────────────────────────── */
.site-header {
  background-color: #026eee;
  color: white;
  padding: 15px 0 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(2,110,238,0.25);
}

.frame-rij-1 {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 12px;
}

.cel-links  { flex: 0 0 auto; }
.cel-midden {
  flex: 1;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  padding-left: 8px;
  text-align: left;
}
.cel-rechts {
  flex: 0 0 50px;
  text-align: right;
}

.nav-logo {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
}
.logo-in { color: #10de11; }

.nav-btn-plus {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid white;
  background: transparent;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 1px; /* kleine correctie */
}
.nav-btn-plus:hover { background: rgba(255,255,255,0.2); }

/* ─── LAAG 2: PROVINCIE CHIPS ────────────────────────── */
.sectie-chips {
  background-color: #026eee;
  padding-bottom: 14px;
}

.frame-rij-2 {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 5px 20px;
  scrollbar-width: none;
  max-width: 1100px;
  margin: 0 auto;
}
.frame-rij-2::-webkit-scrollbar { display: none; }

.p-chip {
  display: inline-flex;
  min-width: 45px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.15s;
  cursor: pointer;
}
.p-chip:hover {
  background: #fff;
  color: #026eee;
  border-color: #fff;
}
.p-chip-actief {
  background-color: #29cf2a !important;
  border-color: ##29cf2a !important;
  color: #000 !important;
}

/* ─── LAAG 3: STAD CHIPS ─────────────────────────────── */
.sectie-steden {
  background: #f5f8ff;
  padding: 16px 0 8px;
}

.frame-rij-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.stad-chip {
  background: #fff;
  border: 1.5px solid #026eee;
  border-radius: 8px;
  color: #026eee;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  transition: all 0.15s;
  white-space: nowrap;
}
.stad-chip:hover {
  background: #026eee;
  color: #fff;
}
.stad-chip-actief {
  background: #10de11 !important;
  border-color: #10de11 !important;
  color: #FFF !important;
}

/* ─── LAAG 4: VACATURES ──────────────────────────────── */
.sectie-vacatures {
  padding: 16px 0 40px;
}

.lijst-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #888;
  margin-bottom: 12px;
  padding: 0 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.vacature-box {
  background: white;
  padding: 16px 20px;
  border: 1px solid #dde1f0;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-left: 19px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.vacature-box:hover {
  box-shadow: 0 4px 16px rgba(2,110,238,0.1);
  border-color: #026eee;
}
.vacature-box a {
  font-size: 15px;
  font-weight: 700;
  color: #026eee;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.vacature-box a:hover { text-decoration: underline; }
.vacature-box .meta {
  font-size: 13px;
  color: #666;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  border-top: 1px solid #dde1f0;
  padding: 1.5rem 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 11px;
  color: #888;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
footer a { color: #026eee; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ─── MOBIEL ──────────────────────────────────────────── */
@media (max-width: 600px) {
    .frame-rij-1 { padding: 0 16px 10px; }
    .cel-midden  { font-size: 20px; }      /* was 18px */
    .nav-logo    { font-size: 22px; }      /* was 20px */
  
    .frame-rij-2 {
        padding: 10px 16px 0;
        gap: 8px;
        justify-content: center;
    }

    .p-chip      { font-size: 14px; min-width: 44px; height: 32px; }  /* groter */
  
    .frame-rij-3 { padding: 0 16px; gap: 8px; }
    .stad-chip   { font-size: 13px; padding: 6px 14px; }   /* groter */
  
    .lijst-header { padding: 0 16px; }
    .vacature-box { margin: 0 16px 10px; }
    footer { padding: 1rem 16px; }
  }
/* ─── PLAATSEN PAGINA ────────────────────────────────── */
.plaatsen-wrap, .plaatsen-wrap * { font-weight: 400; }
.plaatsen-titel { font-weight: 700 !important; }
.veld label { font-weight: 600 !important; }
.btn-betalen { font-weight: 600 !important; }
.plaatsen-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.25rem 6rem;
}
.plaatsen-titel {
  font-size: 26px;
  font-weight: 700;
  color: var(--md-on-surface);
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}
.plaatsen-sub {
  font-size: 14px;
  color: var(--md-on-surface-var);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.plaatsen-usps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.usp {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--md-outline);
  color: var(--md-on-surface-var);
  background: #fff;
}
.form-kaart {
  background: #fff;
  border: 1px solid var(--md-outline-var);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-rij.enkel { grid-template-columns: 1fr; }
.veld { display: flex; flex-direction: column; gap: 4px; }
.veld label {
  font-size: 11px;
  font-weight: 600;
  color: var(--md-on-surface-var);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: 'DM Sans', sans-serif;
}
.veld input, .veld select, .veld textarea {
  background: var(--md-surface);
  border: 1.5px solid var(--md-outline);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 400 !important;
  color: var(--md-on-surface);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.veld input:focus, .veld select:focus, .veld textarea:focus {
  border-color: var(--md-primary);
}
.veld input::placeholder, .veld textarea::placeholder {
  color: var(--md-on-surface-var);
  font-weight: 400;
}
.veld textarea { resize: vertical; min-height: 80px; }
.veld-hint {
  font-size: 11px;
  color: var(--md-on-surface-var);
  margin-top: 2px;
}
.url-status { font-size: 12px; margin-top: 4px; }
.url-status.ok   { color: #1a7a1a; }
.url-status.fout { color: var(--md-error); }
.url-status.bezig { color: var(--md-on-surface-var); }
.form-prijs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--md-outline-var);
  flex-wrap: wrap;
  gap: 1rem;
}
.prijs-info { display: flex; align-items: baseline; gap: 8px; }
.prijs {
  font-size: 28px;
  font-weight: 700;
  color: var(--md-primary);
}
.prijs-detail { font-size: 12px; color: var(--md-on-surface-var); }
.btn-betalen {
  background: var(--md-primary);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
  cursor: pointer;
  transition: opacity .15s;
  box-shadow: 0 2px 8px rgba(2,110,238,0.3);
}
.btn-betalen:hover { opacity: .9; }
.form-melding {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}
.form-melding.ok   { background: rgba(26,122,26,0.1); color: #1a7a1a; }
.form-melding.fout { background: rgba(186,26,26,0.1); color: var(--md-error); }

@media (max-width: 600px) {
  .form-rij { grid-template-columns: 1fr; }
  .prijs { font-size: 22px; }
}