/* ==========================================================================
   BetaBe Events - Tisch- und VIP-Reservierung
   (Feld- und Formular-Styles liegen global in style.css)
   ========================================================================== */

.page-head {
  position: relative;
  padding-block: clamp(3rem, 10vw, 6rem) clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 340px;
  z-index: -1;
  background:
    radial-gradient(55% 70% at 20% 18%, rgba(59, 130, 246, 0.28), transparent 65%),
    radial-gradient(50% 60% at 82% 12%, rgba(147, 197, 253, 0.14), transparent 65%);
  filter: blur(6px);
}

.page-head h1 { margin-bottom: 1rem; text-wrap: balance; }
.page-head p { max-width: 52ch; font-size: 1.05rem; }

/* --- Layout -------------------------------------------------------------- */
.reservierung {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 1025px) {
  .reservierung { grid-template-columns: 1.25fr 0.75fr; gap: 2.5rem; }
}

/* --- Auswahl Tisch / VIP -------------------------------------------------- */
.choice { border: 0; padding: 0; margin: 0; }

.choice legend {
  padding: 0;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

.choice__option { position: relative; display: block; cursor: pointer; }

/* Radio bleibt bedienbar und fokussierbar, liegt aber unsichtbar darunter */
.choice__option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.choice__box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}

.choice__option:hover .choice__box { border-color: var(--color-border-strong); }

.choice__option input:checked + .choice__box {
  border-color: var(--color-accent);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.choice__option input:focus-visible + .choice__box {
  outline: 2px solid var(--color-accent-3);
  outline-offset: 3px;
}

.choice__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.choice__text { font-size: 0.85rem; line-height: 1.45; color: var(--color-text-muted); }

@media (max-width: 420px) {
  .choice__options { grid-template-columns: 1fr; }
}

/* --- Infokarten ----------------------------------------------------------- */
.reservierung__side { display: grid; gap: 1.25rem; }

.info-box {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
}
.info-box--muted { background: rgba(240, 244, 255, 0.03); }

.info-box h3 { margin-bottom: 0.9rem; }
.info-box p { font-size: 0.95rem; }

.info-box ul { display: grid; gap: 0.7rem; }
.info-box li {
  position: relative;
  padding-left: 1.4em;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.info-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.info-box__mail {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.info-box__mail:hover { opacity: 0.85; color: transparent; }
