/* ── Variablen ────────────────────────────────────────────────────────────── */
:root {
  --dark:        #1A1A2E;
  --dark-mid:    #2C2C4A;
  --accent:      #C0392B;
  --accent-lt:   #E8C9C5;
  --gold:        #D4A853;
  --cream:       #FAF8F4;
  --white:       #ffffff;
  --mid:         #4A4A6A;
  --light-gray:  #ECECEC;
  --block-bg:    #F0EDE8;

  --font-head: 'Work Sans', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  --radius: 8px;
  --max-w: 860px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--dark); }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  text-align: center;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 40px;
  font-size: 1rem;
  letter-spacing: .5px;
  margin-top: 28px;
}

.btn--book {
  display: block;
  background: var(--accent);
  color: var(--white);
  padding: 13px 24px;
  font-size: .95rem;
  margin-top: 20px;
  border-radius: 6px;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  padding: 72px 24px 80px;
  text-align: center;
  overflow: hidden;
}

/* Diagonales Dreieck oben rechts */
.hero__triangle {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 140px 140px 0;
  border-color: transparent var(--accent) transparent transparent;
}

/* Goldene Linie unten */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 2px;
  background: var(--gold);
}

.hero__inner { position: relative; z-index: 1; }

.hero__label {
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 5.5rem);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 2px;
}

.hero__slogan {
  font-family: var(--font-head);
  font-size: clamp(.95rem, 2.5vw, 1.15rem);
  color: var(--accent-lt);
  margin-top: 16px;
  line-height: 1.6;
  font-style: italic;
}

/* ── SEKTIONEN ────────────────────────────────────────────────────────────── */
.section { padding: 56px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.section__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.section__label::before {
  content: '';
  display: inline-block;
  width: 4px; height: 20px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.section__sub {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--mid);
  margin-top: -14px;
  margin-bottom: 32px;
}
.section__sub strong { color: var(--accent); }

/* ── BIO ──────────────────────────────────────────────────────────────────── */
.bio {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.bio__foto-wrap {
  flex-shrink: 0;
  width: 148px;
  height: 148px;
}

.bio__foto {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--accent);
}

.bio__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.bio__role {
  font-family: var(--font-head);
  font-size: .8rem;
  color: var(--accent);
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.bio__desc {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--mid);
  text-align: justify;
}

/* ── BULLETS ──────────────────────────────────────────────────────────────── */
.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.bullets__item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.6;
}

.bullets__icon {
  color: var(--accent);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── ZITAT ────────────────────────────────────────────────────────────────── */
.quote {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 24px 36px;
  text-align: center;
}

.quote__text {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.65;
  font-style: italic;
}

.quote__cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-size: .78rem;
  color: var(--gold);
  font-style: normal;
}

/* ── TERMINE ──────────────────────────────────────────────────────────────── */
.termine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.termin-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--light-gray);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.termin-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.10); }

.termin-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
}

.termin-card__date {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

/* Platz-Badge – wird per JS befüllt */
.seats-badge {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.seats-badge--green  { background: #E8F5E9; color: #2E7D32; }
.seats-badge--yellow { background: #FFF8E1; color: #F57F17; }
.seats-badge--red    { background: #FFEBEE; color: var(--accent); }
.seats-badge--sold   { background: var(--light-gray); color: #777; }

.termin-card__body {
  flex: 1;
  margin-bottom: 8px;
}

.termin-card__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: .9rem;
}
.termin-card__row:last-of-type { border-bottom: none; }

.termin-card__day  { font-weight: 600; color: var(--dark); font-family: var(--font-head); }
.termin-card__time { color: var(--mid); }

.termin-card__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark);
  margin-top: 14px;
  text-align: center;
}

/* Ausgebucht-Zustand */
.termin-card--sold .btn--book {
  background: var(--light-gray);
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 18px 24px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: var(--accent-lt);
}

.footer__inner a {
  color: var(--gold);
}
.footer__inner a:hover { text-decoration: underline; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .bio__desc { text-align: left; }

  .termine {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
