/* Trapmann Eventgestaltung — Shared Styles */

html, body { margin: 0; padding: 0; background: #08090b; }
*, *::before, *::after { box-sizing: border-box; }
::selection { background: oklch(0.83 0.15 200 / 0.35); color: #fff; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(8,9,11,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1; gap: 3px; }
.logo-name {
  font-family: Syne, sans-serif; font-weight: 800; font-size: 21px;
  letter-spacing: 0.04em; color: #f4f5f7; display: flex; align-items: center; gap: 6px;
}
.logo-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: oklch(0.83 0.15 200); box-shadow: 0 0 12px oklch(0.83 0.15 200);
}
.logo-sub {
  font-family: Manrope, sans-serif; font-weight: 600; font-size: 9.5px;
  letter-spacing: 0.42em; color: #7b818c; text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav-link {
  text-decoration: none; font-family: Manrope, sans-serif; font-size: 15px;
  font-weight: 600; letter-spacing: 0.01em; color: #9aa0aa; transition: color .2s; white-space: nowrap;
}
.nav-link:hover { color: #ffffff; }
.nav-link.active { color: #eafcff; text-shadow: 0 0 18px oklch(0.83 0.15 200 / 0.7); }
.nav-btn {
  font-family: Manrope, sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  text-decoration: none; color: oklch(0.88 0.13 200); padding: 9px 20px;
  border: 1px solid oklch(0.6 0.12 200 / 0.55); border-radius: 100px;
  background: oklch(0.83 0.15 200 / 0.07); transition: all .25s; white-space: nowrap;
}
.nav-btn:hover {
  background: oklch(0.83 0.15 200 / 0.16);
  box-shadow: 0 0 22px oklch(0.83 0.15 200 / 0.4);
  border-color: oklch(0.83 0.15 200 / 0.8);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #f4f5f7; border-radius: 2px; }
.hamburger span:last-child { width: 18px; background: oklch(0.83 0.15 200); }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: rgba(8,9,11,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px clamp(18px,4vw,48px) 30px; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: Manrope, sans-serif; font-weight: 600; font-size: 18px;
  color: #cfd3da; text-decoration: none; padding: 13px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:last-child { font-weight: 700; color: oklch(0.88 0.13 200); border-bottom: none; }
@media (max-width: 900px) {
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero base ── */
.page-hero {
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
  min-height: clamp(460px, 74vh, 680px);
}
.page-hero img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(18px,5vw,72px) clamp(40px,6vw,72px);
}
.hero-wordmark {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px;
}
.hero-wordmark-name {
  font-family: Syne,sans-serif; font-weight: 800; font-size: 17px;
  letter-spacing: 0.05em; color: #eef1f4; display: flex; align-items: center; gap: 6px;
}
.hero-wordmark-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.hero-wordmark-sub {
  font-family: Manrope,sans-serif; font-weight: 600; font-size: 9px;
  letter-spacing: 0.42em; color: #aab0b9; text-transform: uppercase;
}
.hero-eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 16px;
}
.page-hero h1 {
  font-family: Syne,sans-serif; font-weight: 800;
  font-size: clamp(40px,7vw,84px); line-height: 0.98;
  letter-spacing: -0.02em; margin: 0; color: #fff; max-width: 16ch;
}
.page-hero p.hero-sub {
  font-size: clamp(16px,2vw,20px); line-height: 1.55; color: #c7ccd4;
  margin: 22px 0 0; max-width: 640px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; text-decoration: none; color: #04181a;
  background: linear-gradient(100deg, oklch(0.86 0.14 200), oklch(0.88 0.16 165));
  padding: 16px 32px; border-radius: 100px;
  box-shadow: 0 0 34px oklch(0.83 0.15 200 / 0.45);
  transition: transform .25s, box-shadow .25s;
  font-family: Manrope, sans-serif; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px oklch(0.83 0.15 200 / 0.7); }
.btn-amber {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; text-decoration: none; color: #1a0c02;
  background: linear-gradient(100deg, oklch(0.84 0.15 60), oklch(0.82 0.16 40));
  padding: 16px 32px; border-radius: 100px;
  box-shadow: 0 0 34px oklch(0.8 0.15 55 / 0.45);
  transition: transform .25s, box-shadow .25s; font-family: Manrope, sans-serif;
}
.btn-amber:hover { transform: translateY(-3px); box-shadow: 0 0 50px oklch(0.8 0.15 55 / 0.7); }
.btn-green {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; text-decoration: none; color: #04190f;
  background: linear-gradient(100deg, oklch(0.86 0.16 155), oklch(0.86 0.14 175));
  padding: 16px 32px; border-radius: 100px;
  box-shadow: 0 0 34px oklch(0.82 0.16 150 / 0.45);
  transition: transform .25s, box-shadow .25s; font-family: Manrope, sans-serif;
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 0 50px oklch(0.82 0.16 150 / 0.7); }

/* ── Eyebrow ── */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow-line { width: 28px; height: 1px; background: oklch(0.83 0.15 200); flex-shrink: 0; }
.eyebrow-text {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: oklch(0.85 0.13 200);
}

/* ── Section headings ── */
.section-h2 {
  font-family: Syne, sans-serif; font-weight: 800;
  font-size: clamp(28px,4.4vw,48px); line-height: 1.08;
  letter-spacing: -0.015em; margin: 0; color: #f4f6f8;
}
.section-h3 {
  font-family: Syne, sans-serif; font-weight: 800;
  font-size: clamp(24px,3.4vw,36px); line-height: 1.1;
  margin: 0; color: #f4f6f8;
}

/* ── Reveal ── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].visible { opacity: 1; transform: none; }

/* ── CTA section (subpages) ── */
.page-cta {
  padding: clamp(56px,8vw,110px) clamp(18px,5vw,48px);
  text-align: center;
}
.page-cta h2 {
  font-family: Syne,sans-serif; font-weight: 800;
  font-size: clamp(26px,4vw,44px); line-height: 1.1;
  margin: 0 0 18px; color: #f4f6f8;
}
.page-cta p {
  font-size: 17px; line-height: 1.65; color: #a7adb7;
  margin: 0 auto 32px; max-width: 520px;
}
.page-cta-inner { max-width: 760px; margin: 0 auto; }

/* ── Footer ── */
.site-footer {
  position: relative; background: #070809;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: clamp(48px,7vw,84px) clamp(18px,5vw,72px) 32px; overflow: hidden;
}
.footer-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 680px; height: 240px; pointer-events: none;
  background: radial-gradient(ellipse at center, oklch(0.83 0.15 200 / 0.14), transparent 70%);
}
.footer-grid {
  position: relative; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 44px 32px;
}
.footer-brand { grid-column: 1 / -1; max-width: 380px; }
.footer-logo { font-family: Syne, sans-serif; font-weight: 800; font-size: 24px; letter-spacing: 0.03em; color: #f4f5f7; display: flex; align-items: center; gap: 7px; }
.footer-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.83 0.15 200); box-shadow: 0 0 14px oklch(0.83 0.15 200); flex-shrink: 0; }
.footer-tagline { font-family: Manrope, sans-serif; font-weight: 600; font-size: 10px; letter-spacing: 0.42em; color: #7b818c; text-transform: uppercase; margin-top: 6px; }
.footer-desc { font-family: Manrope, sans-serif; font-size: 14.5px; line-height: 1.7; color: #8b9099; margin: 20px 0 0; }
.footer-col-title { font-family: Manrope,sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: oklch(0.85 0.13 200); margin-bottom: 18px; }
.footer-col a { display: block; font-family: Manrope,sans-serif; font-size: 15px; color: #aab0b9; text-decoration: none; padding: 7px 0; transition: color .2s; }
.footer-col a:hover { color: #ffffff; }
.footer-addr { font-family: Manrope,sans-serif; font-size: 15px; color: #aab0b9; padding: 7px 0; line-height: 1.5; }
.footer-cta-link { color: oklch(0.88 0.13 200) !important; font-weight: 600; display: inline-block !important; }
.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; transition: all .25s; text-decoration: none;
}
.social-btn:hover { border-color: oklch(0.83 0.15 200 / 0.8); box-shadow: 0 0 18px oklch(0.83 0.15 200 / 0.35); }
.footer-bottom {
  position: relative; max-width: 1180px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between;
}
.footer-copy { font-family: Manrope,sans-serif; font-size: 13px; color: #6b7079; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { font-family: Manrope,sans-serif; font-size: 13px; color: #8b9099; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #ffffff; }
