/*
 * horecavac.css — Horecavac.nl volledige stijl
 * Laad na: Google Fonts (Bricolage Grotesque + DM Sans)
 */

/* ── 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;
}

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

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

.nav-btn-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--geel);
  border: 1.5px solid var(--geel);
  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: 0;
  padding-bottom: 2px;
}
.nav-btn-plus:hover {
  background: var(--geel);
  color: var(--groen);
  transform: scale(1.08);
}

.nav-login { font-size: 12px; opacity: 0.7; }
.nav-login:hover { opacity: 1; }

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

/* ── DROPDOWN ───────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-knop {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 6px;
  min-width: 200px;
  z-index: 200;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: background .12s;
}
.nav-dropdown-menu a:hover { background: #f0f0ee; color: var(--groen); }

/* ── HAMBURGER ──────────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--geel);
  cursor: pointer;
  padding: 4px 8px;
}

/* ── MOBIEL MENU ────────────────────────────────────── */
.mobiel-menu {
  display: none;
  flex-direction: column;
  background: var(--groen-nav);
  border-top: 1px solid var(--rand);
  padding: 8px 20px 16px;
}
.mobiel-menu.open { display: flex; }
.mobiel-menu a {
  padding: 12px 0;
  font-size: 15px;
  color: var(--geel);
  text-decoration: none;
  border-bottom: 1px solid var(--rand);
}
.mobiel-menu a:last-child { border-bottom: none; }
.mobiel-menu a:hover { color: var(--wit); }

/* ── 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: 16px;
  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; }
.lijst .vac-item { border-bottom: none; }
.vac-body { flex: 1; min-width: 0; }
.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-meta {
  font-size: 13px;
  color: var(--tekst-mid);
  margin-top: 3px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.vac-extra {
  font-size: 12px;
  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;
}

/* ── FA ICONEN ──────────────────────────────────────── */
.fa-clock, .fa-euro-sign, .fa-building {
  margin-right: 3px;
  opacity: 0.8;
  vertical-align: middle !important;
  position: relative !important;
  top: 4px !important;
}
.sep { margin: 0 6px; opacity: 0.3; }

/* ── BEDRIJVEN LINK ─────────────────────────────────── */
.bedrijven-link { margin-bottom: 16px; font-size: 13px; }
.bedrijven-link a { color: var(--geel); text-decoration: none; opacity: 0.8; transition: opacity .15s; }
.bedrijven-link a:hover { opacity: 1; }

/* ── 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; }

/* ── BEDRIJVEN PAGINA ───────────────────────────────── */
.bedrijven-intro { margin-bottom: 24px; }
.bedrijven-intro h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--geel);
  margin-bottom: 6px;
}
.bedrijven-intro p { font-size: 13px; color: var(--tekst-licht); margin-bottom: 20px; }
.bedrijf-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--rand);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.bedrijf-item:last-child { border-bottom: none; }
.bedrijf-naam { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 500; color: var(--geel); }
.bedrijf-meta { font-size: 13px; color: var(--tekst-mid); flex: 1; margin-left: 12px; }
.bedrijf-count { font-size: 12px; color: var(--tekst-licht); white-space: nowrap; }

/* ── 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; }

/* ── 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); }
.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-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); }
.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); }
.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; }
.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); }

/* ── 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); }

/* ── 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); }

/* ── AUTOFILL OVERRIDE ──────────────────────────────── */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgba(21, 143, 24, 0.95) inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff;
}

/* ── 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; }
  .verberg-mobiel { display: none !important; }
  .hamburger { display: block; }
}
/* ── EXTRA INFO ─────────────────────────────────────── */
.vac-extra-info {
  font-size: 13px;
  color: var(--tekst-mid);
  margin-top: 5px;
}
/* ── VAC HEADER & DEEL ──────────────────────────────── */
.vac-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.vac-deel {
  font-size: 12px;
  color: var(--geel);
  opacity: 0.7;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .15s;
}
.vac-deel:hover { opacity: 1; }