*{
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: #325596;
  box-sizing: border-box;
}


body, html {
  left: 0;
  right: 0;
  padding: 0;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #373737;
  scroll-behavior: smooth;
  scroll-padding-top: 350px; /* Falls nav 100px hoch ist */
  min-height: 100vh; /* Stellt sicher, dass die Seite die volle Hohe hat */
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}


body{
  overflow-x:hidden;
}



canvas {
  pointer-events: none;
  position: fixed; /* Fixiert das Canvas, sodass es nicht scrollt */
  top: 0;
  left: 0;
  width: 100vw; /* Breite = 100% der Ansicht */
  height: 100vh; /* Höhe = 100% der Ansicht */
  z-index: -1; /* Canvas wird hinter dem Inhalt angezeigt */
}


*::-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;
}








/* Startscreen - ganzer Bildschirm */
.startscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: transparent !important;*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

.fullscreen-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.enter-button {
  padding: 1em 2em;
  font-size: 1.2em;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  border-radius: 10px;
  position: absolute;
  bottom: 50px;
  margin-left: 10%;
}





/* BEGIN NAVBAR */
.navbar {
  height: 350px;
  padding: 90px 10px;
  transition: all 0.4s ease;
  position: fixed;
  overflow: hidden;
  opacity: 0;
  z-index: 99 !important;
  align-items: center;
  top: 0;
  left: 0;
  right: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  }


.navbar.visible{
  visibility: visible;
  opacity: 1;
}





/* Logo Styles */
#head_logo {
  display: flex;
  align-items: center;
  margin-left: 40px;

}

#head_logo img {
  width: 200px;
  height: 200px;
  border: 3px inset silver;
  border-radius: 20px;
}


/* Menue in der Navbar */
.menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 1200px;
  padding: 0;
  float: right;
  flex: 1;
  margin-right:80px;
  margin-left:8%;
}


/* Hier die Richtung der nav-Leiste einstellen */
.menu a {
  font-size: 1.8rem;
  padding: 15px 10px;
  text-decoration: none;
  color: RGB(173, 181, 189); /* Grau */
  display: flex;
  align-items: center;
  min-width:190px;
  justify-content: center;
  margin: 0 10px;
}



.menu a:hover{
  color: #373737; /* grey */
  font-weight: bold;
}



/* Einstellung "Vita"*/
.menu_active{
  color:black !important; /* schwarz */
  font-weight: bold !important;
  background-color: rgb(188, 238, 104); /* mintgruen */
  min-width: 210px;
  padding: 15px 0;
  margin: 0 20px 0 10px;
  border-radius: 20px;
  cursor: none;
}

.menu_active:hover{
  cursor: none;
  font-weight: bold;
  color:black !important; /* schwarz */
}


.menu.show {
  display: none;
}



/* menubutton "Weigel IT-Consulting" */
.menu a:nth-of-type(4){
  align-items: center;
}


.menu a:nth-of-type(4):hover{
  font-weight: bold;
  text-decoration: none;
}

.menu-icon {
  display: none;
}



/* Geschrumpfte Navbar */
.navbar.small {
  height: 100px; /* Kleinere Navbar */
  padding: 5px 10px;
  background-color: RGB(129, 114, 169);
  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 */
  margin-left: 9%;

}

/* Geschrumpftes Logo */
.navbar.small #head_logo img {
  width: 60px;
  height: 60px;
  margin:0;
}






/* 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 erhÃ¶hen */
.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);
}



/* Hauptinhalt*/
.main-content {
  display: none;
  padding: 2em;
}

/* Sichtbar, wenn Startscreen versteckt ist */
.main-content.visible {
  display: block;
}

/* Hilfsklasse */
.hidden {
  display: none;

}



#header{
  margin-top: 30vh !important;
  left:0 !important;
  right: 0;
  display: flex;
  border: 20px solid transparent !important ; /* Rahmen benoetigt Platz*/
  border-image: url("../images/wallpaper32.png") 30 round !important;
  position: relative;
  font-family: "Lumanosimo", serif;
  font-weight: 400;
  font-style: normal;
  z-index: 10;
  flex-direction: column;
  width: 100%;
  height: 450px;
  clip-path: inset(0 round 30px); /* 30px abgerundete Ecken */
  text-align: center;
  margin-bottom: 40px;
}

/* Ueberschrift */
.header_head{
  width: 100%;
  height: auto;
  display: inline;
  flex-direction: row;
  justify-content: center;
}

.header_head .left {
  float: left;
  text-align: center;
  width: 40% !important;
  height: 100%;
  border: none !important;
  justify-content: center;
  padding:25px;

}

#logotext{
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 6rem;
  text-align: center;
  align-items: center;
  color: orange;
  margin-top: 15%;
}

.header_head .right{
  float: right;
  text-align: center;
  width: 60% !important;
  height: 100%;
  border: none !important;
  justify-content: center;
  padding:25px;
}

.mycard_image{
  width: 300px;
  height: 350px;
  align-items: center;
  justify-content: center;
  padding: 5px;
}



.image-container {
    position: relative;
    display: inline-block;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 0px 25px 30px #5F4678; /* Gleichmaessiger Schatten */
    border-radius: 20px;
}

.image-container img {
    width: 300px;
    height: 400px;
    display: block;
    max-width: 100%;
    border-radius: 20px;
}
/* END #header */




/* BEGIN Hauptteil*/
main{
  width: 100%;
  height: auto;
  flex-direction: column;
  margin-bottom: 200px;
  padding: 0;
}




/* Create two equal columns that floats next to each other */

.main_row{
  width: 100%;
  height: auto ;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: row;
  margin-top: 20px;
}

/* Clear floats after the columns*/
.main_row:after {
  content: "";
  display: table;
  clear: both;
}



.main_column {
  display: inline-flex;
  flex-direction: row;
  height: auto;
  width: 100%;
}




/* BEGIN von zwei Spalten */
/* Linke Seite*/
.leftcolumn {
  float: left;
  width: 55%;
  padding: 0;
  flex-direction: column;
  margin-right: 20px;
}


/* Add a card effect for articles */
.card {
  padding: 20px;
   margin: 5vh 0;
   height: auto;
   box-shadow: 0px 0px 25px 30px RGB(95, 158, 160);
   border-radius: 20px;
   flex-direction: column;
}

.card h1{
  font-size:4rem;
  text-align: center;
  align-items: center;
  color: inherit;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  padding: 30px;
}

.card h1 a{
  font-size:4rem;
  text-align: center;
  align-items: center;
  color: #373737;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  padding: 30px;
  text-decoration: none;
}


.card h1 a:hover{
color:  RGB(148, 216, 45);
text-decoration: none;
}


.card h2{
  font-size:2rem;
  text-align: center;
  align-items: center;
  color: inherit;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  padding: 30px;
}

.card h3{
  font-size:1.5rem;
  text-align: center;
  align-items: center;
  color: inherit;
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  padding: 30px;
}

.card ul{
  padding: 10px 20px 5px 20px;
  margin: 0;
font-size: 1.5rem;
}

.card ul li{
  list-style: "*";
  padding: 10px 20px 5px 20px;
  margin: 0;
  font-size: 1.5rem;
}







.card_row{
  display: inline-flex;
  flex-direction: row !important;
width: 100%;
height: auto;
}

.card_column{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}



.card .left{
  width: 40%;
  height: auto;
  float: left;
  flex-direction: column;
  background-color: green;
  }


  .card .right{
    width: 60%;
    height: auto;
    float: right;
    flex-direction: column;
    }

/* Stories */
details {
  display: block;
  width: 100%;
  border-radius: 5px;  /* Optional: Abgerundete Ecken */
  margin-left: 20px;
  font-family: inset;
  margin-bottom: 20px;
  padding: 10px;
}




/* Standard-Pfeil entfernen für Webkit-Browser */
details[open] {
  /*background-color: RGB(216, 245, 162);*/
  padding: 10px; /* Statt 0*/
}



details[open] summary {
  background-color:RGB(250, 176, 5);
  color: rgb(91, 60, 119);
}

/* einzelne Kaesten*/
details summary {
  text-align: left;
  outline: none;
  border: 10px groove rgb(231, 134, 33);
  padding: 10px 20px;
  color:rgb(91, 60, 119);
  border-radius: 15px;
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
  min-width: 300px;
  margin-left: -30px;
  /*background-color: RGB(134, 46, 156);*/
}


details summary:hover {
  background-color: #ccc;
}

/* Pfeil nach oben bei geschlossenem Zustand*/
details summary::after {
  content: "▲";
  margin-left: 10px;
  color: rgb(194, 37, 92);
  font-weight: bold;
}


/* Pfeil nach unten bei geoeffnetem Zustand*/
details[open] > summary::after {
  content: "▼";
  color: rgb(92, 124, 250);
}

/* Einrückung für Unterebenen*/
details > details {
  margin-left: 50px;
}

/* Entfernt den Standard-Pfeil und stellt sicher, dass das Öffnen funktioniert */
details > summary {
  list-style: none;
  list-style: none;
  display: flex; /* Stellt sicher, dass der Text und der Pfeil korrekt ausgerichtet sind */
  align-items: center;
  justify-content: space-between; /* Optional: Pfeil am rechten Rand */
}

/* Standard-Pfeil entfernen für Webkit-Browser */
details > summary::-webkit-details-marker {
  display: none;
}

/* Falls `padding: 0;` das Öffnen blockiert, besser entfernen oder anpassen */
details[open] {
  /*background-color: RGB(216, 245, 162);*/
  padding: 10px; /* Statt 0 */
}






/* Card "Hobbies" */

/* Slideshow container */
.slideshow-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}



.mySlides {
  display: none;
}


img {
  vertical-align: middle;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color:black !important;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #373737;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px 50px 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation*/
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


/* Veranstaltungen */

/* Tabelle */
table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid #ddd;
  border-spacing: 0;
  border-width: thin 0 0 thin;
}

caption{
  font-size: 1.7rem;
  text-align: center;
  font-weight: bold;
  padding: 10px 20px;

}



/*Spaltenueberschriften */
th {
  background-color: rgb(208, 195, 126);
  text-align: center;
  border-right: 1px inset rgb(120, 94, 208);
  border-left: 1px inset rgb(120, 94, 208);
  border-bottom: 2px outset rgb(242, 91, 51);
  font-size: 1.8rem;
  font-weight: bold;
  padding: 10px 0;
}

td, th {
  padding: 0.33rem 0.5rem;
  border-right: 1px inset rgb(120, 94, 208);
  border-left: 1px inset rgb(120, 94, 208);
  border-bottom: 2px outset rgb(242, 91, 51);
  font-size: 1.6rem;
}

tbody  {
  background-color:#eee;
}

tr:nth-of-type(even) {
  background-color:#fff;
}

td:first-child{
  font-weight: bold;
  font-size: 1.6rem;
  background-color: rgba(163, 163, 163, 0.72);
}






/* Blog Grafik */
.blog_image{
  width: 400px;
  height: 350px;
  text-align: center;
  align-items: center;
  justify-content: center;
  }

/*stories Grafik */

  .stories_image{
    width: 530px;
    height: 600px;
    align-items: center;
    margin-left: 25%;
    padding: 30px;
    }



























/* Card Podcast*/
#podcast{
  text-align: center !important;
  align-items: center !important;
}

/* Newsletter */
.box_hobbies_main {
  background-color: #f9f9f9;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter_container {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.newsletter_container h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.newsletter_container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.newsletter_container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter_container input[type="email"] {
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.newsletter_container button {
  padding: 12px 15px;
  font-size: 16px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter_container button:hover {
  background-color: #005fa3;
}

.newsletter_container small {
  font-size: 12px;
  color: #777;
}

.newsletter_container small a {
  color: #0077cc;
  text-decoration: none;
}

.newsletter_container small a:hover {
  text-decoration: underline;
}










/* Right column */
.rightcolumn {
  float: right;
  width: 45%;
  height: auto;
  flex-direction: column;
  margin-left: 20px;
}




/* Card "Stories" & download*/
.download_btn {
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
}

/* Darker background on mouse-over */
.download_btn:hover {
  background-color: RoyalBlue;
}

























/* Fussbereich */
/* Inhalt der 4 Spalten */
#footer{
  position: fixed;
  width: 100% !important;
  padding: 10px 0;
  background-color: RGB(129, 114, 169);
  font-size: 20px;
  bottom: 0;
  color: white !important;
  text-align: center;
  height: 150px;
  z-index:999;
  float: left;
  transition: opacity 0.3s ease;  /* Sanfte Übergangseffekte */
  opacity:0;  /* Anfangs unsichtbar */
  margin: 0 -37px;

}



 /* Die Klasse, die den Footer sichtbar macht */
 #footer.show {
   opacity: 1;  /* Footer sichtbar */
 }

 #footer.hidden {
   opacity: 0;
   width: 100% !important;
   z-index: 999;
 }


    /* Button, um den Footer ein-/auszufahren */
    .toggle-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 10px 15px;
      background: #f04;
      color: white !important;
      border: 5px solid white;
      cursor: pointer;
      border-radius: 20px;
      z-index: 999 !important;
    }


.footer_container{
  width:100%;
margin: 0 5%;
}




/* Spalten*/
.footer_row{
  display: flex;
  flex-direction: row;
  width:100% !important;
/*margin: 0 200px;*/
  /*padding: 0 5%;*/
  color: white !important;

}



/* 1. Spalte */
.col01{
  padding: 0 7%;
}


.MyFooter ul{
  list-style: none;
  display:  flex;
  flex-direction: column;
  text-align: left;
}


.MyFooter ul li{
  list-style: none;
  padding-bottom: 10px;
  float: left;
}

.MyFooter ul li a{
  text-decoration: none;
  font-weight: none;
  transition: all 0.5s ease;
}

.MyFooter ul li a:hover{
  color: rgb(204, 143, 50) !important;
  text-decoration: none;
  font-weight: bold;
}


/* 2. Spalte */
.col02{
  padding: 0 7%;
  color: white !important;

}


.col02 h1{
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease;
  text-align: center;
  font-size: 19px;
  font-weight: normal;
}


.col02 h2{
  padding-top: 3px;
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease;
  text-align: center;
  font-size: 15px;
  font-weight: normal;
}




/* 3. Spalte */
.col03{
  padding: 0 7%;
  color: white !important;

}

.col03 h1{
  color: white !important;
  text-decoration: none;
  transition: all 0.5s ease;
  text-align: center;
  font-size: 19px;
  font-weight: normal;
}


/* 4. Spalte
.col04{
  padding: 0 7%;
}*/



.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: white !important;
  transition: all 0.5s ease;
}

.social-links a:hover{
  color: rgb(204, 143, 50) !important;
  background-color: #ffffff;
  text-decoration: none;
}


.col04 h4{
  color: white !important;
  text-align: center;
  font-size: 20px;
  padding-bottom: 5px;

}


/* an den Seitenanfang springen*/
#top {
  display: inline-block;
  padding: 10px;
  color: white !important;
  font-size: 22px;
  font-weight: bolder;
  border: 8px outset #f9d66c;
  text-decoration: none;
  border-radius: 15px;
  font-size: 22px;
  cursor: pointer;
  margin: 0 5px;
  transition: transform 0.3s ease;
}

#top:hover {
  color: rgb(210, 141, 48);
  font-weight: bolder;
  text-decoration: none;
}








.footer_bottom ul{
  width: 100%;
  float: left;
  list-style: none;
  text-align: center;
  display: inline;
  z-index: 1000;
  margin-left:100px;
  color: white !important;
}

.footer_bottom ul li{
  margin-top: 1em;
  align-items: center;
  display: inline;
  color: white !important;
}

.footer_bottom ul li a{
  color: white !important;
  text-decoration: none;
}

.footer_buttom ul li a:hover{
  color: #e06228 !important;
  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 !important;
  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) !important;
  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);
}



/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}
