/* ── ERGÄNZUNGEN FÜR DIE BUCHEN SEITE ── */
/* Konsistent mit style.css: --accent (Cyan), --pink (Magenta), --radius, --border */

/* ── HERO ── */
.buchen-hero {
  padding: calc(var(--nav-h) + 72px) 0 56px;
  border-bottom: 1px solid var(--border);
}

.buchen-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.buchen-hero-text h1 {
  font-family: 'Anybody', sans-serif;
  font-size: clamp(34px, 5vw, 50px);
  color: #fff;
  letter-spacing: .5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.buchen-hero-text .hero-subtext {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
}

.bolt-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 8px;
}

/* ── BOOKING SECTION ── */
.booking-section {
  padding: 56px 0 88px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

/* Left side: band card + info boxes */
.booking-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.band-card {
  background: #000;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.band-card-logo {
  width: 70%;
  height: auto;
}

.band-card-presents {
  font-family: 'Anybody', sans-serif;
  font-size: 15px;
  color: var(--muted);
  letter-spacing: .5px;
}

.info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--accent);
}

.info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 13px;
  color: var(--text);
}

/* Right side: form */
.booking-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-field-full {
  margin-bottom: 28px;
}

.form-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #666;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
  cursor: pointer;
}

/* Validation state */
.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: var(--pink);
}

.field-error {
  display: none;
  font-size: 12px;
  color: var(--pink);
}

.form-field.invalid .field-error {
  display: block;
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #000;
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 15px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s, transform .15s;
}

.btn-submit:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  margin-top: 16px;
  font-size: 13px;
  color: var(--accent);
  text-align: center;
}

.form-success.visible {
  display: block;
}

/* ── BIG CTA BANNER ── */
.big-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.big-cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Anybody', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 16vw, 220px);
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  letter-spacing: 4px;
  pointer-events: none;
  z-index: 1;
}

.big-cta h2 {
  position: relative;
  z-index: 2;
  font-family: 'Anybody', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-style: italic;
  color: #fff;
  letter-spacing: .5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .buchen-hero-inner {
    flex-direction: column;
  }
  .bolt-icon { margin-top: 0; }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .booking-form-card { padding: 24px; }
  .info-boxes { grid-template-columns: 1fr; }
  .big-cta { padding: 80px 0; }
}
