/* Theaterrood op warm papier — groot, rustig en leesbaar voor alle leeftijden. */
:root {
  --rood: #7a1f2b;
  --rood-donker: #5c1620;
  --papier: #fdfaf5;
  --inkt: #241f1b;
  --lijn: #ddd3c6;
  --grijs: #6f675e;
  --ok: #1c6b3a;
}
* { box-sizing: border-box; }
html { font-size: 17px; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--papier);
  color: var(--inkt);
  line-height: 1.55;
}
main, .site-header, footer { max-width: 620px; margin: 0 auto; padding: 0 1.1rem; }

.site-header { padding-top: 2.2rem; text-align: center; }
.eyebrow {
  margin: 0; letter-spacing: .18em; text-transform: uppercase;
  font-size: .8rem; color: var(--rood); font-weight: 600;
}
h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  margin: .2rem 0 0;
  border-bottom: 3px solid var(--rood);
  display: inline-block; padding-bottom: .35rem;
}
h2 { font-family: "Fraunces", Georgia, serif; font-size: 1.35rem; margin: 2rem 0 1rem; }
.stepnum {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.7em; height: 1.7em; margin-right: .4em;
  background: var(--rood); color: #fff; border-radius: 50%;
  font-family: system-ui, sans-serif; font-size: .85em;
}

/* Voorstellingen */
.show-list { display: grid; gap: .8rem; }
.show-card {
  width: 100%; text-align: left; cursor: pointer;
  background: #fff; border: 1.5px solid var(--lijn); border-radius: 12px;
  padding: 1rem 1.1rem; font: inherit; color: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: border-color .15s;
}
.show-card:hover, .show-card:focus-visible { border-color: var(--rood); }
.show-card .when { font-weight: 700; font-size: 1.05rem; }
.show-card .where { color: var(--grijs); font-size: .92rem; }
.show-card .seats { color: var(--ok); font-size: .88rem; white-space: nowrap; }
.show-card .seats.few { color: var(--rood); font-weight: 700; }
.show-card[disabled] { opacity: .55; cursor: not-allowed; }
.show-card .price { font-weight: 700; color: var(--rood); white-space: nowrap; }

/* Formulier */
.chosen {
  background: #fff; border-left: 5px solid var(--rood);
  padding: .8rem 1rem; border-radius: 0 10px 10px 0; margin-bottom: 1.4rem;
}
label { display: block; font-weight: 600; margin: 1.1rem 0 .35rem; }
.hint { font-weight: 400; color: var(--grijs); font-size: .9rem; }
input {
  width: 100%; font: inherit; padding: .85rem .9rem;
  border: 1.5px solid var(--lijn); border-radius: 10px; background: #fff;
}
input:focus-visible { outline: 3px solid var(--rood); outline-offset: 1px; border-color: var(--rood); }

.qty-row { display: flex; align-items: center; gap: 1rem; }
.qty-btn {
  width: 3.2rem; height: 3.2rem; font-size: 1.6rem; line-height: 1;
  border: 1.5px solid var(--lijn); border-radius: 10px; background: #fff; cursor: pointer;
}
.qty-btn:hover { border-color: var(--rood); color: var(--rood); }
output#qty { font-size: 1.6rem; font-weight: 700; min-width: 2ch; text-align: center; }

.total { font-size: 1.15rem; margin-top: 1.4rem; }
.primary {
  width: 100%; margin-top: .6rem; padding: 1rem;
  font: inherit; font-size: 1.15rem; font-weight: 700;
  background: var(--rood); color: #fff; border: 0; border-radius: 12px; cursor: pointer;
}
.primary:hover { background: var(--rood-donker); }
.primary:disabled { opacity: .6; cursor: wait; }
.linklike {
  background: none; border: 0; color: var(--rood); font: inherit;
  cursor: pointer; text-decoration: underline; margin-top: 1.2rem; padding: 0;
}
.error {
  background: #fbeaea; border: 1.5px solid #d09090; color: #7a1f1f;
  padding: .7rem .9rem; border-radius: 10px;
}
.muted { color: var(--grijs); }
.small { font-size: .88rem; }
.success-box {
  background: #eaf6ee; border: 1.5px solid #9fcdb0; color: var(--ok);
  padding: 1rem 1.1rem; border-radius: 12px; margin-top: 1.4rem;
}

/* Omboeken */
.ticket-check { display: flex; gap: .7rem; align-items: center;
  background: #fff; border: 1.5px solid var(--lijn); border-radius: 10px;
  padding: .8rem 1rem; margin-bottom: .6rem; cursor: pointer; }
.ticket-check input { width: 1.35rem; height: 1.35rem; accent-color: var(--rood); }
select {
  width: 100%; font: inherit; padding: .85rem .9rem;
  border: 1.5px solid var(--lijn); border-radius: 10px; background: #fff;
}

footer { padding: 2.5rem 1.1rem 2rem; text-align: center; }
footer a { color: var(--rood); }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
