/* === NAV – Trooper-Button + Overlay === */

/* Scroll sperren wenn offen */
.no-scroll { overflow: hidden; }

/* Container */
.site-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10000;
}

/* GIF-Button */
.nav-toggle {
  width: 65px;
  height: 130px;
  padding: 0;
  border: none;
  border-radius: 18px;
  background: #f4f4f6;         /* helles Grau statt Schwarz */
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
}
.nav-toggle img {
  width: 55px; height: 120px;
  border-radius: 14px;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}
.nav-toggle:hover {
  background: #555;            /* mittleres Grau beim Hover */
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.45);
}
.nav-toggle:hover img {
  transform: scale(1.05) rotate(-1deg);
  filter: saturate(1.1) contrast(1.05);
}

/* Backdrop (klickbar zum Schließen) */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.0);
  backdrop-filter: saturate(100%) blur(0px);
  transition: background .3s ease, backdrop-filter .3s ease;
  z-index: 9998;
}
.nav-backdrop.active {
  background: rgba(0,0,0,.55);
  backdrop-filter: saturate(120%) blur(2px);
}

/* Panel */
.nav-panel {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(86vw, 420px);
  background: #f4f4f6;   /* leichtes Grau */
  color: #111;           /* Text dunkel für Kontrast */
  transform: translateX(-100%);
  transition: transform .35s ease;
  z-index: 9999;
  box-shadow: 8px 0 30px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2vw, 1.5rem);
}
.nav-panel.active { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .nav-panel, .nav-backdrop, .nav-toggle, .nav-toggle img { transition: none; }
}

/* Liste */
.nav-list {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
}

/* Link-Buttons „cool“ */
.nav-list a {
  display: block;
  margin: .5rem 0;
  padding: 0.95rem 1.1rem 0.95rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
  background:
    linear-gradient(180deg, #0f1720 0%, #0b1219 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 10px 24px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .18s ease, background .25s ease, border-color .25s ease;
}
.nav-list a:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, #122033 0%, #0d1622 100%);
  border-color: rgba(255,255,255,.14);
}

/* kleine Akzent-Pille links */
.nav-list a::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  margin-right: .6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #00a67e, #0bbb90);
  box-shadow: 0 0 0 3px rgba(11,187,144,.15);
  vertical-align: middle;
}

/* Typografie im Panel */
.nav-panel { font-size: 1.1rem; }



/* --- Legal Notice (Footer-Style) --- */
.nav-legal {
  margin-top: auto;              /* ganz nach unten */
  text-align: center;
  font-size: 0.7rem;              /* deutlich kleiner */
  opacity: 0.5;                   /* blasser */
  padding-top: 2rem;
}

.nav-legal a {
  color: inherit;                 /* gleiche Farbe wie Text */
  text-decoration: none;
}

.nav-legal a:hover {
  opacity: 0.9;                   /* etwas stärker sichtbar beim Hover */
  text-decoration: underline;
}