/* ============================================================
   PAHLAZZO PAHLEN — Seitenspezifisches
   Alles, was nur an einer oder zwei Stellen vorkommt.
   ============================================================ */

/* ---------- Zweispaltiger Block: Text neben Bild ---------- */

.zweispalt {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 60rem) {
  .zweispalt { grid-template-columns: 1fr 1fr; }
  .zweispalt--eng { grid-template-columns: 1.2fr 1fr; }
}

.zweispalt__bild {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--schatten);
}

.zweispalt__bild img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

@media (min-width: 60rem) {
  .zweispalt__bild img { aspect-ratio: 3 / 4; }
}

/* ---------- Eventdetail ----------
   Aufbau wie auf der alten Seite: schmale Spalte, Bild im Format
   16:9, Ticketknopf über voller Breite, darunter Datumszeile und
   Titel, dann Beschreibung neben der Infobox.            */

.detail-bahn { max-width: 58rem; margin-inline: auto; }

.detail__flyer {
  aspect-ratio: 16 / 9;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--flaeche);
}

.detail__flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail__ticketknopf {
  width: 100%;
  padding-block: 1.1rem;
  font-size: .85rem;
  letter-spacing: .16em;
}

.detail__kauf { margin-bottom: 2rem; }

.detail__kopf { margin-bottom: 2.5rem; }

/* SA 12.DEZ • 21:00 Uhr • Pahlazzo */
.detail__zeile {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .85rem;
  font-family: var(--schrift-display);
  font-size: 1.125rem;
  letter-spacing: .05em;
}

.detail__wochentag { color: var(--akzent); }
.detail__datum { color: var(--text); }
.detail__nebensache { color: var(--text-ruhig); }

.detail__titel {
  font-size: clamp(1.875rem, 5vw, 3rem);
  letter-spacing: .025em;
}

.detail__raster {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

@media (min-width: 62rem) {
  .detail__raster { grid-template-columns: 2fr 1fr; }

  /* Termine ohne Beschreibungstext: die Infobox steht links und
     nimmt nur so viel Platz, wie sie braucht. */
  .detail__raster--knapp { grid-template-columns: minmax(0, 24rem); }
}

/* Beschreibungen kommen als reiner Text — Umbrüche über CSS */
.detail__beschreibung p {
  white-space: pre-line;
  line-height: 1.75;
}

.infobox {
  position: sticky;
  top: calc(var(--kopf-hoehe) + 1.5rem);
  padding: 1.5rem;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: var(--flaeche);
}

.infobox h3 {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  letter-spacing: .05em;
  color: var(--text);
}

.infobox__zeile { margin-bottom: 1.25rem; }

.infobox__label {
  margin-bottom: .25rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-leise);
}

.infobox__wert {
  margin: 0;
  color: var(--text);
  font-size: .95rem;
}

.infobox__text {
  margin: .25rem 0 0;
  color: var(--text-ruhig);
  font-size: .9rem;
}

/* Alle Tage einer mehrtägigen Veranstaltung */
.infobox__termine {
  margin: 0;
  padding: 0;
  list-style: none;
}

.infobox__termine li + li { border-top: 1px solid var(--linie); }

/* Jede Zeile hat denselben Aufbau, egal ob Link oder aktueller Tag */
.infobox__termine a,
.infobox__termine span[aria-current] {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .5rem 0;
  font-size: .9rem;
  color: var(--text-ruhig);
  text-decoration: none;
  transition: color var(--weich);
}

.infobox__termine a:hover { color: var(--akzent); }

.infobox__termine span[aria-current] {
  color: var(--text);
  font-weight: 600;
}

.infobox__knopf {
  width: 100%;
  margin-top: 1.75rem;
}

.detail__zurueck {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-leise);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--weich);
}

.detail__zurueck:hover { color: var(--akzent); }

/* ---------- Restaurant ----------
   Aufbau wie auf der alten Seite: Bühne, Einleitung, die drei
   Reiter, der Impressionen-Lauf über die volle Breite, kommende
   Restaurant-Termine, das Partyservice-Band und die Speisekarte. */

/* --- Impressionen: Lauf über die volle Fensterbreite --- */

.impressionen {
  position: relative;
}

.impressionen__lauf {
  display: flex;
  gap: 1rem;
  padding: 1rem 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.impressionen__lauf::-webkit-scrollbar { display: none; }

.impressionen__lauf figure {
  flex-shrink: 0;
  width: clamp(14rem, 40vw, 18rem);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  scroll-snap-align: center;
  cursor: zoom-in;
}

.impressionen__lauf img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.22, 1, .36, 1);
}

.impressionen__lauf figure:hover img { transform: scale(1.05); }

/* Die Ränder blenden aus, damit der Lauf nicht abgeschnitten wirkt */
.impressionen__blende {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(3rem, 8vw, 8rem);
  pointer-events: none;
}

.impressionen__blende--links {
  left: 0;
  background: linear-gradient(90deg, var(--grund), transparent);
}

.impressionen__blende--rechts {
  right: 0;
  background: linear-gradient(270deg, var(--grund), transparent);
}

/* Pfeile nur auf großen Schirmen, und erst beim Überfahren */
.impressionen__pfeil {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: none;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity var(--weich), background var(--weich);
}

.impressionen:hover .impressionen__pfeil,
.impressionen__pfeil:focus-visible { opacity: 1; }

.impressionen__pfeil:hover { background: var(--akzent); color: var(--akzent-kontrast); }
.impressionen__pfeil--links  { left: 1.5rem; }
.impressionen__pfeil--rechts { right: 1.5rem; }

@media (min-width: 48rem) {
  .impressionen__pfeil { display: grid; }
  .impressionen__lauf { padding-inline: 4rem; gap: 1.5rem; }
}

/* --- Partyservice: Band mit Bildreihe --- */

.band__bilder {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}

@media (min-width: 48rem) {
  .band__bilder { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.band__bilder button {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-klein);
  background: var(--flaeche);
  cursor: zoom-in;
}

.band__bilder img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.22, 1, .36, 1), opacity var(--weich);
}

.band__bilder button:hover img { transform: scale(1.06); opacity: .85; }

/* --- Partyservice: „Lassen Sie sich verwöhnen" --- */

.verwoehnen__icon {
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--akzent-rand);
  border-radius: 50%;
  background: var(--akzent-hauch);
  font-size: 1.5rem;
}

.verwoehnen__liste {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: 54rem;
  margin: 3rem auto 0;
}

@media (min-width: 44rem) {
  .verwoehnen__liste { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.verwoehnen__liste > div {
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: rgba(22, 22, 29, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
}

.verwoehnen__liste h3 {
  margin-bottom: .5rem;
  font-size: 1rem;
  letter-spacing: .06em;
  color: var(--akzent);
}

.verwoehnen__liste p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text-ruhig);
}

/* Die abschließende Einladung mit Herz zwischen zwei Linien */
.verwoehnen__einladung {
  max-width: 44rem;
  margin: 3.5rem auto 0;
  text-align: center;
}

.verwoehnen__trenner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  color: var(--akzent);
}

.verwoehnen__trenner::before,
.verwoehnen__trenner::after {
  content: '';
  width: clamp(2rem, 12vw, 5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--akzent-rand));
}

.verwoehnen__trenner::after { transform: rotate(180deg); }

.verwoehnen__zitat {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.6;
  color: var(--text);
}

/* --- Speisekarte ---
   Wie auf der alten Seite liegt hier dasselbe Foto sehr dezent
   hinter dem Text (10 % Deckkraft), damit der Abschnitt nicht als
   schwarze Fläche wirkt. */

.speisekarte { position: relative; overflow: hidden; }

.speisekarte__grund {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .1;
  pointer-events: none;
}

.speisekarte__grund img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speisekarte > .bahn { position: relative; z-index: 1; }

/* --- Speisekarte --- */

.karte-gruppe h3 {
  font-size: 1.15rem;
}

/* Waagerechter Bilderlauf, wischbar *//* Waagerechter Bilderlauf, wischbar */
.bilderlauf {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--linie-hart) transparent;
  -webkit-overflow-scrolling: touch;
}

.bilderlauf::-webkit-scrollbar { height: 6px; }
.bilderlauf::-webkit-scrollbar-track { background: transparent; }
.bilderlauf::-webkit-scrollbar-thumb { background: var(--linie-hart); border-radius: 3px; }

.bilderlauf img {
  flex: 0 0 auto;
  width: clamp(12rem, 32vw, 18rem);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-klein);
  scroll-snap-align: start;
}

/* Speisekarte */
.karte-raster {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 52rem) {
  .karte-raster { grid-template-columns: repeat(3, 1fr); }
}

.karte-gruppe h3 {
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--linie);
  font-size: 1.15rem;
  color: var(--akzent);
}

.gericht { margin-bottom: 1.5rem; }

.gericht h4 {
  margin-bottom: .3rem;
  font-family: var(--schrift-text);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--text);
}

.gericht p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--text-ruhig);
}

/* Aufklappbarer Bereich — ohne JavaScript */
.mehr-block > summary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 2.5rem auto 0;
  padding: .85rem 1.75rem;
  border: 1px solid var(--akzent-rand);
  border-radius: var(--radius-klein);
  background: var(--akzent-hauch);
  color: var(--akzent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  width: fit-content;
  transition: background var(--weich);
}

.mehr-block > summary::-webkit-details-marker { display: none; }
.mehr-block > summary:hover { background: var(--akzent-hauch-stark); }

.mehr-block > summary::after {
  content: '';
  width: .5rem;
  height: .5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--weich);
}

.mehr-block[open] > summary::after { transform: translateY(2px) rotate(-135deg); }
.mehr-block[open] > summary .zu-text { display: inline; }
.mehr-block[open] > summary .auf-text { display: none; }
.mehr-block > summary .zu-text { display: none; }

.mehr-block__huelle { padding-top: 2.5rem; }

/* Umschalter Reservierung / Öffnungszeiten / Kontakt */
.reiter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.reiter button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  border: 1px solid var(--linie-hart);
  border-radius: var(--radius-klein);
  background: transparent;
  color: var(--text-ruhig);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--weich);
}

.reiter button:hover { border-color: var(--akzent); color: var(--akzent); }

.reiter button[aria-selected='true'] {
  background: var(--akzent);
  border-color: var(--akzent);
  color: var(--akzent-kontrast);
}

.reiter-inhalt[hidden] { display: none; }

/* Öffnungszeiten */
.zeiten {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
  margin-inline: auto;
}

.zeiten__zeile {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--linie);
  border-radius: var(--radius-klein);
  background: var(--flaeche);
}

.zeiten__tag {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--akzent);
}

.zeiten__wert { color: var(--text); font-size: .95rem; }

.hinweiskasten {
  max-width: 34rem;
  margin: 1.75rem auto 0;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--linie);
  border-left: 3px solid var(--akzent);
  border-radius: var(--radius-klein);
  background: var(--akzent-hauch);
  font-size: .92rem;
  line-height: 1.6;
}

/* Partyservice-Band mit Hintergrundbild */
.band {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.band__bild {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.band__bild img { width: 100%; height: 100%; object-fit: cover; }

/* 75 % wie auf der alten Seite — bei den 86–93 %, die hier vorher
   standen, war vom Foto praktisch nichts mehr zu sehen. */
.band__schleier {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .75);
}

/* Die zweite Bandvariante steht etwas offener */
.band--offen .band__schleier { background: rgba(0, 0, 0, .70); }

.band__merkmale {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 2rem;
  margin-top: 1.5rem;
  color: var(--text-ruhig);
  font-size: .9rem;
}

/* Über dem durchscheinenden Foto braucht der Text etwas Halt —
   sonst franst er auf den helleren Stellen aus. */
.band h2,
.band p {
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

/* ---------- Über uns ---------- */

.zeitreise {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 60rem) {
  .zeitreise { grid-template-columns: 1fr 1fr; }
}

.zeitreise video {
  width: 100%;
  border-radius: var(--radius);
  background: #000;
}

.zeitreise__quelle {
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--text-leise);
}

/* Die Galerie ist ein eigener Scrollbereich — auf jedem Schirm.
   23 Archivbilder untereinander ergäben sonst über 3000 Pixel
   graue Fläche, weil die Bilder erst beim Scrollen nachladen. */
.zeitreise__galerie {
  max-height: 24rem;
  padding-right: .4rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  gap: .5rem;
  grid-template-columns: repeat(3, 1fr);
  scrollbar-width: thin;
  scrollbar-color: var(--linie-hart) transparent;
  -webkit-overflow-scrolling: touch;
}

.zeitreise__galerie::-webkit-scrollbar { width: 6px; }
.zeitreise__galerie::-webkit-scrollbar-track { background: transparent; }
.zeitreise__galerie::-webkit-scrollbar-thumb {
  background: var(--linie-hart);
  border-radius: 3px;
}

/* Ein Hauch Abblendung unten zeigt, dass es weitergeht */
.zeitreise__rahmen {
  position: relative;
}

.zeitreise__rahmen::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 3rem;
  pointer-events: none;
  background: linear-gradient(transparent, var(--grund-2));
  border-radius: 0 0 var(--radius-klein) var(--radius-klein);
}

@media (min-width: 60rem) {
  .zeitreise__galerie { max-height: 30rem; }
}

/* Künstler nach Jahren */
.jahre { display: grid; gap: .75rem; max-width: 46rem; margin-inline: auto; }

.jahr {
  border: 1px solid var(--linie);
  border-radius: var(--radius-klein);
  background: var(--flaeche);
  overflow: hidden;
}

.jahr > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  font-family: var(--schrift-display);
  font-size: 1.4rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color var(--weich);
}

.jahr > summary::-webkit-details-marker { display: none; }
.jahr > summary:hover { color: var(--akzent); }

.jahr > summary::after {
  content: '';
  flex-shrink: 0;
  width: .55rem;
  height: .55rem;
  border-right: 2px solid var(--akzent);
  border-bottom: 2px solid var(--akzent);
  transform: translateY(-3px) rotate(45deg);
  transition: transform var(--weich);
}

.jahr[open] > summary::after { transform: translateY(2px) rotate(-135deg); }

.jahr ul {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
  list-style: none;
}

.jahr li {
  padding: .55rem 0;
  border-top: 1px solid var(--linie);
  font-size: .95rem;
  color: var(--text-ruhig);
}

/* ---------- Jobs ---------- */

.stelle {
  padding: 1.6rem 1.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: var(--flaeche);
}

.stelle h3 {
  margin-bottom: .75rem;
  font-family: var(--schrift-text);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

.stelle p {
  margin: 0;
  white-space: pre-line;
  font-size: .95rem;
  color: var(--text-ruhig);
}

.kaestchen {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .55rem 0;
  font-size: .95rem;
  cursor: pointer;
}

.kaestchen input {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .22rem;
  accent-color: var(--akzent);
}

/* ---------- Kontakt ---------- */

.kontakt-raster {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 60rem) {
  .kontakt-raster { grid-template-columns: 1.3fr 1fr; }
}

.kontaktkarte {
  padding: 1.75rem;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: var(--flaeche);
}

.kontaktkarte + .kontaktkarte { margin-top: 1rem; }

.kontaktkarte h3 {
  margin-bottom: .85rem;
  font-family: var(--schrift-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--akzent);
}

.kontaktkarte p { margin: 0; color: var(--text); line-height: 1.7; }
.kontaktkarte a { text-decoration: none; }

/* ---------- Rechtstexte ---------- */

.rechtstext {
  max-width: 46rem;
  font-size: .98rem;
  line-height: 1.8;
}

.rechtstext h2 {
  margin: 3rem 0 1rem;
  font-family: var(--schrift-text);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.rechtstext h2:first-child { margin-top: 0; }

.rechtstext h3 {
  margin: 2rem 0 .75rem;
  font-family: var(--schrift-text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.rechtstext ul { padding-left: 1.25rem; }
.rechtstext li { margin-bottom: .5rem; }
