/*
 * horecavac-over.css — Over pagina stijl
 * Laad na: horecavac.css
 */

/* ── HERO ───────────────────────────────────────────── */
.over-hero {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid var(--rand);
  padding: 48px 20px;
}
.over-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.over-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--geel);
  line-height: 1.3;
  margin-bottom: 12px;
}
.over-hero h1 em {
  font-style: normal;
  color: var(--wit);
}
.over-hero-sub {
  font-size: 15px;
  color: var(--tekst-mid);
  line-height: 1.7;
}

/* ── BODY ───────────────────────────────────────────── */
.over-body {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.over-sectie {
  padding: 36px 0;
  border-bottom: 1px solid var(--rand);
}
.over-sectie:last-child { border-bottom: none; }

.over-sectie h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--geel);
  margin-bottom: 16px;
}
.over-sectie p {
  font-size: 15px;
  color: var(--tekst-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ── USPS ───────────────────────────────────────────── */
.usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.usp-kaart {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--rand);
  border-radius: 12px;
  padding: 18px;
}
.usp-kaart-breed {
  grid-column: 1 / -1;
}
.usp-icoon { font-size: 22px; margin-bottom: 8px; }
.usp-titel {
  font-size: 14px;
  font-weight: 700;
  color: var(--wit);
  margin-bottom: 6px;
}
.usp-tekst {
  font-size: 13px;
  color: var(--tekst-mid);
  line-height: 1.7;
}
.usp-link {
  color: var(--geel);
  text-decoration: none;
  font-weight: 600;
}
.usp-link:hover { text-decoration: underline; }

/* ── MAKER ──────────────────────────────────────────── */
.over-maker {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.over-maker-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--geel);
  color: var(--groen);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.over-maker-naam {
  font-weight: 700;
  color: var(--wit);
  margin-bottom: 2px;
}
.over-maker-titel {
  font-size: 12px;
  color: var(--tekst-licht);
  margin-bottom: 12px;
}
.over-maker-tekst {
  font-size: 14px;
  color: var(--tekst-mid);
  line-height: 1.8;
}
.over-quote {
  display: block;
  color: var(--geel);
  font-style: italic;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ── CONTACT ────────────────────────────────────────── */
.contact-sectie { padding: 36px 0; }
.contact-sectie h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--geel);
  margin-bottom: 8px;
}
.contact-sectie .sub {
  font-size: 14px;
  color: var(--tekst-mid);
  margin-bottom: 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.contact-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 14px;
}
.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tekst-licht);
  margin-bottom: 6px;
}
.contact-item-waarde {
  font-size: 14px;
  font-weight: 600;
  color: var(--wit);
  margin-bottom: 4px;
}
.contact-item-waarde a { color: var(--geel); text-decoration: none; }
.contact-item-waarde a:hover { text-decoration: underline; }
.contact-item-sub { font-size: 12px; color: var(--tekst-licht); }

/* ── CONTACTFORMULIER ───────────────────────────────── */
.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--rand-sterk);
  border-radius: 14px;
  padding: 24px;
}
.contact-form-titel {
  font-size: 15px;
  font-weight: 700;
  color: var(--wit);
  margin-bottom: 16px;
}
.contact-form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form-veld { margin-bottom: 12px; }
.contact-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--tekst-licht);
  margin-bottom: 5px;
}
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--wit);
  outline: none;
  transition: border-color .15s;
}
.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus { border-color: var(--geel); }
.contact-form-input::placeholder,
.contact-form-textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form-select option { background: var(--groen); }
.contact-form-textarea { resize: vertical; min-height: 100px; }
.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.contact-mail-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--geel);
  color: var(--groen);
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  cursor: pointer;
  transition: background .15s;
}
.contact-mail-btn:hover { background: var(--geel-dark); }
.contact-form-sub { font-size: 12px; color: var(--tekst-licht); }
.contact-form-sub a { color: var(--geel); text-decoration: none; }
.contact-melding {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255,69,0,0.1);
  color: var(--geel);
  border-radius: 8px;
  font-size: 13px;
}
.contact-fout {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255,80,80,0.1);
  color: #ff8080;
  border-radius: 8px;
  font-size: 13px;
}

/* ── CTA BLOK ───────────────────────────────────────── */
.cta-blok {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--rand);
  margin-top: 20px;
}
.cta-blok h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--wit);
  margin-bottom: 10px;
  line-height: 1.3;
}
.cta-blok h2 em { font-style: normal; color: var(--geel); }
.cta-blok p {
  font-size: 14px;
  color: var(--tekst-mid);
  margin-bottom: 20px;
  line-height: 1.7;
}
.cta-knop {
  display: inline-block;
  background: var(--geel);
  color: var(--groen);
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.cta-knop:hover { background: var(--geel-dark); }

/* ── NAAR BOVEN ─────────────────────────────────────── */
.naar-boven-btn {
  display: none;
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 900;
  background: var(--groen-nav);
  color: var(--geel);
  border: 1px solid var(--rand-sterk);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 600px) {
  .usps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-rij { grid-template-columns: 1fr; }
  .over-maker { flex-direction: column; }
  .over-hero h1 { font-size: 22px; }
}