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

/* === Lokal gehostete Schriften (DSGVO-konform) === */
@font-face { font-family: 'Orbitron'; src: url('fonts/Orbitron-Medium.ttf')    format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Orbitron'; src: url('fonts/Orbitron-SemiBold.ttf')  format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Orbitron'; src: url('fonts/Orbitron-Bold.ttf')      format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Orbitron'; src: url('fonts/Orbitron-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Orbitron'; src: url('fonts/Orbitron-Black.ttf')     format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }

@font-face { font-family: 'Sora'; src: url('fonts/Sora-Light.ttf')      format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Sora'; src: url('fonts/Sora-Regular.ttf')    format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Sora'; src: url('fonts/Sora-Medium.ttf')     format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Sora'; src: url('fonts/Sora-SemiBold.ttf')   format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Sora'; src: url('fonts/Sora-Bold.ttf')       format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Sora'; src: url('fonts/Sora-ExtraBold.ttf')  format('truetype'); font-weight: 800; font-style: normal; font-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);
}

/* ---------- DROPDOWN MENU ---------- */
.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  user-select: none;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  margin: 0;
  list-style: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 158, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 100;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--text-secondary) !important;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background: rgba(59, 158, 255, 0.1);
  color: var(--accent) !important;
  padding-left: 20px;
}
.dropdown-menu li a.active {
  color: var(--accent) !important;
  background: rgba(59, 158, 255, 0.08);
}

/* Mobile Dropdown */
@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(59, 158, 255, 0.05);
    box-shadow: none;
    margin-top: 8px;
    margin-left: 16px;
    border-left: 2px solid var(--accent);
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    padding: 4px 8px;
    display: none;
  }
  .dropdown-menu::before { display: none; }
  .has-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }
}

.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); }

/* ---------- MAGAZIN-DOWNLOAD-BLOCK ---------- */
.magazin-section {
  margin: 80px auto 60px;
  padding: 0 24px;
  max-width: 1200px;
}
.magazin-section { max-width: 920px; }
.magazin-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid rgba(59, 158, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 60px rgba(59, 158, 255, 0.08);
}
.magazin-cover {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.magazin-cover img { display: block; width: 100%; height: auto; }
.magazin-info .magazin-eyebrow {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(59, 158, 255, 0.1);
  border: 1px solid rgba(59, 158, 255, 0.3);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.magazin-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 12px;
  color: var(--text-primary);
  line-height: 1.2;
}
.magazin-info h2 em {
  font-style: normal;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(59, 158, 255, 0.5);
}
.magazin-info p.magazin-lead {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.magazin-form { display: grid; gap: 12px; }
.magazin-form input[type="text"],
.magazin-form input[type="email"] {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.magazin-form input[type="text"]:focus,
.magazin-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.15);
}
.magazin-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.magazin-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.5;
}
.magazin-form .checkbox-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.magazin-form .checkbox-row a { color: var(--accent); text-decoration: underline; }
.btn-magazin {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--accent), #1f7ce0);
  color: white !important;
  border: none;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 12px 30px var(--accent-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-magazin:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--accent-glow);
}
@media (max-width: 900px) {
  .magazin-card { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; }
  .magazin-cover { max-width: 200px; margin: 0 auto; }
  .magazin-info { text-align: center; }
  .magazin-info h2 { font-size: 20px; }
  .magazin-form .form-row { grid-template-columns: 1fr; }
  .magazin-form .checkbox-row { text-align: left; }
}

/* ---------- 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; }
}

/* ============================================================
   HELLES THEME  —  heller Umbau (Stand 03.06.2026)
   Blau-Akzent bleibt unverändert (#3b9eff / #5ab0ff) — wie auf den Visitenkarten.
   Zum Zurücksetzen auf Dunkel: diesen Block bis Dateiende löschen
   (Backup: style.css.bak-dark).
   ============================================================ */
:root{
  --bg-deep:#f3f5f8;
  --bg-card:#ffffff;
  --bg-card-2:#eef1f6;
  --bg-elev:#e8eef6;
  --text-primary:#17222e;
  --text-secondary:#55616f;
  --text-muted:#8a95a2;
  --border:rgba(20,30,45,0.12);
  --shadow-outer:0 18px 50px rgba(20,40,70,0.10);
  --shadow-inner:inset 0 1px 0 rgba(255,255,255,0.7);
}
body{
  background:#f3f5f8 !important;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(59,158,255,0.10), transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(59,158,255,0.07), transparent 46%) !important;
}
/* weißes Logo -> dunkel fürs helle Theme */
.logo img{ filter: brightness(0) opacity(0.82) !important; }
