    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: sans-serif;
    }

:root {
    --clr1: #6a0000;
    --clr2: #ffc000;
    --clr3: rgba(106, 0, 0, 0.9);
    --clr4: rgba(255, 192, 0, 0.5);
    --clr5: #18181d;
    --clr6: #333333;
    --clr7: #555555;
}

html, body {
    height: 100%; /* Vollständige Höhe einnehmen */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

:root {
    --transition-time: 0.5s;
}

.content-container {
    flex: 1; /* Der Container nimmt die verfügbare Höhe ein */
    display: flex;
    flex-direction: column;
}

#content-frame1 {
    flex: 1; /* Das iframe nimmt den ganzen verfügbaren Raum im Container ein */
    width: 100%;
    border: none;
    overflow: hidden;
}

#content-frame2 {
    flex: 1; /* Das iframe nimmt den ganzen verfügbaren Raum im Container ein */
    width: 100%;
    border: none;
    overflow: hidden;
}


#theme-toggle {
    position: absolute;
    top: 2px;
    right: 20px;
    z-index: 9999; /* Über alles */
    width: 50px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#theme-toggle input[type="checkbox"] {
    display: none; /* Checkbox verstecken */
}

#theme-toggle label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: var(--clr4); /* Hintergrundfarbe */
    border-radius: 50px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.9);
    padding: 5px;
    cursor: pointer;
    position: relative;
    transition: background var(--transition-time);
}

#theme-toggle .icon {
    font-size: 12px;
	text-shadow: 0 0px 5px var(--clr5);
    position: absolute;
    pointer-events: none;
    transition: opacity var(--transition-time), transform var(--transition-time);
}

#theme-toggle .sun {
    left: 6px;
    opacity: 1; /* Sichtbar im Tagmodus */
}

#theme-toggle .moon {
    right: 10px;
    opacity: 0.3; /* Versteckt im Tagmodus */
}

#theme-toggle input[type="checkbox"]:checked + label {
    background: var(--clr4); /* Nachtmodus-Farbe */
}

#theme-toggle input[type="checkbox"]:checked + label .sun {
    opacity: 0.3; /* Sonne ausblenden */
    transform: translateX(20px); /* Leichte Bewegung */
}

#theme-toggle input[type="checkbox"]:checked + label .moon {
    opacity: 1; /* Mond einblenden */
    transform: translateX(-20px); /* Leichte Bewegung */
}



#toTopBtn {
    position: fixed;
    bottom: 20px; /* Abstand vom unteren Rand */
    right: 20px; /* Abstand vom rechten Rand */
    z-index: 1000; /* Über andere Elemente */
    background-color: var(--clr2); /* Button-Farbe */
    color: var(--clr1); /* Textfarbe */
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Runder Button */
    box-shadow: 0 3px 5px var(--clr3); /* Schatteneffekt */
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s; /* Animation */
}

#toTopBtn:hover {
    background-color: var(--clr3); /* Hover-Farbe */
	color: var(--clr2);
}

#toTopBtn.show {
    opacity: 1;
    visibility: visible;
}





    html, body {
      height: 100%; /* Stellt sicher, dass die Seite 100% Höhe einnimmt */
      display: flex;
      flex-direction: column;
      background: transparent;
      color: var(--clr1);
    }


blockquote {
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
    background: var(--clr4);
    border-left: 6px solid var(--clr2);
    color: var(--clr1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#quote-text {
    font-size: 18px; /* Schriftgröße festlegen */
	text-shadow: 0 1px 3px var(--clr2);
	font-family: 'PT Serif', Cambria, 'Hoefler Text', Utopia, 'Liberation Serif', 'Nimbus Roman No9 L Regular', Times, 'Times New Roman', serif;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

#quote-text:before {
    content: '“';
    font-size: 16px;
    color: var(--clr2);
    margin-right: 5px;
}

#quote-text:after {
    content: '”';
    font-size: 16px;
    color: var(--clr2);
    margin-left: 5px;
}

#quote-author {
	font-family: 'PT Serif', Cambria, 'Hoefler Text', Utopia, 'Liberation Serif', 'Nimbus Roman No9 L Regular', Times, 'Times New Roman', serif;
    font-size: 12px;
    font-style: italic;
    text-align: right;
    margin-top: 10px;
}

#quote-author:before {
    content: '— ';
}






/* Wrapper */
.wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    background: transparent;
}

/* Mainwrap */
.mainwrap {
    display: flex;
    flex-wrap: wrap; /* Ermöglicht Zeilenumbruch */
    gap: 10px; /* Abstand zwischen den Bereichen */
    justify-content: center; /* Zentriert, wenn Inhalte umgebrochen werden */
    align-items: flex-start; /* Oben ausrichten */
    width: 100%;
    max-width: 1200px; /* Maximale Breite */
}

/* Bodywrapper */
.bodywrapper {
    flex: 1 1 calc(50% - 10px); /* Flexible Größe: 80% */
    min-width: 300px; /* Mindestbreite */
    background: var(--clr4);
    border: 1px solid var(--clr1);
    border-radius: 10px;
    box-shadow: 0 3px 5px var(--clr3);
    padding: 16px;
    box-sizing: border-box; /* Padding und Border einbeziehen */
}

/* Fallback für schmale Bildschirme */
@media (max-width: 900px) {
    .bodywrapper,
    .sidebarwrap {
        flex: 1 1 100%; /* Beide Bereiche nehmen 100% Breite ein */
        max-width: 100%;
    }
}

.content {
	text-align: left;
    background: var(--clr2);
    border: 1px solid var(--clr1);
    color: var(--clr1);
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.5;
}


/* Sidebarwrap */
.sidebarwrap {
    background: var(--clr4); /* Hintergrundfarbe des Wrappers */
    border-radius: 10px; /* Abgerundete Ecken */
    border: 1px solid var(--clr1);
    padding: 0px;
    flex: 1 1 calc(1% - 16px); /* Flexible Größe, Platz für 4 Boxen */
    min-width: 280px; /* Mindestbreite für kleinere Bildschirme */
    max-width: 100%; /* Maximalbreite */
	box-shadow: 0 0px 10px var(--clr3); /* Schatten oben und unten */
}

/* Sidebar */
.sidebar {
	text-align: left;
    background: var(--clr2);
    border: 1px solid var(--clr1);
    color: var(--clr1);
    margin: 16px;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Iframe in der Sidebar */
.sidebar iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}






hr {
    height: 1px; /* Höhe der Linie */
    border: none; /* Entfernt Standardrahmen */
    background: -webkit-linear-gradient(left, var(--clr2), var(--clr1), var(--clr2));
    background: -moz-linear-gradient(left, var(--clr2), var(--clr1), var(--clr2));
    background: -ms-linear-gradient(left, var(--clr2), var(--clr1), var(--clr2));
    background: -o-linear-gradient(left, var(--clr2), var(--clr1), var(--clr2)); 
    background: linear-gradient(to right, var(--clr2), var(--clr1), var(--clr2));
    margin: 5px 0; /* Abstand oben und unten */
}

#title-bar {
    position: fixed; /* Damit der z-index greift */
    background-color: var(--clr4);
    color: var(--clr1);
    height: 45px;
    width: 100%; /* Soll die volle Breite des Viewports einnehmen */
    padding-top: 5px;
    text-align: center;
    line-height: 1;
    margin: 0;
    box-shadow: 0px 3px 5px var(--clr3); /* Schatten */
    z-index: 10; /* Höher als das iframe */
}

#title-bar h1 {
    font-size: 1rem; /* Schriftgröße */
    font-weight: bold;
    color: var(--clr2); /* Basisfarbe */
    text-shadow: 
        0 0 5px var(--clr1), 
        0 0 10px var(--clr1), 
        0 0 20px var(--clr1), 
        0 0 40px var(--clr1), 
        0 0 80px var(--clr1); /* Neon-Effekt */
    animation: neonHeartbeat 1s cubic-bezier(0.2, 1, 0.8, 0) infinite;
}

@keyframes neonHeartbeat {
    0% {
        opacity: 0.6; /* Ausgangszustand leicht gedimmt */
        text-shadow: 
            0 0 2px var(--clr1), 
            0 0 5px var(--clr1), 
            0 0 10px var(--clr1), 
            0 0 20px var(--clr1); /* Minimale Leuchtkraft */
    }
    10% {
        opacity: 1; /* Maximal sichtbar */
        text-shadow: 
            0 0 5px var(--clr1), 
            0 0 10px var(--clr1), 
            0 0 20px var(--clr1), 
            0 0 40px var(--clr1), 
            0 0 80px var(--clr1); /* Maximale Leuchtkraft */
    }
    30% {
        opacity: 0.8; /* Leicht reduziert */
        text-shadow: 
            0 0 4px var(--clr1), 
            0 0 8px var(--clr1), 
            0 0 16px var(--clr1), 
            0 0 32px var(--clr1); /* Mittlere Intensität */
    }
    100% {
        opacity: 0.6; /* Zurück zum Ausgangszustand */
        text-shadow: 
            0 0 2px var(--clr1), 
            0 0 5px var(--clr1), 
            0 0 10px var(--clr1), 
            0 0 20px var(--clr1); /* Minimale Leuchtkraft */
    }
}



    #title-bar p {
        font-size: 14px; /* Kleinere Schriftgröße */
        margin: 5px 0 0; /* Abstand oberhalb und kein Abstand unterhalb */
    }	

/* iframe: Darunterliegende Ebene */
iframe {
    flex: 1; /* Füllt den verfügbaren Platz aus */
    position: relative; /* Standard bleibt */
    height: 100%; /* Füllt die gesamte Höhe */
    width: 100%; /* Füllt die gesamte Breite */
    border: none;
    overflow: hidden;
    z-index: 1; /* Niedriger als der #title-bar */
}

.navigation {
    width: 100%;
    height: 58px;
    background: var(--clr4);
    display: flex;
    justify-content: center;
    align-items: center;
    /* Schatten oben und unten */
    box-shadow: 0px -3px 5px var(--clr3), 0px 3px 5px var(--clr3);
    position: sticky;
    bottom: 0;
    z-index: 1000;
}

.navigation_insideshadow {
	box-shadow: 0px -3px 5px var(--clr3);
	border-bottom: 1px solid var(--clr1); /* Dezente Linie unten */
	width: 100%;
	height: 1px;
	padding: 0px;
    margin-bottom: 0px;
}

    .navigation .menu-toggle {
      display: none;
      font-size: 25px;
      color: var(--clr1);
      cursor: pointer;
    }

    .navigation ul {
      position: relative;
      display: flex;
      width: 320px;
      list-style: none;
    }

    .navigation ul li {
      position: relative;
      list-style: none;
      width: 63px;
      height: 50px;
      z-index: 1;
    }

    .navigation ul li a {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      font-size: 25px; /* Größe der Symbole */
      color: var(--clr3); /* Farbe der Symbole */
      transform: translateY(-2px);
      text-shadow: 0 4 10px var(--clr3); /* Verwende text-shadow für ein weicheres Aussehen */
      text-decoration: none; /* Verhindert Unterstriche bei den Menulinks */
    }

    .navigation ul li a .icon {
      opacity: 0.45;
      transition: 0.5s;
    }
  
    .navigation ul li.active a .icon {
      opacity: 1;
      color: var(--clr2);
      transform: translateY(-15px);
      text-shadow: 0 4px 10px var(--clr4); /* Verwende text-shadow für ein weicheres Aussehen */
    }


.indicatorcenter {
    position: absolute;
    bottom: 21px; /* Verschiebe das Container nach unten */
    left: -129px;
    width: 100%;
    text-align: center; /* Zentriert den Inhalt horizontal */
    display: flex; /* Ermöglicht die Verwendung von justify-content */
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: center; /* Zentriert den Inhalt vertikal, falls nötig */
}

.indicator {
    background: var(--clr2);
    box-shadow: 0px -6px 3px var(--clr3);
    border-radius: 35px;
    border: 6px solid var(--clr2);
    cursor: pointer;
    transition: 0.5s;
    width: 50px;
    height: 50px;
    position: relative; /* Damit der Indicator innerhalb seines Containers positioniert werden kann */
    z-index: 1; /* Sicherstellen, dass der Indicator über dem Hintergrund, aber unter den Icons ist */
}

.indicator span {
    position: absolute;
    top: -7px;
    left: -5.5px;
    width: 50px;
    height: 50px;
    background: var(--clr3);
    border: 1px solid var(--clr1);
    border-radius: 50%;
    box-shadow: 0 -6px 3px var(--clr3);
    transform: scale(0.85);
}

    .name-label {
      position: absolute;
      top: 35px;
      left: -2px;
      width: 100%;
      text-align: center;
      font-size: 12px;
      color: var(--clr1);
      font-weight: bold;
      text-shadow: 0 2px 5px var(--clr3);
		cursor: pointer;
      transition: 0.5s;
      opacity: 0;
    }

    .navigation ul li.active .name-label {
      opacity: 1;
    }

    .navigation ul li:nth-child(3).active ~ .indicator {
      transform: translateX(calc(50px * 1));
    }

    .navigation ul li:nth-child(4).active ~ .indicator {
      transform: translateX(calc(50px * 2));
    }

    .navigation ul li:nth-child(5).active ~ .indicator {
      transform: translateX(calc(50px * 3));
    }

    .navigation ul li:nth-child(6).active ~ .indicator {
      transform: translateX(calc(50px * 4));
    }

    @media (max-width: 350px) {
      .navigation {
        height: 50px;
      }

      .navigation .menu-toggle {
        display: none;
      }

      .navigation ul {
        flex-direction: row;
        max-height: none;
        width: 100%;
      }

      .navigation ul li {
        width: 50px;
        height: 50px;
      }

      .indicator {
        display: block;
      }
    }
	
	/* CSS-Regeln nur für Menüs mit der Klasse `.menu` */
ul.menu {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center; /* Zentriert die Inhalte */
    gap: 10px; /* Abstand zwischen den Items */
    background: var(--clr2);
    border-radius: 30px;
    box-shadow: 0 3px 5px var(--clr3);
    overflow: hidden;
    border: 5px solid var(--clr2);
    width: 90%; /* Passt sich an die Breite der Seite an */
    max-width: 1200px; /* Begrenzung der maximalen Breite */
    z-index: 20; /* Höher als das iframe */
}

ul.menu li {
    flex: 1; /* Vergrößert jedes `<li>` gleichmäßig */
    list-style: none;
    position: relative;
    text-align: center; /* Zentriert den Text innerhalb jedes Items */
}

ul.menu li a {
    display: block;
    padding: 5px;
    text-align: center;
    color: var(--clr1);
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.5s, text-shadow 0.5s;
}

ul.menu li.active a {
    color: var(--clr2);
    text-shadow: 0 3px 5px var(--clr4);
}

ul.menu li a:hover {
    color: var(--clr2);
    text-shadow: 0 3px 5px var(--clr4);
}

ul.menu li a.return-color {
    color: var(--clr1); /* Standardfarbe */
    text-shadow: none; /* Kein Schatten */
}

ul.menu .slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--clr1);
    z-index: -1;
    transition: left 0.5s, width 0.5s, opacity 0.5s;
    opacity: 1;
}


/* Container-Styling */
.section {
  position: relative; /* Position setzen, damit der z-index funktioniert */
  background-color: var(--clr3);
  border-radius: 8px; /* Abgerundete Ecken */
  box-shadow: 0 3px 5px var(--clr3); /* Leichter Schatten */
  margin: 0px auto; /* Abstand nach oben und unten */
  padding: 0px; /* Kein extra Innenabstand */
  width: 90%; /* Breite des Containers */
  max-width: 1200px; /* Begrenzung der maximalen Breite */
  overflow: hidden; /* Für sauberes Ausblenden */
  font-family: Arial, sans-serif; /* Einheitliche Schrift */
  z-index: 10; /* Höher als der iframe */
}

/* Zusammenfassung (Klickbereich) */
.section-title {
  cursor: pointer; /* Hand-Cursor */
  display: flex;
  justify-content: center; /* Zentriert den Inhalt horizontal */
  align-items: center; /* Vertikale Zentrierung */
  padding: 5px 5px; /* Innenabstand */
  font-size: 14px; /* Größere Schrift */
  font-weight: bold; /* Fettschrift */
  color: var(--clr1); /* Dunkles Grau für Text */
  background-color: var(--clr2); /* Hintergrundfarbe */
  border-bottom: 1px solid var(--clr1); /* Dezente Linie unten */
  position: relative; /* Für die absolute Positionierung der Icons */
}



/* Keyframes für die Bewegung */
@keyframes bounce-with-pause {
  0%, 20% {
    transform: translateY(0); /* Ausgangsposition */
  }
  10% {
    transform: translateY(-5px); /* Nach oben bewegen */
  }
  30%, 100% {
    transform: translateY(0); /* Zurück zur Ausgangsposition */
  }
}

/* Pfeile nur in section-title */
.section-title .icon {
  font-size: 14px; /* Schriftgröße */
  animation: bounce-with-pause 3s infinite; /* Nur diese Pfeile */
}

/* Pfeil links */
.section-title .icon-left {
  position: absolute;
  left: 10px;
}

/* Pfeil rechts */
.section-title .icon-right {
  position: absolute;
  right: 10px;
}

/* Animation deaktivieren, wenn das Panel geöffnet ist */
details[open] .icon {
  animation: none; /* Bewegung stoppen */
  transform: rotate(180deg); /* Pfeile drehen */
}





/* Inhalt */
.section-content {
  padding: 16px; /* Innenabstand */
  font-size: 16px; /* Lesbare Schriftgröße */
  color: var(--clr2); /* Grauer Text */
  text-align: left;
  line-height: 1.6; /* Zeilenhöhe für Lesbarkeit */
}



/* Hauptcontainer für den Footer */
.footer-container {
	background: transparent;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* Hintergrund für den Footer-Bereich */
.footer-background {
	background: transparent;
    display: block;
    width: 100%;
    margin: 0px; /* Optional, je nach Bedarf */
    padding: 0px;
}

/* Das Iframe selbst */
        iframe#footer-iframe {
            width: 100%; /* Nimmt die gesamte Breite ein */
            display: block; /* Block-Level, um korrekt unterhalb angezeigt zu werden */
            border: none; /* Entfernt den Rand */
        }


/* Abstand unter dem Footer */
.footer-spacer {
	background: transparent;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    text-align: center;
    height: 10px;

}







/* Wrapper für den gesamten Footer */
#footerwrap {
    background: transparent;
    padding: 0px;
    text-align: center;

}

/* Bereich über den Footareas */
#footertop {
    position: relative;
    text-align: center;
    background: var(--clr4);
    border-bottom: 1px solid var(--clr1);
    border-top: 1px solid var(--clr1);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 10px;
	margin-bottom: 10px;
	box-shadow: 0 0px 10px var(--clr3); /* Schatten oben und unten */
}

/* Flexibles Layout für Footareas */
#footareaswrapp {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    background: transparent;
}

#footareas {
    display: flex;
    flex-wrap: wrap; /* Ermöglicht Zeilenumbruch */
    gap: 20px; /* Abstand zwischen den Boxen */
    justify-content: center; /* Zentriert Elemente, die nach unten springen */
    align-items: flex-start; /* Individuelle Höhen erlauben */
    padding: 0px;
	max-width: 1200px;
	
}

/* Wrapper für einzelne Footareas */
.footarea-wrapper {
    background: var(--clr4); /* Hintergrundfarbe des Wrappers */
    border-radius: 10px; /* Abgerundete Ecken */
    border: 1px solid var(--clr1);

    padding: 16px;
    flex: 1 1 calc(25% - 20px); /* Flexible Größe, Platz für 4 Boxen */
    min-width: 280px; /* Mindestbreite für kleinere Bildschirme */
    max-width: 100%; /* Maximalbreite */
	box-shadow: 0 0px 10px var(--clr3); /* Schatten oben und unten */
}

/* Einzelne Footareas */
.footarea {
	text-align: left;
    background: var(--clr2);
    border: 1px solid var(--clr1);
    color: var(--clr1);
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Überschriften in Footareas */
.footarea {
    color: var(--clr1);
}

/* Links und Texte in den Footareas */
.footarea p,
.footarea ul {
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
}

a {
  color: var(--clr1);
  text-decoration: none; /* Entfernt den Unterstrich für alle Links */
  transition: all 0.3s ease;
}

a:hover {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
}

/* Bereich unter den Footareas */
#footerbottom {
    text-align: center;
    background: var(--clr4);
    color: var(--clr1);
    font-size: 1rem;
    padding: 15px 20px;
    border-top: 1px solid var(--clr1);
    border-bottom: 1px solid var(--clr1);
	margin-top: 10px;
	margin-bottom: 10px;
	box-shadow: 0 0px 10px var(--clr3); /* Schatten oben und unten */
}

#footerbottom p {
    margin: 0;
}