:root {
  --nav-h: 56px;            /* Höhe der fixen Navbar */
}

/* ============ NAVBAR (immer ganz oben) ============ */
.menunav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: #e3f2fd;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30000; /* ÜBER ALLEM, auch über dem Overlay */
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 98vw);
  padding: 0 12px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo img {
  height: 48px;
  display: block;          /* dein Wert fürs Logo */
}

.logo-text {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1e88e5;
  font-style: italic;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-block;
  color: #fff;
  background: #90caf9;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 16px important; 
  font-weight: 600;
  line-height: 1.2;
  transition: background .2s, transform .15s;
}

.nav-links a:hover {
  background: #64b5f6;
  transform: translateY(-1px);
}

.nav-links a.active {
  background: #1e88e5;
}

@media (max-width:820px) {
  .nav-links {
    display: none;
  }
}

/* Platz für feste Navbar schaffen */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #e3f1fb;
  padding-top: var(--nav-h);
}

/* ============ BURGER (morpht zum X; bleibt in der Navbar) ============ */
.burger {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: none;
}

.burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #1e88e5;
  border-radius: 1px;
  transition: transform .22s ease, opacity .18s ease, top .22s ease, bottom .22s ease, background-color .22s ease;
}

.burger span:nth-child(1) { top: 12px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { bottom: 12px; }

.burger.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  bottom: auto;
  top: 19px;
  transform: rotate(-45deg);
}

@media (max-width:820px) {
  .burger {
    display: inline-block;
  }
}

/* ============ OVERLAY (unter der Navbar) ============ */
.menu-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-h);
  bottom: 0;

  /* Standard: hell/weiß */
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: background .25s ease, opacity .25s ease;

  z-index: 20000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-overlay.open {
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1;
  pointer-events: auto;
}

.overlay-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

/* Punkte höher setzen */
.overlay-menu li::marker {
  position: relative;
  top: -10px;   /* verschiebt die Punkte leicht nach oben */
}

.overlay-menu a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 400;
  letter-spacing: .2px;
}

.overlay-sep {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  margin: 26px auto 14px;
}

.overlay-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 16px;
  letter-spacing: .3px;
  backdrop-filter: blur(12px);
  font-weight: 500;
}

body.no-scroll {
  overflow: hidden;
}

/* ============ KARTEN / INHALT / ROADMAP / FOOTER ============ */
.scoreboard {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin: 20px 20px 0 20px;
}

.card {
  position: relative;
  flex: 1;
  text-align: center;
}

.card .label {
  position: relative;
  top: -4px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  background: #e3f1fb;
  padding: 0 6px;
  border-radius: 4px;
  margin-bottom: -10px;
}

.scoreboard .box {
  box-sizing: border-box;
  height: 300px;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

.image-card {
  margin: 5px 20px 40px;
}

.image-card .label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: left;
  margin-left: 1%;
}

.image-link {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.image-link img {
  display: block;
  width: 98%;
  max-width: 600px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  cursor: default;
}

.txt {
  max-width: 600px;
  margin: 12px auto 40px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.txt a {
  color: #1e88e5;
  text-decoration: none;
  font-weight: 600;
}

.txt a:hover {
  text-decoration: underline;
}

#roadmap {
  --gap: 6px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1400px;
  margin: 40px auto;
}

.roadmap-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.step {
  width: 100%;
  position: relative;
}

.circle-line-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.circle {
  --shift: 0px;
  width: 120px;
  height: 120px;
  background: #2563EB;
  border-radius: 50%;
  color: #fff;
  font-style: italic;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  border: none;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transform: translateX(var(--shift));
}

.circle.active {
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
  z-index: 3;
}

.line {
  width: 7px;
  height: 60px;
  background: #2563EB;
  border-radius: 5px;
  margin: 12px 0;
  transition: opacity .2s ease;
}

.line.line--hidden {
  opacity: 0;
}

.roadmap-right {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 220px;
  background: #f3f4f6;
  border-radius: 10px;
  overflow: hidden;
  max-height: 500px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  padding: 10px 18px 16px;
}

.roadmap-right.open {
  display: block;
}

.panel-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 22px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.panel-title {
  margin: 0;
  line-height: 1.15;
  padding-right: 28px;
}

.panel-text {
  margin: 8px 0 0;
  line-height: 1.5;
  text-align: left;
}

.site-footer {
  margin-top: 40px;
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ccc;
}

.site-footer .paypal-link img {
  margin-top: 10px;
  width: 320px;
  height: 100px;
  border-radius: 20px;
  transition: transform .2s ease;
}

.site-footer .paypal-link img:hover {
  transform: scale(1.05);
}

html {
  scroll-behavior: smooth;
}

li a[href="easteregg.html"] {
  display: block;
  width: 10px;       
  height: 10px;
  color: transparent; 
  text-decoration: none;
  overflow: hidden;
}

