/* ===========================
   BOOKING / RESERVEREN PAGINA
   =========================== */

/* Container rondom het formulier */
.bk-form-container {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  background-color: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

/* Formulier-opbouw */
.bk-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Rijen met twee velden naast elkaar op desktop */
.bk-row {
  display: flex;
  gap: 1.5rem;
}

/* Velden in een rij */
.bk-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Label boven input */
.bk-label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Kleine uitlegonder-tekst eventueel */
.bk-help {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-top: 0.25rem;
}

/* Inputs en textarea */
.bk-field input,
.bk-field textarea,
.bk-field select {
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  background-color: #ffffff;
  color: var(--text-color);
  box-sizing: border-box;
}

/* Textarea iets flexibeler */
.bk-field textarea {
  resize: vertical;
  min-height: 90px;
}

/* Verstuur-knop */
.bk-submit {
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
  width: fit-content;
}

/* Footer-rij met prijs + knop naast elkaar */
.bk-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

/* Prijsindicatie-box naast de knop */
.bk-quote {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-color);
  box-sizing: border-box;
}

/* Status-text onder het formulier */
.bk-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted-text);
}

/* Blok met prijsinfo (optioneel extra tekst) */
.bk-price-info {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  background-color: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.bk-price-info h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

/* Custom dropdown wrapper */
.bk-dd {
  position: relative;
  width: 100%;
}

/* Button die de dropdown toont */
.bk-dd__btn {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
}

/* Label in de dropdown-button */
.bk-dd__label {
  flex: 1;
  text-align: left;
}

/* Pijltje */
.bk-dd__chev {
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

/* Optielijst */
.bk-dd__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 20;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Individuele optie */
.bk-dd__opt {
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.bk-dd__opt[aria-selected="true"] {
  background-color: var(--accent-soft);
  font-weight: 600;
}

.bk-dd__opt:hover {
  background-color: var(--secondary-bg);
}

/* Honeypot veld verbergen */
.bk-hp {
  display: none !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bk-row {
    flex-direction: column;
  }

  .bk-footer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .bk-quote {
    width: 100%;
  }

  .bk-submit {
    width: 100%;
    text-align: center;
    align-self: center;
  }

  .bk-price-info {
    padding: 1.25rem;
  }
}

/* Bestemming readonly styling bij vaste route */
.bk-input--readonly {
  background-color: #f0f0f0;
  color: var(--muted-text);
  cursor: not-allowed;
}

/* zwarte koppen */
h1, h2 {
  color: #000000;
}

.bk-title {
  color: #000000;
}
