/* ================================================================
   Empire V2 – gemeinsames Nav + Footer für alle 13 Hauptseiten
   Einbinden nach /fonts/fonts.css, vor oder nach seiten-eigenem CSS.
   Startseite & Blogs haben eigenes Inline-CSS; Unterseiten nutzen dies.
   ================================================================ */

:root {
  --navy-900: #080d1a;
  --navy-800: #0d1424;
  --navy-700: #111c30;
  --navy-600: #162238;
  --gray-blue: #3a4f6b;
  --gray-blue-light: #4e6382;
  --border: rgba(78,99,130,0.25);
  --border-light: rgba(78,99,130,0.12);
  --orange: #F97316;
  --orange-soft: rgba(249,115,22,0.12);
  --white: #ffffff;
  --off-white: #e8eef5;
  --muted: #7a91ab;
  --muted-dim: #4a607a;
}

/* Basis: Hintergrund für Seiten mit V2-Nav (optional body.empire-v2) */
body.empire-v2 {
  background: var(--navy-900) !important;
  color: var(--off-white);
}
body.empire-v2::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 10%, rgba(249,115,22,.04) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 80% 80%, rgba(30,60,120,.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── V2 NAV ── */
.v2-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: rgba(8,13,26,.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border) !important;
  padding: 0 24px !important;
  height: 68px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.v2-nav .nav-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v2-nav .logo {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-nav .logo a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-nav .logo-c {
  width: 34px;
  height: 34px;
  background: var(--orange);
  color: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}
.v2-nav .logo-text { color: var(--white); }
.v2-nav .logo-text span { color: var(--muted); font-weight: 400; }
.v2-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.v2-nav .nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 11px;
  border-radius: 8px;
  transition: all .2s;
}
.v2-nav .nav-links a:hover { color: var(--white); background: var(--navy-600); }
.v2-nav .nav-links a.active { color: var(--orange); background: var(--navy-600); }
.v2-nav .nav-right { display: flex; align-items: center; gap: 10px; }
.v2-nav .nav-cart {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  background: var(--navy-700);
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v2-nav a.nav-cart { color: var(--muted); }
.v2-nav .nav-cart:hover { border-color: var(--orange); color: var(--orange); }
.v2-nav .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  border: none;
}
.v2-nav .btn-o {
  background: var(--orange);
  color: #000;
}
.v2-nav .btn-o:hover { background: #fb923c; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,.3); }

@media (max-width: 960px) {
  .v2-nav { padding: 0 16px !important; }
  .v2-nav .nav-links { display: none; }
}

/* ── V2 FOOTER ── */
.v2-footer {
  background: var(--navy-900) !important;
  border-top: 1px solid var(--border) !important;
  padding: 72px 24px 40px !important;
  position: relative;
  z-index: 1;
}
.v2-footer .footer-wrap { max-width: 1200px; margin: 0 auto; }
.v2-footer .ftop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.v2-footer .fbrand p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-top: 14px; max-width: 260px; }
.v2-footer .fbrand .logo { display: inline-flex; text-decoration: none; color: inherit; align-items: center; gap: 10px; }
.v2-footer .fcol h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.v2-footer .fcol ul { list-style: none; margin: 0; padding: 0; }
.v2-footer .fcol ul li { margin-bottom: 10px; }
.v2-footer .fcol ul li a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.v2-footer .fcol ul li a:hover { color: var(--white); }
.v2-footer .fbot {
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v2-footer .fcopy { font-size: 13px; color: var(--muted-dim); }
.v2-footer .fcopy em { display: block; font-style: italic; font-size: 12px; margin-top: 2px; opacity: .6; }
.v2-footer .fcmd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-700);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
}
.v2-footer .fcmd:hover { border-color: var(--orange); background: var(--orange-soft); }

@media (max-width: 960px) {
  .v2-footer .ftop { grid-template-columns: 1fr 1fr; }
  .v2-footer { padding: 48px 16px 28px !important; }
}
