/* =========================================================
   STEINBACH'S MEDIA — Gemeinsame Styles für alle Seiten
   ========================================================= */

/* Futuristische Display-Schrift für Headlines */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700;800;900&display=swap');

:root {
  --bg-deep: #0b0f14;
  --bg-card: #151a21;
  --bg-card-2: #1b222b;
  --bg-elev: #1f2731;
  --text-primary: #eef3f8;
  --text-secondary: #a4b0bc;
  --text-muted: #6b7683;
  --accent: #3b9eff;
  --accent-bright: #5ab0ff;
  --accent-glow: rgba(59, 158, 255, 0.35);
  --border: rgba(255, 255, 255, 0.06);
  --shadow-outer: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(59, 158, 255, 0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(59, 158, 255, 0.06), transparent 45%);
  background-attachment: fixed;
}

/* ---------- NAVIGATION ---------- */
.nav-wrap {
  position: sticky;
  top: 20px;
  z-index: 100;
  padding: 0 24px;
  margin-top: 20px;
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 100px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-outer), var(--shadow-inner);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
  text-decoration: none;
  color: var(--text-primary);
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(59, 158, 255, 0.25));
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-elev);
}
.nav-links a.active {
  color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 20px !important;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.nav-cta:hover {
  background: var(--accent-bright) !important;
  transform: translateY(-1px);
}
.burger { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 8px; }

/* ---------- PAGE HEADER ---------- */
.page-header {
  max-width: 1200px;
  margin: 80px auto 60px;
  padding: 0 24px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid rgba(59, 158, 255, 0.25);
  border-radius: 50px;
  background: rgba(59, 158, 255, 0.06);
}
.page-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.page-header h1 em {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(59, 158, 255, 0.5);
}
.page-header .lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 18px;
}

/* ---------- GENERIC SECTION ---------- */
section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-head p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 20px 40px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-bright); }
.btn-secondary {
  background: var(--bg-elev);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-card-2); transform: translateY(-2px); }

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-outer), var(--shadow-inner);
  transition: transform 0.4s ease;
}
.card:hover { transform: translateY(-4px); }
.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}
.card p { color: var(--text-secondary); }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #1f7ce0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px var(--accent-glow);
}

/* ---------- FOOTER ---------- */
footer {
  max-width: 1200px;
  margin: 80px auto 40px;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
footer .footer-links a:hover { color: var(--accent); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 24px; right: 24px; background: var(--bg-card); flex-direction: column; padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-outer); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .burger { display: block; }
}
