/* Brand */
:root{
  --gold:#ceaf6f;
  --coal:#1a1a1a;
  --text:#f7f7f7;
  --muted:#d8d8d8;
}

/* Reset-ish */
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Ubuntu,"Helvetica Neue",Arial,sans-serif;background:var(--coal);color:var(--text);}

/* Layout */
.theme{display:flex;flex-direction:column;justify-content:center;align-items:center;min-height:100dvh;position:relative;overflow:hidden}
.bg-split{
  position:absolute;inset:0;
  background:
    linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.92) 50%, rgba(206,175,111,0.95) 50.2%, rgba(206,175,111,0.95) 100%);
  z-index:-2;
}
.wrap{text-align:center;padding:4rem 1.5rem;max-width:900px;width:100%}

/* Logo */
.logo{width:min(320px,60vw);height:auto;filter:drop-shadow(0 10px 30px rgba(0,0,0,.35));margin-bottom:1.75rem}

/* Headline + Shine */
.headline{font-size:clamp(1.8rem,4vw,3rem);line-height:1.15;margin:0 auto;max-width:20ch;font-weight:800;letter-spacing:.2px}
.shine{
  background:linear-gradient(110deg,var(--text) 0%,var(--text) 30%,#ffffff 45%,var(--text) 60%,var(--text) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  animation:shine 3s linear infinite;
}
@keyframes shine{0%{background-position:-200% 0}100%{background-position:200% 0}}

.sub{margin:.875rem auto 2rem;color:var(--muted);max-width:38ch;font-size:clamp(1rem,1.6vw,1.125rem)}

/* CTA */
.cta{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:2rem}
.btn{
  display:inline-block;padding:.9rem 1.25rem;border-radius:999px;
  background:var(--gold);color:#111;text-decoration:none;font-weight:700;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.btn:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(0,0,0,.35)}
.link{color:var(--text);opacity:.85;text-decoration:none;border-bottom:1px solid rgba(247,247,247,.25);padding-bottom:2px}
.link:hover{opacity:1;border-color:var(--text)}

/* Eyecatcher: „Tickets/Print-Streifen“ */
.tickets{display:flex;gap:.5rem;justify-content:center;align-items:center}
.tickets span{
  width:56px;height:10px;border-radius:6px;background:rgba(0,0,0,.25);position:relative;overflow:hidden
}
.tickets span::after{
  content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent,rgba(255,255,255,.55),transparent);
  transform:translateX(-100%);animation:scan 2.6s ease-in-out infinite;
}
.tickets span:nth-child(2)::after{animation-delay:.2s}
.tickets span:nth-child(3)::after{animation-delay:.4s}
.tickets span:nth-child(4)::after{animation-delay:.6s}
.tickets span:nth-child(5)::after{animation-delay:.8s}
@keyframes scan{to{transform:translateX(100%)}}

/* Footer */
.foot{
  position:fixed;left:0;right:0;bottom:0;
  display:flex;justify-content:center;gap:1rem;padding:.75rem 1rem;
  font-size:.9rem;background:linear-gradient(to top, rgba(0,0,0,.35), transparent);
}
.foot a{color:var(--muted);text-decoration:none}
.foot a:hover{color:var(--text)}

/* Impressum page */
.legal .bg-split{display:none}
.legal .foot{position:static;background:none;justify-content:flex-start}
.legal-wrap{max-width:900px;margin:4rem auto;padding:0 1.25rem}
.legal h1{font-size:clamp(1.8rem,3.2vw,2.4rem);margin:.5rem 0 1.25rem}
.legal h2{font-size:1.125rem;margin:1.5rem 0 .5rem;color:var(--gold)}
.legal p, .legal li{color:#efefef;line-height:1.7}
.back{display:inline-block;margin:1rem 0 1rem;color:var(--gold);text-decoration:none}
.back:hover{text-decoration:underline}

/* Small screens */
@media (max-width:480px){
  .btn{width:100%}
}
