@charset "UTF-8";

/*
 * Professionelle Festsaal-Gestaltung
 * Warme Naturtöne und dezente Holz-/Messingakzente treffen auf das
 * bestehende Hallengrün. Die Ebene verändert ausschließlich die Optik.
 */

:root {
  --green-1000: #061c16;
  --green-950: #0a2a21;
  --green-900: #123a2e;
  --green-800: #1f5541;
  --gold-600: #a66d2f;
  --gold-500: #c49349;
  --gold-200: #ead8ba;
  --paper: #f8f5ee;
  --paper-deep: #eee7db;
  --white: #fffdfa;
  --ink: #202a26;
  --muted: #66716c;
  --line: #d8cdbc;
  --display: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --text: "Segoe UI Variable Text", Aptos, "Segoe UI", Arial, sans-serif;
  --shadow-sm: 0 10px 32px rgba(22, 46, 37, .07);
  --shadow-lg: 0 24px 68px rgba(18, 43, 34, .13);
  --radius: 13px;
  --cognac: #955d2d;
  --wood: #56341f;
  --cream: #fbf8f1;
}

body,
.home-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(196, 147, 73, .09), transparent 27rem),
    radial-gradient(circle at 92% 36%, rgba(31, 85, 65, .045), transparent 34rem),
    var(--paper);
}

/* Kopfbereich und Navigation */
header {
  min-height: 90px;
  border-bottom: 1px solid rgba(86, 52, 31, .18);
  background: rgba(251, 248, 241, .97);
  box-shadow: 0 8px 28px rgba(18, 43, 34, .055);
}

.header-logo-left {
  padding: 4px;
  border: 1px solid #cdb992;
  border-radius: 2px;
  outline: 3px solid rgba(255, 255, 255, .72);
  outline-offset: -4px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(55, 40, 26, .09);
}

.nav a { color: #405049; }
.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] { color: var(--green-950); }
.nav a::after {
  right: 9px;
  bottom: 4px;
  left: 9px;
  height: 2px;
  background: linear-gradient(90deg, var(--cognac), var(--gold-500));
}

.menu {
  border: 1px solid var(--green-800);
  border-radius: 8px;
  color: var(--green-950);
  background: rgba(255, 255, 255, .54);
}

.music-bar {
  min-height: 50px;
  border-bottom: 1px solid rgba(196, 147, 73, .5);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(196, 147, 73, .06), transparent 33%, rgba(196, 147, 73, .05)),
    var(--green-950);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.music-bar::before { background: linear-gradient(90deg, transparent, rgba(196, 147, 73, .08), transparent); }
.music-button {
  border-color: rgba(224, 183, 111, .82);
  border-radius: 7px;
  background: rgba(255, 255, 255, .02);
}
.music-button:hover,
.music-button.playing { color: var(--green-950); background: #d4a45b; }

/* Typografie und Seitenköpfe */
.eyebrow {
  margin-bottom: 13px;
  color: var(--cognac);
  letter-spacing: .19em;
}

.pagehead {
  padding-top: clamp(62px, 6vw, 82px);
  padding-bottom: 43px;
  border-bottom-color: #d5c8b4;
}

.pagehead::after {
  width: 88px;
  height: 3px;
  background: linear-gradient(90deg, var(--cognac) 0 72%, var(--gold-500) 72%);
}

.pagehead h1,
.intro h2,
.legal h1,
.hours h2,
.cta h2,
.home-copy h1 {
  color: var(--green-950);
}

.pagehead h1,
.legal h1 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.01;
}

.pagehead > p:not(.eyebrow) {
  max-width: 780px;
  color: #5e6964;
  line-height: 1.62;
}

/* Startseite */
.home-hero {
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 5.6vw, 82px);
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(72px, 8vw, 108px);
}

.home-copy h1 {
  font-size: clamp(50px, 4.7vw, 66px);
  line-height: .98;
}

.home-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: #5e6964;
  line-height: 1.68;
}

.hero-slider {
  border: 1px solid #9f825e;
  border-radius: 11px;
  background: #10271f;
  box-shadow: 0 26px 70px rgba(18, 43, 34, .17);
}

.hero-slider::after {
  box-shadow:
    inset 0 0 0 5px rgba(255, 253, 248, .15),
    inset 0 0 0 6px rgba(86, 52, 31, .2);
}

.slide-arrow {
  width: 40px;
  height: 40px;
  border-color: rgba(255, 255, 255, .56);
  border-radius: 7px;
  background: rgba(6, 28, 22, .74);
}

.slide-dots {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  background: rgba(6, 28, 22, .72);
}

.slide-dots button { width: 8px; height: 8px; }

/* Schaltflächen */
.location-tour-links a,
.btn {
  min-height: 49px;
  padding: 12px 21px;
  border: 1px solid var(--green-800);
  border-radius: 7px;
  color: #fff;
  background: var(--green-800);
  box-shadow: 0 7px 18px rgba(18, 58, 46, .11);
}

.location-tour-links a:hover,
.btn:hover {
  color: var(--green-950);
  border-color: #b98b49;
  background: #fffdf8;
}

.btn-secondary {
  color: var(--green-950);
  border-color: #bfae95;
  background: rgba(255, 253, 250, .72);
  box-shadow: none;
}

/* Inhaltselemente und Karten */
.event-details article,
.location-copy,
.contact-address-only,
.contact-email-card,
.faq-item,
.cards article,
.grid-events article,
.facts > *,
.ice-menu-section,
.poster-grid figure {
  border-color: #d6c9b6;
  border-radius: 11px;
  background: rgba(255, 253, 250, .9);
  box-shadow: var(--shadow-sm);
}

.event-details article {
  padding: clamp(32px, 3.8vw, 48px);
}

.event-details article:not(:last-child)::before { color: var(--cognac); }
.event-details h2,
.ice-menu-section h2,
.contact-address-only strong,
.legal h2,
.faq-item summary,
.poster-grid figcaption { color: var(--green-950); }

.event-details article:first-child {
  border-top: 3px solid var(--gold-500);
  background:
    linear-gradient(120deg, rgba(196, 147, 73, .075), transparent 45%),
    rgba(255, 253, 250, .94);
}

.event-details article:last-child {
  width: min(100%, 1020px);
  justify-self: center;
  padding: clamp(48px, 6vw, 72px);
  border: 1px solid rgba(196, 147, 73, .58);
  border-top: 4px solid var(--gold-500);
  border-radius: 11px;
  color: rgba(255, 255, 255, .81);
  background:
    radial-gradient(circle at 88% 0, rgba(196, 147, 73, .15), transparent 22rem),
    var(--green-950);
  box-shadow: 0 24px 64px rgba(18, 43, 34, .15);
}

.event-details article:last-child h2 {
  max-width: 790px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.07;
}

.event-details article:last-child p {
  max-width: 740px;
  font-size: 17px;
  line-height: 1.72;
}

.wide-image,
.ice-hero {
  padding: 7px;
  border: 1px solid #c8b89f;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.wide-image img,
.ice-hero img { border-radius: 7px; }

.location-copy {
  border-left: 4px solid var(--gold-500);
  border-radius: 4px 11px 11px 4px;
}

.saal-facts article {
  border: 1px solid rgba(196, 147, 73, .3);
  border-top: 3px solid var(--gold-500);
  border-radius: 8px;
  color: rgba(255, 255, 255, .69);
  background: var(--green-950);
  box-shadow: 0 13px 28px rgba(18, 43, 34, .1);
}

.saal-facts .fact-icon { color: #d2a35c; }

/* Bilder, Galerie und Gastronomie */
.poster-grid figure {
  padding: 8px;
}

.poster-grid img,
.drink-grid img,
.gallery-grid img {
  padding: 6px;
  border: 1px solid #cdbda6;
  border-radius: 8px;
  outline: none;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 43, 34, .08);
}

.poster-grid img,
.drink-grid img { border-radius: 7px; }

.poster-grid figure:hover,
.gallery-grid img:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 38px rgba(18, 43, 34, .12);
}

.ice-page {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .66), transparent 34rem),
    var(--paper);
}

.ice-intro h1 { color: var(--green-950); }
.ice-intro p { color: var(--cognac); }

/* Weihnachten und Bild/Text-Aufteilungen */
.split,
.feature {
  border: 1px solid #cdbda6;
  border-radius: 11px;
  box-shadow: var(--shadow-lg);
}

.split > div,
.feature > div {
  color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 100% 0, rgba(196, 147, 73, .14), transparent 19rem),
    var(--green-950);
}

.split h1,
.split h2,
.feature h1,
.feature h2 { color: #fff; }

.split .btn,
.faq-callout .btn {
  color: var(--green-950);
  border-color: #d5a55d;
  background: #d5a55d;
  box-shadow: none;
}

/* Kontakt, FAQ und Rechtliches */
.contact-address-only,
.contact-email-card {
  border-left: 5px solid var(--gold-500);
  border-radius: 4px 11px 11px 4px;
}

.faq-list { gap: 12px; }
.faq-item { overflow: clip; }
.faq-item[open] {
  border-color: #c9a46e;
  box-shadow: 0 13px 34px rgba(18, 43, 34, .09);
}

.faq-item summary {
  padding-top: 21px;
  padding-bottom: 21px;
}

.faq-item summary::after {
  border: 1px solid #cfb98f;
  border-radius: 6px;
  color: var(--green-950);
  background: #f2e5cf;
}

.faq-answer { color: #53605a; }

.faq-callout {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(46px, 6vw, 68px);
  border: 1px solid rgba(196, 147, 73, .55);
  border-top: 4px solid var(--gold-500);
  border-radius: 11px;
  color: rgba(255, 255, 255, .81);
  background:
    radial-gradient(circle at 88% 0, rgba(196, 147, 73, .15), transparent 20rem),
    var(--green-950);
  box-shadow: 0 24px 64px rgba(18, 43, 34, .14);
}

.faq-callout h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
}

.legal {
  max-width: 880px;
}

.legal h2 {
  padding-top: 4px;
  border-top: 1px solid transparent;
}

/* Abschlussbereiche */
.cta,
.hours {
  border-top: 1px solid #ded3c3;
  border-bottom: 1px solid #ded3c3;
  background:
    linear-gradient(90deg, rgba(196, 147, 73, .045), transparent 36%, rgba(196, 147, 73, .045)),
    var(--paper-deep);
}

.textlink { color: var(--green-800); }

footer {
  border-top: 4px solid var(--gold-500);
  color: rgba(255, 255, 255, .67);
  background:
    radial-gradient(circle at 78% -30%, rgba(196, 147, 73, .12), transparent 25rem),
    var(--green-1000);
  box-shadow: inset 0 1px rgba(255, 255, 255, .03);
}

footer strong,
.footer-contact-title { color: #fff; }
footer a { color: #d6aa66; }
.footer-partner { color: rgba(255, 255, 255, .43); }
.footer-partner a { color: rgba(255, 255, 255, .69); }

/* Tablet und Mobil */
@media (max-width: 920px) {
  .nav {
    border: 1px solid #d4c6b2;
    border-radius: 0 0 11px 11px;
    background: rgba(251, 248, 241, .995);
    box-shadow: 0 20px 48px rgba(18, 43, 34, .14);
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 640px) {
  header { min-height: 76px; }
  .header-logo-left { outline-width: 2px; outline-offset: -3px; }

  .pagehead { padding-top: 49px; padding-bottom: 35px; }
  .pagehead h1,
  .legal h1 { font-size: clamp(35px, 10.2vw, 47px); }

  .home-hero {
    gap: 34px;
    padding-top: 48px;
  }

  .home-copy h1 {
    font-size: clamp(40px, 11.1vw, 51px);
  }

  .hero-slider { border-radius: 9px; }
  .slide-arrow { border-radius: 6px; }
  .slide-dots { border-radius: 6px; }

  .event-details article,
  .event-details article:last-child {
    padding: 29px 22px;
    border-radius: 9px;
  }

  .event-details article:last-child {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .event-details article:last-child h2 {
    font-size: clamp(31px, 9.2vw, 39px);
  }

  .event-details article:last-child p { font-size: 16px; }

  .wide-image,
  .ice-hero,
  .split,
  .feature,
  .faq-callout { border-radius: 9px; }

  .location-copy,
  .contact-address-only,
  .contact-email-card { border-radius: 4px 9px 9px 4px; }

  .faq-callout {
    padding: 39px 22px;
  }

  .faq-callout h2 {
    font-size: clamp(31px, 9.4vw, 39px);
  }
}
