/* ============================================================
   STADTHALLE HOLZKIRCHEN — styles.css
   Elegant · Festlich · Modern
   ============================================================ */

/* --- TOKENS ------------------------------------------------ */
:root {
  --void:       #0c0a14;
  --deep:       #1a1430;
  --purple:     #2d1f55;
  --purple-mid: #4a3580;
  --gold:       #c8a040;
  --gold-lt:    #e0bc6a;
  --gold-dim:   rgba(200,160,64,0.2);
  --cream:      #faf8f4;
  --cream-dk:   #f2ede4;
  --text:       #1a1530;
  --text-mid:   #4a4565;
  --text-lt:    #8a87a0;
  --line:       rgba(26,20,48,0.12);
  --line-pale:  rgba(255,255,255,0.1);
  --white:      #ffffff;
  --shadow-sm:  0 2px 10px rgba(26,20,48,0.10);
  --shadow-md:  0 8px 32px rgba(26,20,48,0.16);
  --radius:     6px;
  --radius-lg:  12px;
  --trans:      0.25s ease;
  --header-h:   68px;
  --max-w:      1140px;
  --font-d:     'DM Serif Display', Georgia, serif;
  --font-b:     'DM Sans', system-ui, sans-serif;
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--cream); color: var(--text); line-height: 1.7; }
a { color: inherit; text-decoration: none; transition: color var(--trans); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

/* --- HEADER ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: var(--void);
  border-bottom: 1px solid var(--line-pale);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-emblem {
  color: var(--gold); font-size: 1.4rem; line-height: 1;
  filter: drop-shadow(0 0 8px rgba(200,160,64,0.5));
}
.logo-name {
  font-family: var(--font-d); font-size: 1.15rem; color: var(--white);
  line-height: 1.15; font-style: italic;
}
.logo-sub {
  display: block; font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.4rem 0.8rem; font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.6); border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.nav-link:hover, .nav-link.active {
  color: var(--white); background: rgba(255,255,255,0.08);
}
.header-cta {
  margin-left: 0.75rem; padding: 0.45rem 1.1rem;
  background: var(--gold); color: var(--void);
  font-size: 0.8rem; font-weight: 600; border-radius: var(--radius);
  transition: background var(--trans); white-space: nowrap; flex-shrink: 0;
}
.header-cta:hover { background: var(--gold-lt); color: var(--void); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.burger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: var(--trans); }

/* --- HERO -------------------------------------------------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    var(--hero-grad, linear-gradient(160deg, rgba(12,10,20,0.8), rgba(30,20,55,0.6))),
    var(--hero-img, none),
    var(--void);
  background-size: cover; background-position: center;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 2rem 3rem;
  width: 100%; max-width: 700px;
  padding-left: max(2rem, calc((100vw - var(--max-w)) / 2 + 2rem));
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1.5rem;
}
.eyebrow-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px rgba(200,160,64,0.6);
}
.hero-title {
  font-family: var(--font-d); font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.75);
  max-width: 520px; line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  padding: 0.8rem 1.9rem; background: var(--gold); color: var(--void);
  font-weight: 600; font-size: 0.88rem; border-radius: var(--radius);
  transition: background var(--trans);
}
.btn-primary:hover { background: var(--gold-lt); }
.btn-full { display: block; text-align: center; width: 100%; margin-top: 1.25rem; }
.btn-ghost {
  padding: 0.8rem 1.9rem; border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white); font-size: 0.88rem; font-weight: 500; border-radius: var(--radius);
  transition: border-color var(--trans), background var(--trans);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(200,160,64,0.08); color: var(--gold-lt); }
.hero-facts {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(12,10,20,0.7); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,160,64,0.2); padding: 1.5rem 2rem;
}
.fact { text-align: center; padding: 0 3rem; }
.fact-num {
  display: block; font-family: var(--font-d); font-size: 2.2rem;
  font-style: italic; color: var(--gold-lt); line-height: 1.1;
}
.fact-label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
.fact-divider { width: 1px; height: 48px; background: rgba(200,160,64,0.25); }

/* --- SECTIONS COMMON -------------------------------------- */
.section { padding: 5.5rem 0; }
.section-light { background: var(--cream); }
.section-alt { background: var(--cream-dk); }
.section-dark { background: var(--void); }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-d); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400; font-style: italic; line-height: 1.25; margin-bottom: 0.75rem;
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub, .section-dark .section-eyebrow { color: rgba(255,255,255,0.55); }
.section-dark .section-eyebrow { color: var(--gold); }
.section-sub { font-size: 0.98rem; color: var(--text-mid); line-height: 1.8; }

/* --- EVENTS ----------------------------------------------- */
.events-list { display: flex; flex-direction: column; gap: 2px; }
.event-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 2rem; padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-pale);
  border-radius: var(--radius); transition: background var(--trans);
}
.event-row:hover { background: rgba(255,255,255,0.07); }
.event-date {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; line-height: 1;
}
.ev-day {
  font-family: var(--font-d); font-size: 2.2rem; font-style: italic;
  color: var(--gold-lt); line-height: 1;
}
.ev-mon {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 2px;
}
.event-cat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem;
  display: block;
}
.event-title {
  font-family: var(--font-d); font-size: 1.1rem; font-weight: 400; font-style: italic;
  color: var(--white); margin-bottom: 0.45rem; line-height: 1.3;
}
.event-detail {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.event-detail i { color: var(--gold); width: 12px; }
.event-action { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; flex-shrink: 0; }
.event-status {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 99px;
}
.event-status.avail { background: rgba(50,160,80,0.15); color: #6dd88a; border: 1px solid rgba(50,160,80,0.25); }
.event-status.few   { background: rgba(200,160,64,0.15); color: var(--gold-lt); border: 1px solid var(--gold-dim); }
.event-status.sold  { background: rgba(180,40,40,0.15); color: #e88; border: 1px solid rgba(180,40,40,0.25); }
.btn-event {
  padding: 0.4rem 1rem; background: var(--gold); color: var(--void);
  font-size: 0.78rem; font-weight: 600; border-radius: var(--radius);
  transition: background var(--trans); white-space: nowrap;
}
.btn-event:hover { background: var(--gold-lt); }
.btn-event--disabled {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.3);
  cursor: default; pointer-events: none;
}

/* --- RÄUME ------------------------------------------------- */
.raeume-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto; gap: 1.5rem;
}
.raum-card--featured { grid-column: span 3; display: grid; grid-template-columns: 1.4fr 1fr; }
.raum-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
  display: flex; flex-direction: column;
}
.raum-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.raum-card--featured:hover { transform: none; }
.raum-photo {
  background:
    var(--raum-grad, linear-gradient(160deg, rgba(12,10,20,0.5), rgba(30,20,55,0.3))),
    var(--raum-img, none),
    var(--deep);
  background-size: cover; background-position: center;
  min-height: 280px;
}
.raum-card:not(.raum-card--featured) .raum-photo { height: 180px; min-height: unset; }
.raum-info { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; justify-content: center; }
.raum-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-dim);
  padding: 0.2rem 0.65rem; border-radius: 99px; margin-bottom: 0.85rem; width: fit-content;
}
.raum-name {
  font-family: var(--font-d); font-size: 1.4rem; font-style: italic;
  color: var(--text); margin-bottom: 0.75rem;
}
.raum-card--featured .raum-name { font-size: 1.9rem; }
.raum-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.raum-specs { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.spec { font-size: 0.78rem; font-weight: 500; color: var(--text-mid); display: flex; align-items: center; gap: 0.4rem; }
.spec i { color: var(--gold); width: 14px; text-align: center; }

/* --- GALERIE STRIP ---------------------------------------- */
.galerie-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); height: 280px;
}
.galerie-item {
  position: relative; overflow: hidden; cursor: pointer;
  background:
    var(--g-grad, linear-gradient(rgba(12,10,20,0.4), rgba(12,10,20,0.6))),
    var(--g-img, none),
    var(--deep);
  background-size: cover; background-position: center;
  transition: transform var(--trans);
}
.galerie-item:hover { transform: scale(1.03); z-index: 1; }
.g-label {
  position: absolute; bottom: 1.1rem; left: 1.25rem;
  font-family: var(--font-d); font-style: italic; font-size: 1.05rem;
  color: var(--white); text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* --- TECHNIK ----------------------------------------------- */
.technik-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.tech-block {
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-pale);
  border-radius: var(--radius-lg);
}
.tech-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--gold-dim); border: 1px solid rgba(200,160,64,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); font-size: 1.05rem; margin-bottom: 1.1rem;
}
.tech-block h3 {
  font-family: var(--font-d); font-style: italic; font-size: 1.05rem;
  color: var(--white); margin-bottom: 1rem;
}
.tech-block ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.tech-block li {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  padding-left: 0.9rem; position: relative; line-height: 1.45;
}
.tech-block li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-size: 0.65rem; line-height: 1.8;
}

/* --- MIETEN ----------------------------------------------- */
.mieten-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.mieten-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.miet-card {
  padding: 1.6rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans);
}
.miet-card:hover { box-shadow: var(--shadow-md); }
.miet-icon {
  width: 42px; height: 42px; background: var(--gold-dim);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 1rem; margin-bottom: 1rem;
}
.miet-card h3 { font-family: var(--font-d); font-style: italic; font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; }
.miet-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
.mieten-contact-box {
  background: var(--deep); border: 1px solid rgba(200,160,64,0.25);
  border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1rem;
}
.mcb-title { font-family: var(--font-d); font-style: italic; font-size: 1.25rem; color: var(--white); margin-bottom: 0.4rem; }
.mcb-sub { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; line-height: 1.6; }
.mcb-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.85rem; }
.mcb-detail i { color: var(--gold); width: 14px; text-align: center; margin-top: 0.15rem; flex-shrink: 0; }
.mcb-detail a { color: rgba(255,255,255,0.8); }
.mcb-detail a:hover { color: var(--gold-lt); }
.mcb-detail span, .mcb-detail { color: rgba(255,255,255,0.7); }
.mieten-note {
  display: flex; gap: 0.75rem; padding: 1rem 1.1rem;
  background: rgba(200,160,64,0.06); border: 1px solid var(--gold-dim);
  border-radius: var(--radius); font-size: 0.8rem; color: var(--text-mid); line-height: 1.65;
}
.mieten-note i { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }

/* --- KONTAKT ---------------------------------------------- */
.kontakt-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.kd-block { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--line); }
.kd-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.kd-block h3 { font-family: var(--font-d); font-style: italic; font-size: 1.05rem; color: var(--text); margin-bottom: 0.6rem; }
.kd-block address { font-size: 0.92rem; color: var(--text-mid); line-height: 2; }
.kd-row { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 0.6rem; font-size: 0.9rem; }
.kd-row i { color: var(--gold); width: 14px; text-align: center; margin-top: 0.18rem; flex-shrink: 0; }
.kd-row a:hover { color: var(--purple-mid); }
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td { padding: 0.4rem 0; font-size: 0.87rem; border-bottom: 1px solid var(--line); color: var(--text-mid); }
.hours-table td:last-child { text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }
.kontakt-anfahrt {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 360px; border: 1px solid var(--line);
  background:
    var(--anfahrt-grad, rgba(12,10,20,0.45)),
    var(--anfahrt-img, none),
    var(--deep);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.anfahrt-overlay {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  background: rgba(12,10,20,0.6); border: 1px solid rgba(200,160,64,0.25);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem; text-align: center;
  backdrop-filter: blur(8px);
}
.anfahrt-pin { font-size: 2rem; color: var(--gold); }
.anfahrt-overlay p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* --- FOOTER ----------------------------------------------- */
.site-footer { background: var(--void); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line-pale); }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-emblem { font-size: 1.8rem; color: var(--gold); filter: drop-shadow(0 0 6px rgba(200,160,64,0.4)); }
.footer-name { font-family: var(--font-d); font-style: italic; font-size: 1.1rem; color: var(--white); }
.footer-sub { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.25rem; }
.footer-cols { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: var(--gold-lt); }
.footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.2); }
.footer-copy a { color: rgba(200,160,64,0.5); }
.footer-copy a:hover { color: var(--gold-lt); }

/* --- BESCAPE DISCLAIMER ------------------------------------ */
.escape-disclaimer { background: #030303; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.escape-disclaimer__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.65;
  font-family: var(--font-b);
}
.escape-disclaimer__inner i { color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 0.14rem; }
.escape-disclaimer__inner strong { font-weight: 600; color: rgba(255,255,255,0.6); }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.3); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* --- FADE-IN ----------------------------------------------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .raeume-grid { grid-template-columns: 1fr 1fr; }
  .raum-card--featured { grid-column: span 2; }
  .technik-grid { grid-template-columns: 1fr 1fr; }
  .mieten-layout { grid-template-columns: 1fr; }
  .mieten-contact-box, .mieten-note { max-width: 480px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--void); padding: 2rem; gap: 0.5rem;
    z-index: 199; border-top: 1px solid var(--line-pale);
  }
  .site-nav.open .nav-link { padding: 0.75rem 1rem; font-size: 1rem; color: rgba(255,255,255,0.8); }
  .header-cta { display: none; }
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-facts { position: relative; flex-wrap: wrap; gap: 0; }
  .fact { padding: 1rem 1.5rem; }
  .fact-divider { display: none; }
  .raeume-grid, .raum-card--featured { grid-template-columns: 1fr; grid-column: span 1; }
  .galerie-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .galerie-item { height: 160px; }
  .technik-grid { grid-template-columns: 1fr; }
  .mieten-cards { grid-template-columns: 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 60px 1fr; }
  .event-action { grid-column: span 2; flex-direction: row; justify-content: flex-start; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .galerie-strip { grid-template-columns: 1fr; }
  .galerie-item { height: 180px; }
}
