/*
 * horecavac.css — Horecavac.nl volledige stijl
 * Laad na: Google Fonts (Bricolage Grotesque + DM Sans)
 *
 * Drie kleuren:
 *   --groen      #158F18  body achtergrond
 *   --groen-nav  #4CAF50  nav achtergrond
 *   --geel       #eeee28  accent: titels, links, knoppen
 */

/* ── VARIABELEN ─────────────────────────────────────── */
:root {
  --groen:       #158F18;
  --groen-nav:   #4CAF50;
  --geel:        #eeee28;
  --geel-dark:   #d4d400;
  --wit:         #ffffff;
  --rand:        rgba(255,255,255,0.15);
  --rand-sterk:  rgba(255,255,255,0.25);
  --tekst-licht: rgba(255,255,255,0.55);
  --tekst-mid:   rgba(255,255,255,0.8);
}

/* ── RESET & BASIS ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--groen);
  color: var(--wit);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── NAV ────────────────────────────────────────────── */
.nav {
  background: var(--groen-nav);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ───────────────────────────────────────────── */
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--wit);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo span { color: var(--wit); }

/* ── NAV ELEMENTEN ──────────────────────────────────── */
.nav-rechts { display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,0,0,0.65);
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: rgba(0,0,0,0.1); color: #111; }

.nav-btn-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  color: #111;
  border: 1.5px solid #111;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .15s, color .15s, transform .15s;
  line-height: 1;
}
.nav-btn-plus:hover {
  background: #111;
  color: var(--groen-nav);
  transform: scale(1.08);
}

.nav-terug {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}
.nav-terug:hover { color: #111; }

/* ── MAIN / WRAP ────────────────────────────────────── */
main {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

/* ── ZOEKBALK ───────────────────────────────────────── */
.zoek-wrap { margin-bottom: 24px; }
.zoek-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wit);
  border-radius: 40px;
  padding: 11px 20px;
  transition: box-shadow .15s;
}
.zoek-inner:focus-within {
  box-shadow: 0 0 0 3px rgba(238,238,40,0.5);
}
.zoek-icoon { width: 18px; height: 18px; color: var(--groen); flex-shrink: 0; }
.zoek-inner input {
  border: none; outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #1a1a18;
  width: 100%;
}
.zoek-inner input::placeholder { color: #bbb; }

/* ── VACATURELIJST ──────────────────────────────────── */
.vac-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--rand);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.vac-item:last-child { border-bottom: none; }
.vac-body { flex: 1; min-width: 0; }

.vac-titel-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.vac-titel {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--geel);
  text-decoration: none;
  line-height: 1.3;
  transition: color .12s;
}
.vac-titel:hover { color: var(--wit); }

.vac-deel {
  font-size: 12px;
  color: var(--tekst-licht);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.vac-deel:hover { color: var(--geel); }

.vac-meta {
  font-size: 13px;
  color: var(--tekst-mid);
  margin-top: 3px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.vac-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--groen-nav);
  border-radius: 50%;
  margin: 0 6px 1px;
  flex-shrink: 0;
}

.vac-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.vac-chip {
  font-size: 11px;
  color: var(--wit);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* ── MEER KNOP ──────────────────────────────────────── */
.meer-wrap { text-align: center; padding: 28px 0 0; }
.meer-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: var(--geel);
  border: 1px solid var(--geel);
  border-radius: 8px;
  padding: 9px 22px;
  cursor: pointer;
  transition: background .15s;
}
.meer-btn:hover { background: rgba(238,238,40,0.1); }
.naar-boven-link {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--tekst-licht);
  text-decoration: none;
}
.naar-boven-link:hover { color: var(--wit); }

.geen-resultaten {
  display: none;
  text-align: center;
  padding: 3rem 0;
  color: var(--tekst-licht);
  font-size: 14px;
}

/* ── PLAATSEN INTRO ─────────────────────────────────── */
.plaatsen-intro { margin-bottom: 28px; }
.plaatsen-intro h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--geel);
  margin-bottom: 8px;
}
.plaatsen-intro p {
  font-size: 14px;
  color: var(--tekst-mid);
  line-height: 1.7;
}
.plaatsen-intro a { color: var(--geel); }

.plaatsen-usps {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.usp {
  font-size: 12px; font-weight: 600;
  color: var(--groen);
  background: var(--geel);
  padding: 4px 12px; border-radius: 20px;
}

/* ── DASHBOARD HINT ─────────────────────────────────── */
.dashboard-hint {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--tekst-mid);
  margin-bottom: 20px;
}
.dashboard-hint a {
  color: var(--geel);
  font-weight: 600;
  text-decoration: none;
}
.dashboard-hint a:hover { text-decoration: underline; }

/* ── FORMULIER KAART ────────────────────────────────── */
.form-kaart {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--rand-sterk);
  border-radius: 16px;
  padding: 28px;
}

.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.veld-enkel { margin-bottom: 12px; }

.veld input,
.veld select,
.veld-enkel input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--wit);
  outline: none;
  transition: border-color .15s, background .15s;
  -webkit-appearance: none;
}
.veld input:focus,
.veld select:focus,
.veld-enkel input:focus {
  border-color: var(--geel);
  background: rgba(255,255,255,0.22);
}
.veld input::placeholder,
.veld-enkel input::placeholder { color: rgba(255,255,255,0.6); }
.veld select option { background: var(--groen); color: var(--wit); }
.veld select.ongekozen { color: rgba(255,255,255,0.6); }

/* ── OPTIONEEL STREEP ───────────────────────────────── */
.jk-optioneel {
  display: flex; align-items: center; gap: 10px;
  margin: 4px 0 12px;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
}
.jk-optioneel::before, .jk-optioneel::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,0.15);
}

/* ── VELD HINTS & URL STATUS ────────────────────────── */
.veld-hint {
  font-size: 12px;
  color: var(--tekst-licht);
  margin-top: 5px;
  line-height: 1.4;
}
.url-status { font-size: 12px; margin-top: 4px; min-height: 0; line-height: 0; }
.url-status.ok    { color: var(--geel); line-height: 1.4; }
.url-status.fout  { color: #ff8080;     line-height: 1.4; }
.url-status.bezig { color: var(--tekst-licht); line-height: 1.4; }

/* ── PRIJS BALK ─────────────────────────────────────── */
.form-prijs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rand);
  flex-wrap: wrap;
}
.prijs-info { display: flex; align-items: baseline; gap: 10px; }
.prijs { font-size: 24px; font-weight: 700; color: var(--geel); }
.prijs-detail { font-size: 13px; color: var(--tekst-licht); }

/* ── KNOPPEN ────────────────────────────────────────── */
.btn-betalen {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: var(--geel);
  color: var(--groen);
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.btn-betalen:hover { background: var(--geel-dark); }
.btn-betalen:active { transform: scale(0.98); }

/* ── MELDING ────────────────────────────────────────── */
.form-melding {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
}
.form-melding.ok   { background: rgba(238,238,40,0.15); color: var(--geel); }
.form-melding.fout { background: rgba(255,80,80,0.15);  color: #ff8080; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 20px;
  border-top: 1px solid var(--rand);
  font-size: 13px;
  color: var(--tekst-licht);
  text-align: center;
  line-height: 2;
}
footer a { color: var(--tekst-licht); text-decoration: none; }
footer a:hover { color: var(--geel); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 600px) {
  .form-rij { grid-template-columns: 1fr; }
  .form-kaart { padding: 20px; }
  .form-prijs { flex-direction: column; align-items: flex-start; }
  .btn-betalen { width: 100%; text-align: center; }
  .nav-link { display: none; }
}

/* ─── TIP JOBKANON ──────────────────────────────── */
.tip-jobkanon {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tip-jobkanon a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
/* ── AUTOFILL OVERRIDE ──────────────────────────────── */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.18) inset !important;
  -webkit-text-fill-color: var(--wit) !important;
  caret-color: var(--wit);
}

/* ── FORM HULP ──────────────────────────────────────── */
  .form-hulp {
    margin-top: 30px;
    font-size: 12px;
    color: var(--tekst-licht);
    text-align: center;
}
.form-hulp a { color: var(--tekst-licht); text-decoration: none; border-bottom: 1px solid var(--rand); }
.form-hulp a:hover { color: var(--geel); border-color: var(--geel); }