/* ============================================================
   2AM-EVENTS — Website
   Farbsystem identisch zu Portfolio, Flyer und Brand Kit
   ============================================================ */

/* Selbst gehostete Schrift — keine externe Anfrage an Google Fonts
   (vermeidet die in Deutschland abmahnfähige IP-Übertragung, LG München 2022) */
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #2b2e33;
  --bg-dark: #24262b;
  --panel: #34373d;
  --panel-2: #3c3f46;
  --gold: #cda246;
  --gold-light: #e9cd8a;
  --white: #f4f2ee;
  --grey: #b7b8bc;
  --grey-dark: #84868c;
  --line: #46484f;

  --font-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

p { margin: 0 0 1em; color: var(--grey); }
a { color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------- Eyebrow / Section labels ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  position: relative;
  padding-bottom: 14px;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 40px;
  background: var(--gold);
}
.eyebrow[data-reveal-line]::after {
  width: 0;
  transition: width 0.7s cubic-bezier(.4,0,.2,1);
}
.eyebrow.is-visible::after { width: 40px; }

.section-title {
  font-size: clamp(24px, 3.4vw, 34px);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-lead {
  max-width: 640px;
  font-size: 16px;
  color: var(--grey);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 26px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.main-nav a {
  text-decoration: none;
  color: var(--grey);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--white); }
.nav-cta {
  color: var(--gold) !important;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; }
  .nav-toggle { display: flex; }
}

/* ============ HERO ============ */
.hero {
  padding: 84px 0 76px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(205,162,70,0.08), transparent 60%),
    var(--bg);
}
.hero-copy { max-width: 720px; }
.eyebrow-hero { color: var(--grey-dark); }
.eyebrow-hero::after { display: none; }

.hero-title {
  font-size: clamp(38px, 6.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.hero-title .line { display: block; opacity: 0; transform: translateY(14px); animation: rise 0.7s ease forwards; }
.line-1 { color: var(--white); animation-delay: 0.05s; }
.line-2 { color: var(--gold); animation-delay: 0.20s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero-title .line { opacity: 1; transform: none; animation: none; }
}

.hero-swoosh {
  width: 200px;
  height: 20px;
  margin: 6px 0 22px;
  display: block;
}
.hero-swoosh path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
}

.hero-sub {
  font-size: 17px;
  max-width: 520px;
  color: var(--grey);
  margin-bottom: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--grey-dark);
}
.hero-facts li { position: relative; padding-left: 16px; }
.hero-facts li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--bg-dark); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { color: var(--white); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { color: var(--gold); border-color: var(--gold); background: transparent; width: 100%; }
.btn-outline:hover { background: var(--gold); color: var(--bg-dark); }
.btn-full { width: 100%; }

/* ============ SECTIONS ============ */
.section { padding: 78px 0; border-bottom: 1px solid var(--line); }
.section-alt { background: var(--bg-dark); }

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.service-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px 22px;
  border-top: 2px solid var(--gold);
}
.service-icon {
  width: 34px; height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.service-card p { font-size: 14px; margin: 0; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Pakete ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}
.price-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 30px 26px;
  border-top: 2px solid var(--line);
  display: flex;
  flex-direction: column;
}
.price-card-highlight {
  background: var(--panel-2);
  border-top: 2px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(205,162,70,0.25);
}
.price-kicker {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.price-card h3 { font-size: 19px; margin-bottom: 6px; }
.price-scope { font-size: 13px; color: var(--grey-dark); margin-bottom: 18px; }
.price-tag { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.price-note { font-size: 12px; color: var(--grey-dark); margin-bottom: 20px; }
.price-list { list-style: none; padding: 0; margin: 0 0 26px; flex-grow: 1; }
.price-list li {
  font-size: 14px;
  color: var(--grey);
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.price-list li:first-child { border-top: none; }
.price-footnote { margin-top: 28px; font-size: 13.5px; color: var(--grey-dark); text-align: center; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-highlight { order: -1; }
}

/* ---------- Ablauf ---------- */
.steps {
  list-style: none;
  padding: 0; margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px 22px;
  border-top: 2px solid var(--gold);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13.8px; margin: 0; }

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Referenzen ---------- */
.referenzen-wrap { max-width: 680px; }

/* ---------- Kontakt ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; }
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.contact-list li:first-child { border-top: none; }
.contact-list span {
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-list a { text-decoration: none; color: var(--white); }

.kontakt-form {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 30px;
  border-top: 2px solid var(--gold);
}
.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 13px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
}
input:focus, textarea:focus {
  border-color: var(--gold);
  outline: none;
}
textarea { resize: vertical; }
.form-hint { font-size: 12.5px; color: var(--grey-dark); margin: 14px 0 0; text-align: center; }
.form-hint a { color: var(--gold); text-decoration: underline; }

@media (max-width: 780px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row-split { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Rechtsseiten (Impressum/Datenschutz) ---------- */
.legal-page { padding-top: 64px; }
.legal-wrap { max-width: 720px; }
.legal-wrap h2 {
  font-size: 16px;
  color: var(--gold-light);
  margin: 30px 0 8px;
}
.legal-wrap p { font-size: 14.5px; }
.legal-wrap a { color: var(--gold); }
.legal-hint {
  margin-top: 34px;
  padding: 16px 18px;
  background: var(--panel);
  border-left: 2px solid var(--gold);
  border-radius: 6px;
  font-size: 13px;
  font-style: italic;
  color: var(--grey-dark);
}

/* ============ FOOTER ============ */
.site-footer { padding: 34px 0; }
.footer-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--grey-dark);
  font-size: 13px;
}
.footer-signet { height: 22px; width: auto; opacity: 0.85; }
.footer-row p { margin: 0; color: var(--grey-dark); }
.footer-legal { margin-left: auto !important; }
.footer-legal a { color: var(--grey-dark); text-decoration: underline; }

@media (max-width: 560px) {
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-legal { margin-left: 0 !important; }
}
