/* ============================================================
   Foto Bachmann AG — Buchungsseite
   Nutzt die Farb-/Typo-Variablen aus weihnachten.css
   ============================================================ */

.booking-page { background: var(--cream); min-height: 100vh; }

.booking-head { position: relative; background: var(--green-deep); padding: 22px 0; }
.booking-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.booking-main { padding: 64px 0 100px; }
.booking-wrap { max-width: 720px; }
.booking-wrap .eyebrow { margin-bottom: 14px; }
.booking-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 46px);
  margin-bottom: 18px;
  text-wrap: balance;
}
.booking-intro { color: var(--ink-soft); font-size: 16px; margin-bottom: 40px; text-wrap: pretty; }

.booking-alert {
  background: #FBEAEA;
  border: 1px solid #E3A9A9;
  color: #7A2020;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: 14.5px;
}
.booking-alert ul { margin: 8px 0 0 20px; }

.booking-step { margin-bottom: 48px; }
.booking-step h2 {
  font-family: var(--font-display);
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

/* ---------- day list ---------- */
/* Bewusst als Liste statt Monatskalender: bei einer Handvoll Shooting-Tage
   ist ein volles Kalendergitter unnötiger Leerraum. */

.day-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cal-status { color: var(--ink-soft); font-size: 14.5px; padding: 4px 0; }
.day-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white-soft);
  font-family: var(--font-body);
  color: var(--ink);
  cursor: default;
  text-align: left;
  box-shadow: var(--shadow-card);
}
.day-item .day-date {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}
.day-item .day-weekday {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.day-item .day-status {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.day-item.is-available {
  cursor: pointer;
  border-color: rgba(185, 152, 92, 0.4);
}
.day-item.is-available:hover { background: rgba(185, 152, 92, 0.1); }
.day-item.is-full { opacity: 0.55; }
.day-item.is-full .day-status { color: var(--ink-soft); }
.day-item.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #211A0E;
}
.day-item.is-selected .day-weekday,
.day-item.is-selected .day-status { color: #211A0E; }

/* ---------- slot list ---------- */

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slot-btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(185, 152, 92, 0.5);
  background: var(--white-soft);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.slot-btn:hover { background: rgba(185, 152, 92, 0.14); transform: translateY(-1px); }
.slot-btn.is-selected { background: var(--green-deep); border-color: var(--green-deep); color: var(--cream); }

.selected-summary {
  margin-top: 18px;
  font-weight: 700;
  color: var(--green-deep);
  background: rgba(185, 152, 92, 0.12);
  border-radius: 12px;
  padding: 12px 18px;
  display: inline-block;
}

/* ---------- form ---------- */

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field span { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white-soft);
  color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.field-check input { margin-top: 3px; }
.field-check a { color: var(--gold); }

.booking-submit { width: 100%; margin-top: 20px; }
.booking-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.booking-fineprint { margin-top: 14px; font-size: 13px; color: var(--ink-soft); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- success / legal pages ---------- */

.success-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: var(--white-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.success-table th, .success-table td {
  text-align: left;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.success-table th { color: var(--ink-soft); font-weight: 700; width: 40%; }
.success-table tr:last-child th, .success-table tr:last-child td { border-bottom: none; }

.legal-wrap p { margin-bottom: 16px; color: var(--ink-soft); }
.legal-wrap h2 {
  font-size: 22px;
  margin: 40px 0 14px;
  color: var(--ink);
}
.legal-wrap h2:first-of-type { margin-top: 28px; }
.legal-wrap ul {
  margin: 0 0 16px 20px;
  color: var(--ink-soft);
}
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap strong { color: var(--ink); }
.legal-wrap a { color: var(--gold); }
.legal-wrap a:hover { color: var(--gold-soft); }
.legal-placeholder-note {
  background: rgba(185, 152, 92, 0.14);
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--ink);
}

@media (max-width: 620px) {
  .field-grid { grid-template-columns: 1fr; }
  .cal-day { font-size: 12.5px; }
}
