/*Allgemein*/
*{
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333333;
}



/* Basis fuer html und body */
html, body {
  left: 0;
  right: 0;
  padding: 0;
    font-family: "Urbanist", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: inherit;
    scroll-behavior: smooth;
  scroll-padding-top: 350px; /* Falls nav 100px hoch ist */
  min-height: 100vh; /* Stellt sicher, dass die Seite die volle Hohe hat */
display: flex;
flex-direction: column;
max-width: 100%;
background: linear-gradient(to bottom right, #eaf1f8, #ffffff);
}


body{
  overflow-x:hidden;
}



/* Gesamtbreite des Scrollbalkens - fÃƒÂ¼r CHROME */
.main-content .right::-webkit-scrollbar {
  width: 20px; /* Breite des Scrollbalkens */
}

/* Hintergrund des Scrollbalken-Tracks */
.main-content .right::-webkit-scrollbar-track {
  background-color: red; /* Hintergrundfarbe des Scrollbalken-Tracks */
}

/* Der bewegliche Teil des Scrollbalkens (der Thumb) */
.main-content .right::-webkit-scrollbar-thumb {
  background-color: orange !important; /* Farbe des Scrollbalken-Thumbs */
  border-radius: 20px; /* Rundung der Ecken des Scrollbalken-Thumbs */
}

/* Hover-Effekt fÃƒÂ¼r den Scrollbalken-Thumb */
.main-content .right::-webkit-scrollbar-thumb:hover {
  background-color: #45a049; /* Farbe des Scrollbalken-Thumbs, wenn der Benutzer mit der Maus darÃƒÂ¼ber fÃƒÂ¤hrt */
}


/* FIREFOX Scrollbar Styling */
.main-content .right {
  scrollbar-width: thin; /* DÃƒÂ¼nner Scrollbalken */
  scrollbar-color: green !important; /* Daumen grÃƒÂ¼n, Track rot */
}

/* Entferne unnoetige Scrollbar-Stile */
*::-webkit-scrollbar {
  width: 0px;
  overflow-x: hidden;

}

*::-webkit-scrollbar-track {
  background: none;
  border:none;
  overflow-x: hidden;

}

*::-webkit-scrollbar-thumb {
  background: none;
  border:none;
  overflow-x: hidden;
}



/**::-webkit-scrollbar {
  width: 0px;
  overflow-x: auto;
border: yellow;

}

*::-webkit-scrollbar-track {
  background: none;
  border:yellow;
  overflow-x: hidden;
}

*::-webkit-scrollbar-thumb {
  background: none;
  border:yellow;
  overflow-x: hidden;
}*/



/* Icon Hand*/
.far{
  font-size:30px;
  color: inherit;
  margin-top: 10px;
  position: relative;
  float: right;
  bottom: 0;
  padding: 20px;
  cursor: pointer;
  display: flex;
  cursor: pointer;
}

.far:hover {
  font-size:30px;
  border: 5px inset black;
  border-radius: 15px;
  margin-top: 10px;
  padding: 20px;
  position: relative;
}

.far:before{
  content: '\f0a6';
}


.far:before{
  content: '\f0a6';
}

















/* fuer alte Browser-Versionen
header, footer, main {
  display: block;
}*/


.trennlinie_1{
  border-top: 5px outset rgb(124, 34, 109);
  padding: 5px 10px;
  margin: 50px 80px;
}


.trennlinie_2{
  border-top: 5px outset rgb(218, 168, 83);
  padding: 3px 0;
  margin: 30px 80px;
}

.trennlinie_3{
  border-top: 5px outset #a3456b;
  padding: 3px 0;
  margin: 10px 80px;
}


.trennlinie_4{
  border-top: 6px outset rgb(68, 8, 45);
  padding: 3px 10px;
  margin: 30px 80px;
  align-items: center;
}

.trennlinie_5{
  border-top: 6px outset #522e30;
  padding: 3px 10px;
  margin: 50px 80px;
}





/* BEGIN NAVBAR */
.navbar {
  height: 350px;
  padding: 90px 10px;
  transition: all 0.4s ease;
  position: fixed;
  overflow: hidden;
  z-index: 99;
  align-items: center;
  top: 0;
  left: 0;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 1900px;
  color: #1e3a8a;
    }



      .navbar.visible{
        visibility: visible;
        opacity: 1;
      }

/* Logo in der Navbar */
#head_logo {
  display: flex;
  align-items: center;
  margin-left: 40px;
}


  #head_logo img {
    width: 200px;
    height: 200px;
    border: 3px inset silver;
    border-radius: 20px;
  }

  #head_logo img:hover{
    border: 6px inset silver;
  }



  /* Menue in der Navbar */
  .menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0;
    right: 0 ;
    float: right;
    flex: 1;
    z-index: 99;
  }

.menu a {
  font-size: 1.8rem;
  padding: 15px 20px;
  text-decoration: none;
  color: #e5e9f0; /* Grau */
  display: flex;
  align-items: center;
  font-weight: normal;
  min-width:100px;
  justify-content: center;
  margin: 0 25px;
}


.menu a:hover{
  color:#868e96; /* grey */
  font-weight: bold;
}



/* Einstellung "Hobbies"*/
.menu_active{
  color: white !important;
  font-weight: bold !important;
  background-color: #81a1c1;
  width: 180px;
  padding: 15px 0;
  cursor: none;
  border-radius: 20px;
}

  .menu_active:hover{
    text-decoration: none;
    cursor: none;
  }


  .menu-icon {
    display: none; /* Falls nicht für Mobile gebraucht */
  }

  .menu.show {
    display: none;
  }




.menu a:nth-of-type(2):hover {
  font-weight: bold;
  text-decoration: none;
}


/* menubutton "Weigel IT-Consulting" */
.menu a:nth-of-type(4){
  align-items: center;
  min-width: 400px;
}

.menu a:nth-of-type(4):hover{
  font-weight: bold;
  text-decoration: none;
}


/* menubutton "Blog"*/
.menu a:nth-of-type(5){
  align-items: center;
}

.menu a:nth-of-type(5):hover{
  font-weight: bold;
  text-decoration: none;
}


.menu a:nth-of-type(6):hover{
  font-weight: bold;
  text-decoration: none;

}





/* Geschrumpfte Navbar */
.navbar.small {
  height: 100px; /* Kleinere Navbar */
  padding: 5px;
  background-color: #eaf1f8 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: height 0.3s ease, padding 0.3s ease;
  display: flex;
  align-items: center;
  width: 100%;
}


/*.navbar.small .menu{
font-size: 1.3rem;
color: white;
float: right;
display: flex;
padding: 15px 50px;
}*/


.navbar.small .menu a{
  font-size: 1.3rem;
  color: white;
  padding: 5px 10px;
}



/* menubutton "Weigel IT-Consulting" */
.navbar.small .menu a:nth-of-type(4){
  align-items: center;
  min-width: 250px !important;
}

.navbar.small .menu a:nth-of-type(4):hover{
  font-weight: bold;
  text-decoration: none;
}


.navbar.small .menu .menu_active{
  color:  RGB(129, 114, 169);     /* lila */
}

/* Geschrumpftes Logo */
.navbar.small #head_logo img {
  width: 60px;
  height: 60px;
  padding-top:-200px;
}





/* Hamburger Menu Styles */
.menu-button-container {
  display: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-button {
  width: 30px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s ease;
}
/* Abstand zwischen den Strichen erhoehen */
.menu-button::before {
  top: -8px;
}

.menu-button::after {
  top: 8px;
}

/* Hamburger Button Animation */
#menu-toggle {
  display: none;
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background-color: transparent;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  transform: rotate(-45deg);
}

/* END NAVBAR */






/* BEGIN sidebar */
#steuerung_side{
  margin-top: 40vh;
  width:500px;
  height: auto;
  margin-left: 40px !important;
  background-color: inherit;
  opacity: 1;
  display:  block;
}


/* Menuezeichen
.toggle-btn {
  font-size: 30px;
  color: RGB(188, 238, 104);
  background-color: transparent;
  position: fixed;
  /*top: 35vh;
  left: 40px;
  z-index: 999 !important;
  display: flex;
  cursor: pointer;
  border: 8px inset silver !important;
  padding: 10px !important;
  border-radius: 20px !important;
  opacity: 1;
}

.toggle-btn.visible{
  visibility: visible;
  opacity:1;
}



/* Menüzeichen (☰)
.toggle-btn:hover{
  background-color: RGB(188, 238, 104);
  color: white;
}

.toggle-btn.sidebar_active {
  border: 8px inset white !important;
  padding: 10px !important;
  border-radius: 20px !important;
  background-color: RGB(188, 238, 104) !important;
  color: white;
}*/


/* BEGIN Sidebar */
.sidebar {
  padding-top: 20px;
  z-index: 99; /* Sicherstellen, dass die Seitenleiste immer oben ist */
  transition: left 0.5s ease;
  content: "";
  height: 500px;
  width: 300px;
  position: fixed;
  z-index: 1;
  left: 40px;
  background-color: #d8dee9;
  overflow: hidden;
  }


.sidebar a {
  /*padding: 10px 15px;*/
  text-decoration: none;
  display: block;
  transition: 0.3s;
  text-align: left;
  padding: 6px 8px 6px 16px;
  font-size: 20px;
  color: #818181;
}

.sidebar a:hover {
  color: #5e81ac;
  font-weight: bold;

}


.sidebar a.open {
  /*  left: 0; /* Sidebar anzeigen*/
  width: 470px;
}


.sidebar.active, .sidebar a.bar.active {
  background-color:  #5e81ac; /* Hightlight fuer den aktiven Link */
  color: white !important;
  font-weight: bold;      /* optional: fetter Text */
  border: 5px outset RGB(76, 106, 146); /* Optional: optische Markierung am Rand */
  border-radius: 20px;
}


/* Mouseover
.sidebar a:hover:not(.sidebar_active) {
  background-color: RGBA(76, 106, 146, 0.67);
  color: white;
  font-weight: bold;
  width: 100%;
  border: 5px outset #5e81ac;
  border-radius: 15px;
}*/


/* Wenn die Sidebar sichtbar ist, zeige den Inhalt an*/
.sidebar.open + .main-content {
  display: block;
}



/* Allgemeine Schriftgroesse fuer alle Font Awesome Icons
/* Margin rechts anpassen */
.w3-margin-right {
  margin-right: 30px; /* Beispiel: 10px Abstand rechts */
  width: 20px; /* Breite des Icons */
  color: black;
  font-size: 1.5rem;
  text-transform: lowercase !important;
}

/* Add media queries for small screens (when the height of the screen is less than 450px, add a smaller padding and font-size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}

.gcse-search {
  top: 50vh !important;
  display: block;
  flex-direction: column;
  position: relative;
  margin-top: auto !important;
  margin: 20px 0;
  width: 100%;
}
/* END .sidebar */


b{
  font-weight: bold;
}


/* Allgemeine Schriftgroesse fuer alle Font Awesome Icons
/* Margin rechts anpassen
.w3-margin-right {
  margin-right: 30px; /* Beispiel: 10px Abstand rechts
  width: 20px; /* Breite des Icons
  color: inherit; /* Beispiel: grÃ¼ne Farbe
  font-size: 1.5rem;
  text-transform: lowercase !important;
  margin-left: 40px;
}

.custom-icon {
  font-size: 2rem; /* Groesseres Icon
  color: inherit;
  /*transition: transform 0.3s ease; /* Animationseffekt
}

i{
  text-transform: lowercase !important;
  margin-left: 40px;

}


/*.custom-icon:hover {
  transform: scale(1.5); /* VergrÃ¶ÃŸern des Icons bei Hover
}

 */



#ueber_mich, #musik, #sprache, #schreiben, #schriften{
  padding: 20px 30px;
}




/* Video
video {
  width: 100%;
  height: 80%;
  z-index: 1;
  pointer-events: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.video-section {
  position: relative;
  width: 100%;
  background-color: black;
  overflow: hidden;
  padding: 0;
  margin: 0;
}


.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2em;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-shadow: 1px 1px 4px black;
}


.video-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  margin: auto;
}

.video-container.visible {
  opacity: 1;
  transform: translateY(0);
}*/


.container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: auto;
  width: 100%;
}

.container img {
  vertical-align: middle;
  height: 500px;
  width: 350px !important;
}

.container .content {
  position: absolute;
  bottom: 0;
/*  background: rgb(0, 0, 0); /* Fallback color
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  width: 100%;
  padding: 20px;
}


.container .content h1{
  color: #c92a2a !important;
  font-weight: bold;

}


.container .content h2{
  color: #2596be !important;
  font-weight: bold;

}




/* BEGIN main */
main {
  width: 1900px;
  height: auto;
  text-align: left;
}




/* Kapitel "Ueber mich" */

#header{
  position: relative;
  margin-left: 400px;
  display: flex;
  z-index: 10;
  flex-direction: column;
  padding:20px;
  width: auto;
  height: auto;
  text-align: center;
  align-items: center;
  opacity: 1;
}


/* BEGIN BREADCRUMB */
.breadcrumb {
  position: absolute;
  width: 100%;
  height: 50px;
  background: transparent;
  padding:  0;
  display: inline-flex;
  float: left;
  z-index: 999 !important;
  margin-left: 250px;
}

/* Breadcrumb style */
.breadcrumb ul {
  list-style-type: none;
  color: #434c5e;
  width: 100%;
  margin: 0;
  display: inline-flex;
  font-size: 20px;
}


/* Gestaltung Links */
.breadcrumb ul li a {
  text-decoration: none;
  color: #434c5e;
  font-size: 20px;
  padding: 25px 10px;
  z-index: 999;
}

/* Hover-Effekt */
.breadcrumb ul li a:hover {
  text-decoration: underline;
  z-index: 999;
  padding-bottom: 15px;
  border-radius:15px;
}

/* Gestaltung von >> */
.breadcrumb ul li + li:before {
  margin: 0 10px;
  content: ">>";
  font-size: 20px;
  color: #434c5e;
}


/* Gestaltung von >>*/
.breadcrumb ul li + li:before {
  margin: 0 10px 0 5px ;
  content: ">>";
  font-size: 20px;
  font-weight: normal;
  color: #434c5e;
  display: inline-flex;
  flex-direction: row;
  background-color: none;
}

.header_main{
  margin-top: 20px;
  padding: 20px;
}



.header_main h1{
  font-size:4rem;
  color: inherit important;
  font-family: "Lumanosimo", serif;
  font-weight: bold;
  font-style: normal;
  /*padding-top: 10px;*/
}

.header_main h2{
  font-size:1.8rem;
  text-align: center;
  color: inherit;
  font-family: "Urbanist", serif !important;
  font-optical-sizing: auto;
  font-weight: normal;
  padding: 10px 20px;
}













.ueber_mich_container {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: auto;
}

.sticky-image {
  position: sticky;
  top: 0;
  width: 200px;
  margin-right: 40px;
  flex-shrink: 0;
}

.text-content {
  flex: 1;
}




.main-content{
  position: relative;
/*  margin-top: 30vh !important;*/
  margin-left: 420px !important;
  margin-right: 400px !important;*/
  margin-bottom: 150px !important;
  transition: margin-left 0.5s ease;
  max-width: calc(100%-820px);
  width: 1400px;
  /*display: flex;*/
  display: none;
/*border: 20px solid transparent !important ; /* Rahmen benoetigt Platz*/
  border-radius: 50px; /* Abgerundete Ecken des Rahmens*/
  box-sizing: border-box; /* Box-Sizing beruecksichtigen fuer die Berechnung der Groessee*/
  clip-path: inset(0 round 30px); /* 30px abgerundete Ecken*/
  /*border-image: url("../images/wallpaper33.png") 30 round !important;*/
  font-family: "Lumanosimo", serif;
  font-weight: 400;
  font-style: normal;
  z-index: 9;
  flex-direction: column;
  padding:10px 0;
  height:650px;
  text-align: left;
  overflow-y: auto;   /* Scrollbar fuer das Dropdown bei Bedarf*/
  overflow-x:hidden;
  flex: 1; /* Füllt den verbleibenden Platz */
  background-color: transparent !important;
  color: #373737;

}



.main-content::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  /*border-image: url("../images/wallpaper33.png") 30 round !important;*/
  border-size: cover;
  border-radius: 50px; /* Abrundung des Rahmens */
  z-index: -1; /* Hintergrund hinter den Inhalt legen */
}



.main-content h1, #literatur_uebersicht h1{
  font-size:4rem;
  color: inherit important;
  font-family: "Lumanosimo", serif;
  font-weight: bold;
  font-style: normal;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

b{
  font-weight: bold;
}

.main-content h2, #literatur_uebersicht h2{
  font-size:2rem;
  text-align: left !important;
  color: #373737;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: normal !important;
  padding: 20px 0;
}


.main-content h3, #literatur_uebersicht h3{
  font-size:2rem;
  text-align: left;
  color: #373737;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: normal !important;
  padding: 20px 0;
}

.main-content h4{
  font-size:2.5rem;
  text-align: center !important;
  align-items: center;
  color: #373737;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: bold !important;
  padding: 20px 0;
}
.main-content ul{
  font-size: 2rem;
  padding: 20px 40px;
  text-align: left;
  color: #325596;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  /*list-style-type: "💎";*/
}


.main-content ul li{
  /*list-style-type: "💎";*/
  padding: 20px;
  font-size: 2rem;
  text-align: left;
  color:#325596;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: normal;
}


.main-content_image{
  width: 250px;
  height: 400px;
}


.main-content.active {
  display: block;
}



/* Kapitel "Musik" */
.musik_box{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row; /* 2 Spalten */
  margin: 0 40px;
  overflow: hidden !important
}

.box01{
  float: left;
  width: 45%;
  padding: 10px 20px;
  flex-direction: column;
  margin-right: 10px;
  height:300px;
}

.box01 h2{
  padding-bottom: 13px !important;
  color: inherit !important;
  margin: 0 auto;

}

.box02{
  float: right;
  width: 45%;
  padding: 10px 20px;
  flex-direction: column;
  margin-left: 10px;
  height: 300px;
}

.box02 h2{
  padding-bottom: 13px !important;
  color:inherit !important;
  margin: 0 auto;

}

.musik_right h2 a{
  color: inherit !important;
text-decoration: none;
font-weight: normal;
}

.musik_right h2 a:hover{
  font-weight: bold;
  text-decoration: none;
  color: #fab005 !important;

}


.musik_right h2{
  font-size: 1.8rem;
  text-align: center;
  font-weight: normal;
  color:inherit;
  align-items: center;
  padding: 10px;
}


/* Kapitel "Farben, Formen und Gestaltung" */

/* BEGIN gallery */
#toggleGalleryBtn {
  margin: 1em 0;
  padding: 0.5em 1em;
  font-size: 1rem;
  cursor: pointer;
  top: 5px;
  right: 20px;
  position: absolute;
  z-index: 9999 !important;
  background-color: #d8f5a2;
  border: 5px outset silver;
  border-radius: 20px;
  }


.gallery_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100vw;
  height:100% ;
  margin: 0;
  padding: 0;
}


/* Galerie oben und unten */
.gallery_container_top{
  width: 100vw;
  height:100%;
  top: 0;
  z-index: 99 !important;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
  visibility: visible;
  opacity: 1;
  background-color: black;
  overflow: visible;
  margin: 0;
  padding: 0;
}

.content_after_gallery {
  transition: margin-top 0.6s ease;
  padding: 2em;
  z-index: 999 !important;

}


.gallery_container_top.collapsed {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}


/* Galerie-Animation */
.gallery {
  display: flex;
  flex-direction: row;
  width: 200%; /* Doppelte Breite für Endlosschleife */
  animation: scrollLeft 50s linear infinite;
}

.gallery-item {
  display: inline-block;
}

.gallery-item img {
  width: 250px;
  height: 400px; /* Kleinere Höhe, da Galerie horizontal ist */
  /*object-fit: cover;*/
  padding: 10px 15px;
  margin: 0;

}

/* Endlose horizontale Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Hälfte der Breite verschieben */
  }
}














#farben_formen h1{
  position: relative;
  margin-top: 40px;
  padding: 0;
}



/* Gruende */
.animated-text {
  background: linear-gradient(45deg, #ff0000, #ff7300, #ffeb00, #47ff00, #00ffee, #2b65ff, #8000ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-animation 5s infinite linear;
  margin-top:-20px !important;
  font-size:3.6rem !important;
  font-weight: bold !important;
}

@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}








/* Serviceleistungen */
.main-content_bottom{
  display: inline;
  flex-direction: row;
}


.main_themen ul{
    list-style-type: 💎;
    padding: 0 20px 0 40px;
    text-align: left;
    font-size: 1.4rem;
  }


  .main_themen ul li{
    list-style-type: 💎;
    padding: 0 20px 10px 40px;
    font-size: 1.4rem;
  }

  .literatur-links {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
  }

  .literatur_links li {
    margin: 8px 0;
  }

  .literatur_links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }

  .literatur_links a:hover {
    text-decoration: none;
    font-weight: bold;
    color: #000;
  }
































/* CSS fuer die Vorschau */
.vorschau {
  display: none;
  position: absolute;
  z-index: 1;
  margin-left: 15%;
}

.vorschau_image{
  width: 300px;
  height: 350px;
  background-color: yellow;
  /*border: 8px outset green;*/
}

/* CSS fuer den Link */
.link:hover + .vorschau {
  display: block;
  width: 300px;
  height: 350px;
  /*border: 8px ouset rgb(218, 133, 33);*/
  text-decoration: none;
  color: green;
}



.sub-block a{
  border: none;
  color: orange;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.sub-block a:hover{
  text-decoration: underline;
  color: inherit;
}


.sub-block h1{
  text-align: center !important;
  font-size: 2.5rem !important;
  font-weight: bold !important;
  color:RGB(166, 30, 77) !important;
}

.sub-block h2{
  text-align: left !important ;
  font-size: 1.5rem !important;
  font-weight: normal ;
  color: inset !important;
}

details{
  /*margin-bottom: 15px;
  display: block;
  flex-direction: column;
  padding: 15px 20px;*/
}

details summary{
  text-align: left;
  outline: none;
  transition: 0.4s;
  border: 4px inset rgb(231, 134, 33); /* orange*/
  padding: 10px 20px;
  width: 100%;
 display: inline-block;
  background-color: #b6d9b1; /* hellgruen */
  color: #373737;
  border-radius: 15px;
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
  margin: 10px 0;
  list-style: none;
  display: flex;
  justify-content: space-between; /* Text und Pfeil trennen */
  align-items: center;
  display: flex;
  margin: 20px;
}

/* Vor dem Text: Pfeil (statt Plus) */
       details summary::after {
           content: "▼"; /* Pfeil vor dem Text */
           margin-right: 10px;
           color: rgb(194, 37, 92);
           font-weight: bold;
           display: inline-block;
           transition: transform 0.3s ease; /* Rotation animieren */
       }

       details[open] > summary::after {
           content: "▲"; /* Pfeil nach oben bei geöffnetem Zustand */
           color: rgb(92, 124, 250);
       }

       /* Nach dem Text: Pfeil */
       summary .arrow {
           content: "▼";
           font-size: 0.8em;
           margin-left: 10px;
           display: inline-block;
           transition: transform 0.3s ease; /* Rotation animieren */
       }


       /* Einrückung für Unterebenen */
       details p, details details {
           margin-left: 20px;
       }



/* Kapitelüberschriten */
summary.active{
  margin: 10px 0 10px 0;
  color: #373737;
  background-color: #b6d9b1; /* hellgruen */
  border-radius: 15px;
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
}


summary:hover {
  background-color: #ccc;
  color: rgb(91, 60, 119);

}

summary:after {
  content: '\002B';
  color: #373737;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

#stenotechniken{
  width: 100%;
  flex: 1;
  float: left;
  display: block;
  height: auto;
}



/* Stil für die Liste */
details ol {
    list-style: none; /* Entfernt das Standard-Listensymbol */
    counter-reset: custom-counter; /* Initialisiert den Zähler */
    margin-left: 20px;
    padding: 20px 40px;

}


details ol li {
  content: counter(custom-counter, lower-alpha) " "; /* entfernt bspw. die ) */
  counter-increment: custom-counter; /* Erhöht den Zähler */
  margin-bottom: 20px;
  color: green !important;
  display: inline-block !important;
  font-size: 1.3rem !important;
  margin-left: 20px;
  padding-left: 40px;
}


details ol li::before{
    content: counter(custom-counter, lower-alpha) " "; /* entfernt bspw. die ) */
    font-weight: normal;
    margin-right: 20px;

}

details ul {
  list-style-type: "-";
  padding-left: 20px; /* Einrückung der Liste */
  font-size: 20px;
  text-align: left;
}


details ul li{
  list-style-type: "-";
  padding: 0 20px 20px 20px;
  font-size: 20px;
  text-align: left;
}



details p {
        margin: 0 0 10px 20px; /* Abstand für den Text */
    }



details a{
  font-weight: bold;
  text-decoration: underline;
  padding: 10px;
  margin: 20px 15px;
  color: rgb(221, 163, 77);
  font-size: 20px;
  border: 3px inset rgb(91, 60, 119); /* lila */
  border-radius: 15px;
}

details a:hover{
  text-decoration: none;
  color: rgb(91, 60, 119);
}

details a:active{
  text-decoration: none;
  color: rgb(91, 60, 119)
  background-color: rgb(175, 198, 131);
}


details h2 {
  font-size: 1.3rem !important;
  margin: 10px 0 30px 0 !important;
  color: inherit !important;
  text-align: left !important;
  line-height: 1.2 !important;
  font-weight: normal !important;
}

details h2 br{
  margin-bottom: 0.5rem !important;
}





@keyframes expand {
    from {
        max-height: 0;
    }
    to {
        max-height: 100vh;
    }
}

/* Styling für das <figure>-Element */
figure {
    margin: 1rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Styling für das <figcaption>-Element */
figcaption, cite{
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    padding: 0.5rem;
  /*  background-color: #f0f0f0;*/
    width: 100%;
    /*border-top: 1px solid #ddd;*/
}

figcaption a, cite a{
  color: inherit;
  border: none;
  font-size: 15px;
  text-decoration: none;
  text-align: left;
  padding: 0;
  margin: 0;
  font-weight: normal;
}


figcaption a:hover{
  text-decoration: underline;
}



/* Optional: Styling für das Bild innerhalb von <figure>
figure img {
    max-width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
}
*/

/* BEGIN "schreiben"*/

 /* Container mit flex für nebeneinander */
#section_container {
  display: flex;
  gap: 20px;
  max-width: 1500px;
  margin: 20px auto;
  flex-wrap: wrap;
  flex-direction: row;
}

/* Jede Box = Oberbegriff */
.category-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  /*box-shadow: 0 0 6px #ccc;*/
  flex: 1 1 200px; /* flexibel, mind. 200px */
  min-width: 200px;
}

/* Überschrift mit Pfeil */
.category-box > h4 {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-left: 20px;
}
.category-box > h4::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.category-box.open > h4::before {
  transform: translateY(-50%) rotate(90deg);
}

/* Unterliste ein- und ausblenden */
.category-box ul {
  list-style: none;
  padding-left: 10px;
  margin-top: 10px;
  display: none;
}
.category-box.open ul {
  display: block;
}

/* Links der Unterpunkte */
.category-box ul li {
  margin: 6px 0;
}
.category-box ul li a {
  text-decoration: none;
  color: #0366d6;
  cursor: pointer;
}
.category-box ul li a:hover {
  text-decoration: underline;
}

/* Anzeigebereich unten */
#textausgabe {
  max-width: 700px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px #ccc;
}
#textinhalt {
  margin-top: 10px;
  white-space: pre-wrap; /* Zeilenumbruch erhalten */
}

/* Hashtags unter Text */
#tags {
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-style: italic;
  color: #666;
}
.toggle > span {
  cursor: pointer;
  position: relative;
  padding-left: 1.4em;
  font-weight: bold;
  display: inline-block;
}

.toggle > span::before {
  content: "►";
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.3s ease;
}

.toggle.open > span::before {
  transform: rotate(90deg);
}

.toggle ul.submenu {
  display: none;
  margin-left: 20px;
  list-style-type: disc;
}
/* END schreiben */















#kunstbutton{
  display: inline-block;
  padding: 5px 10px;
  border: 5px inset #81a1c1;
  color: black;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  margin: 0 5px;
  transition: transform 0.3s ease;
}


/* Stil fuer den Button beim Ueberfahren mit der Maus */
#kunstbutton:hover {
  /*transform: scale(1.1); /* Vergroessern um 10% */
  color:#81a1c1 !important;
  font-weight: bold;
}











  /* Fussbereich */
  /* Inhalt der 4 Spalten */
  #footer{
    position: fixed;
    width: 100%;
    background-color: #eaf1f8 !important;
    color: #868e96 !important;
    font-size: 20px;
    bottom: 0 ;
    text-align: center;
    height: 160px;
    z-index:99;
    float: left;
    transition: opacity 0.3s ease;  /* Sanfte ÃƒÅ“bergangseffekte */
    opacity:0;  /* Anfangs unsichtbar */
    display: none;
  }

   /* Die Klasse, die den Footer sichtbar macht */
   #footer.show {
     opacity: 1;  /* Footer sichtbar */
   }

   #footer.hidden {
     opacity: 0;
     width: 100% !important;
     z-index: 999;
   }

   #footer.active{
     display: block;
   }

   /* Button, um den Footer ein-/auszufahren */
   .toggle-button {
     position: fixed;
     bottom: 20px;
     right: 20px;
     padding: 10px 15px;
     background-color: #c5d4e4;
     color: #eceff4 !important;
     border: 3px outset #d6e0ea;
     border-radius: 8px;
     cursor: pointer;
     z-index: 9999;
     font-size: 20px;
   }

   .toggle-button:hover {
     color: #81a1c1 !important;
     font-weight: bold;
   }


   .toggle-button.active{
     background-color:#5e81ac !important;
   }

       #footertoggle-button{
         display: none;
       opacity: 1;
   }

   /* Inhalt der 4 Spalten */
 .footer_container{
 padding-top: 5px;
 width: 100%;
 z-index: 999;
 color: #868e96 !important;
 }


 /* Spalten*/
 .footer_row{
   display: flex;
   flex-direction: row;
   padding: 0 5%;
   width: 100% !important;
   z-index: 999;
   color: #868e96 !important;
   }


   /* 1. Spalte */
   .col01{
     padding: 5px 4%;
     min-width: 440px;
     color: #868e96 !important;
     margin-left: 200px;
   }


   .MyFooter ul{
     list-style: none;
     display:  flex;
     flex-direction: column;
     text-align: left;
     color: #868e96 !important;
   }


   .MyFooter ul li{
     list-style: none;
     padding-bottom: 10px;
     float: left;
     color: #868e96 !important;
   }

   .MyFooter ul li a{
     color: #868e96 !important;
     text-decoration: none;
     font-weight: normal;
     transition: all 0.5s ease;
   }

   .MyFooter ul li a:hover{
     color: #5e81ac !important;
     text-decoration: none;
     font-weight: bold;
   }


   /* 2. Spalte */
   .col02{
     padding: 5px 6%;
     color: #868e96 !important;
   }


   .col02 h1{
     color: inherit !important;
     text-decoration: none;
     transition: all 0.5s ease;
     text-align: center;
     font-size: 19px;
     font-weight: normal;
   }


  /*.col02 h2{
    padding-top: 3px;
    color: white !important;
    text-decoration: none;
    transition: all 0.5s ease;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
  }*/





  /* 3. Spalte */
  .col03{
    padding: 5px 6%;
    color: #868e96 !important;
  }



  .col03 h1{
    color: #868e96 !important;
    text-decoration: none;
    transition: all 0.5s ease;
    text-align: center;
    font-size: 19px;
    font-weight: normal;
  }


  .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #868e96 !important;
    transition: all 0.5s ease;
  }

  .social-links a:hover{
    color: #5e81ac !important;
    background-color: #ffffff;
    text-decoration: none;
  }





  .footer_bottom ul{
    width: calc(100% - 250px);
    float: left;
    list-style: none;
    text-align: center;
    display: inline;
    z-index: 100;
    margin-left:8%;
    /*padding: 1 auto;*/
    color: #868e96 !important;
  }


  .footer_bottom ul li{
    margin-top: 1em;
    align-items: center;
    display: inline;
    color: #868e96 !important;

  }

  .footer_bottom ul li a{
    color: #868e96 !important;
    text-decoration: none;
    font-weight: normal;

  }

  .footer_bottom ul li a:hover{
    text-decoration: none;
    font-weight: bold;
  }



  /* an den Seitenanfang springen*/
  #top {
    display: inline-block;
    padding: 10px;
    border: 5px inset #f9d66c;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 22px;
    cursor: pointer;
    margin: 0 5px;
    transition: transform 0.3s ease;
  }

  #top:hover {
    font-weight: bolder;
    color:#f9d66c;
  }




  .footer_bottom ul{
  margin-top: -10px;
    padding-top: 5px;
    width: 100%;
    float: left;
    list-style: none;
    text-align: center;
    display: inline;
  }

  .footer_bottom ul li{
    align-items: center;
    display: inline;
  }

  .footer_bottom ul li a{
    color: inherit;
    text-decoration: none;
  }

  .footer_buttom ul li a:hover{
    color: #e06228;
    text-decoration: none;
  }







  .previous {
    background-color: inherit;
    color: white !important;
    width: 250px;
    height: 70px;
    text-decoration: none;
    padding: 5px 18px;
    font-weight: bold;
  }

  .previous:hover {
    background-color: inherit;
    color: #914f11;
    text-decoration: none;
    border: 5px inset #914f11;
    border-radius: 15px;
    padding: 5px 18px;
  }

  /* Seite vorwaerts */
  .next {
    background-color: inherit;
    color: white !important;
    width: 250px;
    height: 70px;
    text-decoration: none;
    padding: 5px 18px;
    font-weight: bold;
  }


  .next:hover {
    background-color: inherit;
    color: rgb(124, 34, 109);
    text-decoration: none;
    border: 5px inset rgb(124, 34, 109);
    border-radius: 15px;
    padding: 5px 18px;
  }


  .next:active{
    background-color: RGBA(238, 190, 250, 0.76);
  }

  .previous:active{
    background-color: RGBA(255, 169, 77, 0.76);
  }


  .middle{
    background-color: inherit;
    color: inherit;
    width: 250px;
    height: 70px;
    text-decoration: none;
    padding: 5px 18px;
    font-weight: bold;
    border: 5px inset RGB(51, 154, 240);
    border-radius: 15px;
    box-shadow: 5px 5px 5px 5px solid RGB(208, 235, 255);
    margin: 0 20px;
  }

  .middle:hover{
  border-radius: 15px;
  color: RGB(51, 154, 240);
  padding: 5px 18px;
  }




  /* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 700px) {
    .main_row {
      flex-direction: column;
    }
  }

  /* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
  @media screen and (max-width: 400px) {
    .navbar a {
      float: none;
      width: 100%;
    }


    @media only screen and (max-width: 700px) {
      .responsive {
        width: 49.99999%;
        margin: 6px 0;
      }
    }

    @media only screen and (max-width: 500px) {
      .responsive {
        width: 100%;
      }
    }



    /* Responsive Design
    @media (max-width: 768px) {
        .row {
            flex-direction: column; /* Spalten untereinander anordnen
        }

        .steno_content, .steno_side {
            flex: 1; /* Gleiche Breite */
        }
    }*/




    /* RESPONSIVE: bei größeren Bildschirmen Sidebar dauerhaft sichtbar */
    @media screen and (min-width: 900px) {
      .sidebar-container {
        transform: translateX(0);
        position: static;
        width: 300px;
        height: auto;
        box-shadow: none;
      }

      .toggle-btn {
        display: none;
      }
    }
