/* =============================================
   LUMEA BOOKING — Frontend Stijlen
   ============================================= */

:root {
  --lb-bruin:   #3f2e2a;
  --lb-goud:    #c7a76b;
  --lb-beige:   #f7f4ef;
  --lb-cream:   #fbf8f6;
  --lb-tekst:   #4d4037;
  --lb-muted:   #8a7c70;
  --lb-border:  rgba(74,60,55,0.12);
  --lb-shadow:  0 4px 20px rgba(60,40,20,0.08);
  --lb-radius:  14px;
}

/* ── Booking wrapper ── */
.lb-booking-wrap,
.lb-contact-wrap {
  max-width: 780px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--lb-tekst);
}

/* ── Stap indicator ── */
.lb-stappen {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 0;
}

.lb-stap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lb-stap-nr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lb-beige);
  border: 2px solid var(--lb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--lb-muted);
  transition: all .25s ease;
  flex-shrink: 0;
}

.lb-stap-label {
  font-size: 13px;
  color: var(--lb-muted);
  transition: color .25s ease;
  white-space: nowrap;
}

.lb-stap.actief .lb-stap-nr {
  background: var(--lb-bruin);
  border-color: var(--lb-bruin);
  color: #fff;
}

.lb-stap.actief .lb-stap-label { color: var(--lb-tekst); font-weight: 600; }

.lb-stap.klaar .lb-stap-nr {
  background: var(--lb-goud);
  border-color: var(--lb-goud);
  color: #fff;
}

.lb-stap-lijn {
  flex: 1;
  height: 1px;
  background: var(--lb-border);
  margin: 0 12px;
}

/* ── Stap content ── */
.lb-stap-titel {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--lb-tekst);
  margin: 0 0 8px;
}

.lb-stap-sub {
  font-size: 15px;
  color: var(--lb-muted);
  margin: 0 0 28px;
  line-height: 1.65;
}

/* ── Formulier velden ── */
.lb-label {
  display: block;
  font-size: 13px;
  color: var(--lb-muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.lb-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--lb-radius);
  border: 1px solid var(--lb-border);
  background: #fff;
  font-size: 15px;
  color: var(--lb-tekst);
  font-family: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.lb-input:focus {
  border-color: rgba(74,60,55,0.35);
  box-shadow: 0 0 0 3px rgba(74,60,55,0.07);
}

.lb-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.lb-veld { display: flex; flex-direction: column; gap: 0; margin-bottom: 18px; }
.lb-veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lb-veld-smal { max-width: 180px; }

/* ── Datum picker ── */
.lb-datum-wrap { margin-bottom: 24px; }

/* ── Tijdsloten ── */
.lb-tijdslot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.lb-tijdslot {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--lb-border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--lb-tekst);
  cursor: pointer;
  font-family: inherit;
  transition: all .18s ease;
}

.lb-tijdslot:hover:not(:disabled) {
  border-color: var(--lb-bruin);
  background: var(--lb-beige);
}

.lb-tijdslot.geselecteerd {
  background: var(--lb-bruin);
  color: #fff;
  border-color: var(--lb-bruin);
}

.lb-tijdslot.bezet {
  background: var(--lb-beige);
  color: var(--lb-muted);
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: .6;
}

.lb-laden {
  font-size: 13px;
  color: var(--lb-muted);
  font-style: italic;
  padding: 8px 0;
}

/* ── GDPR ── */
.lb-gdpr {
  margin: 20px 0;
  padding: 16px;
  background: var(--lb-beige);
  border-radius: var(--lb-radius);
}

.lb-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lb-muted);
  cursor: pointer;
  line-height: 1.5;
}

.lb-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--lb-bruin);
}

.lb-checkbox-label a { color: var(--lb-goud); }

/* ── Honeypot ── */
.lb-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ── Knoppen ── */
.lb-btn-volgende,
.lb-btn-betalen,
.lb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--lb-bruin);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  box-shadow: 0 6px 20px rgba(63,46,42,0.20);
  text-decoration: none;
}

.lb-btn-volgende:hover:not(:disabled),
.lb-btn-betalen:hover:not(:disabled),
.lb-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(63,46,42,0.28);
}

.lb-btn-volgende:disabled,
.lb-btn-betalen:disabled,
.lb-btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.lb-btn-terug {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--lb-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid var(--lb-border);
  cursor: pointer;
  transition: all .18s ease;
}

.lb-btn-terug:hover { background: var(--lb-beige); color: var(--lb-tekst); }

.lb-btn-rij {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── Error ── */
.lb-error {
  background: #fdf0f0;
  border: 1px solid rgba(180,60,60,0.15);
  border-radius: var(--lb-radius);
  padding: 14px 18px;
  font-size: 14px;
  color: #8b3a3a;
  margin: 16px 0;
  line-height: 1.5;
}

/* ── Samenvatting ── */
.lb-samenvatting {
  background: var(--lb-beige);
  border-radius: var(--lb-radius);
  padding: 20px;
  margin-bottom: 24px;
}

.lb-sam-rij {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--lb-border);
  font-size: 14px;
  gap: 16px;
}

.lb-sam-rij:last-child { border-bottom: none; }
.lb-sam-rij span { color: var(--lb-muted); flex-shrink: 0; }
.lb-sam-rij strong { color: var(--lb-tekst); text-align: right; }

/* ── Betaling info ── */
.lb-betaling-info {
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius);
  padding: 20px;
  margin-bottom: 24px;
}

.lb-prijs-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.lb-prijs-label { font-size: 15px; font-weight: 600; color: var(--lb-tekst); }
.lb-prijs { font-family: Georgia, serif; font-size: 24px; color: var(--lb-tekst); }
.lb-prijs-sub { font-size: 13px; color: var(--lb-muted); margin: 0; }

/* ── Succes ── */
.lb-succes-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.lb-succes {
  text-align: center;
  max-width: 480px;
}

.lb-succes-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lb-goud);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.lb-succes h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--lb-tekst);
  margin: 0 0 14px;
}

.lb-succes p {
  font-size: 16px;
  color: var(--lb-muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

/* ── Contact formulier ── */
.lb-contact-succes {
  text-align: center;
  padding: 40px 24px;
}

.lb-contact-succes .lb-succes-icon { margin: 0 auto 20px; }
.lb-contact-succes h3 { font-family: Georgia, serif; font-size: 24px; font-weight: 400; color: var(--lb-tekst); margin: 0 0 10px; }
.lb-contact-succes p { font-size: 15px; color: var(--lb-muted); margin: 0; }

.lb-privacy-note {
  font-size: 12px;
  color: var(--lb-muted);
  text-align: center;
  margin-top: 12px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .lb-stap-label { display: none; }
  .lb-veld-rij { grid-template-columns: 1fr; }
  .lb-veld-smal { max-width: 100%; }
  .lb-stappen { margin-bottom: 28px; }
  .lb-btn-rij { flex-direction: column; }
  .lb-btn-volgende, .lb-btn-betalen, .lb-btn-terug { width: 100%; justify-content: center; }
}
