
/* Basislayout */
hl, by {
  margin: 0; padding: 0;
  height: 100%;
  font-family: sans-serif;
  background: #111;
  overflow: hidden;
}

body, html {
  margin: 0; padding: 0;
  height: 100%;
  background: #111;
  font-family: sans-serif;
}

/* Nur bei der großen Version (Full) kein Scrollen */
[data-mode="full"] body,
[data-mode="full"] html {
  overflow: hidden;
}


/* Hintergrund wird per JS gesetzt */
#background {
  position: fixed; inset: 0;
  background: center/cover no-repeat;
  z-index: -2;
}

/* Große Szene (zentriert, responsive) */
#orbit {
  position: relative;
  width: min(90vw, 600px);
  height: min(90vw, 600px);
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}

/* Mini-Container oben links */
#mini {
  position: fixed;
  top: 10px; left: 10px;
  width: 100px; height: 100px;  /* hier 80px/100px einstellen */
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}

/* Im Mini-Modus füllt die Szene den Container */
[data-mode="mini"] #orbit {
  width: 100%;
  height: 100%;
}

@keyframes corePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.1); }
}

/* Core-Label */
.core {
  font-size: 2.3rem;       /* vorher 2rem – größer */
  letter-spacing: 1px;     /* etwas luftiger */
  text-shadow: 0 0 25px #0af, 0 0 50px #05f;  /* stärkerer Leuchteffekt */
  animation: corePulse 5s ease-in-out infinite;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #6cf;
  text-shadow: 0 0 15px #058;
  cursor: pointer;
  transition: transform .3s ease, color .3s ease;
  user-select: none;
}
.core:hover { transform: translate(-50%, -50%) scale(1.2); color: #6ff; }
[data-mode="mini"] .core { font-size: .8rem; transform: translate(-50%, -50%) scale(.5); }

/* Orbit-Items */
.orbiting {
  position: absolute;
  left: 50%; top: 50%;
  cursor: pointer; text-align: center;
  transition: transform .3s ease, filter .3s ease, color .3s ease;
  user-select: none;
}

/* Bild-Styles: Größe kommt aus JS (kein fixes CSS-Maß mehr!) */
.orbiting img {
  display: block;
  border-radius: 50%;
  transition: transform .3s ease, filter .3s ease;
}

/* Hover-Effekte */
.orbiting:hover img { transform: scale(1.35); filter: brightness(1.2); }

/* Tooltips */
.orbiting[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.75);
  color: #fff; padding: 4px 8px;
  border-radius: 4px;
  font-size: .8rem; white-space: nowrap;
  pointer-events: none; z-index: 10;
}

/* Zentrierter Abschnitt unter dem Video */
.footer-center {
  margin: 2rem auto;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

/* Danach wieder eingerückt linksblock */
.footer-text {
  margin-top: 2rem;
  margin-left: calc(100px + 2rem); /* Orbitbreite + Abstand */
  margin-right: 2rem;
  max-width: 700px;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left !important;  /* ← erzwingt Linksbündigkeit */
  display: block;
}

.right-column {
  margin-left: calc(100px + 2rem);  /* Orbitbreite + Abstand */
  max-width: 700px;
  text-align: left;
  color: #ddd;
  line-height: 1.6;
}

/* ===== Einheitliche Farben für Links und Glanzeffekt ===== */

:root {
  --euxi: #6cf;              /* deine Grundfarbe */
}

/* Linkfarben für alle Zustände */
a:link,
a:visited {
  color: var(--euxi) !important;
  text-decoration: none;
}

a:hover,
a:active {
  color: #6ef !important;    /* helleres Hover-Blau */
}


/* Linkfarben nur im rechten Inhaltsbereich */
.right-col a:link {
  color: #6cf;           /* unbesucht: helles Blau */
  text-decoration: none;
}
.right-col a:visited {
  color: #58b8ff;        /* besucht: etwas dunkler, aber weiterhin hell */
}
.right-col a:hover {
  color: #9ef;           /* Hover: heller */
  text-decoration: underline;
}
.right-col a:active {
  color: #dff3ff;        /* kurzer Klickzustand */
}



/* Glow wie beim Wort "Euxistopie" (optional für markierte Elemente) */
.euxi-glow {
  color: var(--euxi) !important;
  text-shadow: 0 0 15px #058 !important;
  font-weight: bold;
}


.methodenblock {
  margin-top: 3rem;
  padding: 1.8rem;
  font-size: 0.9rem;
  line-height: 1.55;
/*  background: #f8f8f8;*/
  border: 1.5px solid #999;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.methodenblock h2,
.methodenblock h3 {
  margin-top: 0;
  font-weight: 600;
}

.methodenblock h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.methodenblock h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

.methodenblock ul {
  margin-top: 0.5rem;
  padding-left: 1.4rem;
}

.methodenblock p,
.methodenblock li {
/*  color: #333;*/
}
