@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--c-night);
  color: var(--c-cream);
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ---------- Layout shell incl. ad slots ---------- */
.page-shell {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.page-main { flex: 1; min-width: 0; }

.ad-rail { width: 160px; flex-shrink: 0; position: sticky; top: 16px; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 900px) { .ad-rail { display: none; } }

.ad-band { width: 100%; display: flex; justify-content: center; padding: 10px 16px; }
.ad-band-top { border-bottom: 1px solid rgba(247,244,239,0.1); }
.ad-band-bottom { border-top: 1px solid rgba(247,244,239,0.1); margin-top: 32px; }

.ad-slot img { max-width: 100%; border-radius: 10px; display: block; }
.ad-slot-html { font-size: 13px; color: rgba(247,244,239,0.6); }

/* ---------- Navbar ---------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(247,244,239,0.12);
  margin-bottom: 4px;
}
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-badge {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--c-coral); color: var(--c-night);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 14px;
}
.brand-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 13px 24px; font-weight: 700; font-size: 14.5px;
  cursor: pointer; border: none; text-decoration: none;
}
.btn-primary { background: var(--c-coral); color: var(--c-night); }
.btn-secondary { background: transparent; border: 1px solid rgba(247,244,239,0.18); color: var(--c-cream); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Event grid (Startseite) ---------- */
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; margin-top: 24px; }
.event-card {
  background: #1B2140; border: 1px solid rgba(247,244,239,0.12); border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.event-card-cover { height: 110px; }
.event-card-body { padding: 14px 16px 16px; }
.event-card-title { font-size: 15px; font-weight: 700; line-height: 1.3; }
.event-card-meta { font-size: 12.5px; color: rgba(247,244,239,0.55); margin-top: 6px; }

/* ---------- Event detail / ticket tiers ---------- */
.event-cover { height: 180px; border-radius: 16px; margin: 12px 0 20px; }
.event-meta-line { font-size: 14px; color: rgba(247,244,239,0.75); margin-bottom: 4px; }
.event-blurb { font-size: 15px; line-height: 1.6; color: rgba(247,244,239,0.7); margin: 16px 0; }

.tier-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.tier-card {
  background: #1B2140; border: 1px solid rgba(247,244,239,0.12); border-radius: 14px;
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.tier-name { font-weight: 700; font-size: 15px; }
.tier-desc { font-size: 12.5px; color: rgba(247,244,239,0.55); margin-top: 2px; }
.tier-left { font-size: 12px; font-weight: 600; margin-top: 4px; }
.tier-left.low { color: var(--c-coral); }
.tier-left.ok { color: var(--c-green); }
.tier-price { font-weight: 700; font-size: 15px; }

.qty-input { width: 60px; padding: 8px; border-radius: 8px; border: 1px solid rgba(247,244,239,0.18); background: var(--c-night); color: var(--c-cream); text-align: center; }

/* ---------- Checkout ---------- */
.checkout-card { background: #1B2140; border: 1px solid rgba(247,244,239,0.12); border-radius: 14px; padding: 16px; margin-bottom: 22px; }
.form-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(247,244,239,0.8); margin-bottom: 14px; }
.form-field input, .form-field select {
  background: #1B2140; border: 1px solid rgba(247,244,239,0.18); border-radius: 10px;
  padding: 12px 14px; color: var(--c-cream); font-size: 15px; outline: none; font-family: inherit;
}
.form-field input:focus { border-color: var(--c-coral); }

/* ---------- Misc ---------- */
.notice { border-radius: 10px; padding: 12px 14px; font-size: 13.5px; margin-bottom: 16px; }
.notice-error { background: rgba(255,93,115,0.12); border: 1px solid rgba(255,93,115,0.4); color: #FFD3D9; }
.notice-success { background: rgba(31,122,92,0.15); border: 1px solid rgba(31,122,92,0.5); color: #B7E3D2; }

.site-footer { text-align: center; font-size: 12px; color: rgba(247,244,239,0.4); padding: 24px 16px; }

.back-link { display: inline-block; font-size: 14px; color: rgba(247,244,239,0.6); text-decoration: none; margin: 14px 0; }

/* ---------- Landingpage: Hero ---------- */
.hero { padding: 40px 4px 8px; }
.hero-eyebrow {
  font-size: 13px; font-weight: 700; color: var(--c-mustard);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px;
}
.hero-title { font-size: clamp(30px, 6.5vw, 48px); line-height: 1.06; letter-spacing: -0.01em; }
.hero-title em { color: var(--c-coral); font-style: normal; }
.hero-subtext {
  font-size: 16.5px; line-height: 1.6; color: rgba(247,244,239,0.72);
  margin: 18px 0 0; max-width: 560px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Landingpage: Section header ---------- */
.section-head { margin: 64px 4px 22px; max-width: 620px; }
.section-eyebrow {
  font-size: 12.5px; font-weight: 700; color: var(--c-mustard);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px;
}
.section-title { font-size: clamp(22px, 4vw, 28px); line-height: 1.15; }
.section-sub { font-size: 14.5px; color: rgba(247,244,239,0.6); margin-top: 10px; line-height: 1.55; }

/* ---------- Landingpage: Zielgruppen ---------- */
.audience-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px; padding: 0 4px;
}
.audience-card {
  background: #1B2140; border: 1px solid rgba(247,244,239,0.12); border-radius: 16px;
  padding: 20px 18px;
}
.audience-icon {
  width: 40px; height: 40px; border-radius: 11px; background: rgba(255,93,115,0.14);
  color: var(--c-coral); display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.audience-card:nth-child(2) .audience-icon { background: rgba(232,184,75,0.14); color: var(--c-mustard); }
.audience-card:nth-child(3) .audience-icon { background: rgba(31,122,92,0.16); color: var(--c-green); }
.audience-card:nth-child(4) .audience-icon { background: rgba(255,93,115,0.14); color: var(--c-coral); }
.audience-card:nth-child(5) .audience-icon { background: rgba(232,184,75,0.14); color: var(--c-mustard); }
.audience-title { font-weight: 700; font-size: 15px; margin-bottom: 5px; }
.audience-text { font-size: 13px; line-height: 1.5; color: rgba(247,244,239,0.6); }

/* ---------- Landingpage: Ticket-Showcase ---------- */
.showcase { padding: 8px 4px 0; display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.showcase-copy { flex: 1 1 320px; min-width: 280px; }
.showcase-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 12px; }
.showcase-list li { display: flex; gap: 10px; font-size: 14.5px; color: rgba(247,244,239,0.78); line-height: 1.4; }
.showcase-check {
  width: 20px; height: 20px; border-radius: 50%; background: rgba(31,122,92,0.2); color: var(--c-green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.showcase-visual { flex: 0 1 340px; min-width: 260px; }

.ticket-mock {
  background: var(--c-cream); color: #0B0E1C; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.ticket-mock-top { padding: 20px 20px 16px; background: linear-gradient(135deg, var(--c-coral), var(--c-mustard), var(--c-green)); }
.ticket-mock-host { font-size: 11.5px; font-weight: 700; color: rgba(11,14,28,0.7); text-transform: uppercase; letter-spacing: .07em; }
.ticket-mock-title { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; margin-top: 6px; }
.ticket-mock-perf {
  height: 0; border-top: 2px dashed rgba(11,14,28,0.18); position: relative; margin: 0 20px;
}
.ticket-mock-bottom { padding: 18px 20px 20px; display: flex; justify-content: space-between; align-items: flex-end; }
.ticket-mock-date { font-size: 11.5px; color: rgba(11,14,28,0.55); font-weight: 600; }
.ticket-mock-loc { font-size: 13px; font-weight: 700; margin-top: 2px; }
.ticket-mock-qr {
  width: 44px; height: 44px; border-radius: 8px;
  background: repeating-linear-gradient(45deg, #0B0E1C, #0B0E1C 2px, transparent 2px, transparent 4px);
}

/* ---------- Landingpage: Vorteile ---------- */
.benefit-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; padding: 0 4px;
}
.benefit-card { padding: 4px 2px; }
.benefit-icon {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(247,244,239,0.08);
  color: var(--c-cream); display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.benefit-title { font-weight: 700; font-size: 15px; margin-bottom: 5px; }
.benefit-text { font-size: 13.5px; line-height: 1.55; color: rgba(247,244,239,0.6); }

/* ---------- Landingpage: Ablauf-Schritte ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; padding: 0 4px; }
.step-card { position: relative; }
.step-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--c-night);
  background: var(--c-mustard); width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step-title { font-weight: 700; font-size: 15.5px; margin-bottom: 6px; }
.step-text { font-size: 13.5px; line-height: 1.55; color: rgba(247,244,239,0.6); }

/* ---------- Landingpage: CTA-Banner ---------- */
.cta-banner {
  margin: 64px 4px 8px; padding: 36px 28px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,93,115,0.16), rgba(232,184,75,0.12));
  border: 1px solid rgba(255,93,115,0.25);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cta-banner-title { font-size: clamp(19px, 3vw, 24px); max-width: 420px; }
.cta-banner-sub { font-size: 13.5px; color: rgba(247,244,239,0.65); margin-top: 6px; }

.events-anchor { scroll-margin-top: 20px; }
