/* 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;
  background-image: url("../images/wallpaper/wallpaper41.png");
  flex-direction: column;
  max-width: 100%;
  background-attachment: fixed;
  background-size: 100% 100%;
}

body{
  overflow-x:hidden;
}



/* Gesamtbreite des Scrollbalkens - fuer 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 fuer 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 */
}


/* 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;
}



/* Trennlinien */
.trennlinie_1{
  border-top: 5px outset rgb(124, 34, 109);
  padding: 5px 10px;
  margin: 50px 0;
}



/* BEGIN navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  }


/* Logo in der Navbar */
#head_logo {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.head_logo_image {
  width: 200px;
  height: 200px;
  border-radius: 20px;
}

.head_logo_image:hover{
  border: 6px inset silver;
  border-radius: 20px;
}

/* Menue in der Navbar*/
.menu {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  float: right;
  flex: 1;
  z-index: 99;
  gap:30px;
  justify-content: space-around;
  flex: 1;
  z-index: 99;
}

.menu a {
  font-size: 1.8rem;
  padding: 15px 20px;
  text-decoration: none;
  color:  #333333; /* Grau */
  display: flex;
  align-items: center;
  min-width:200px;
  justify-content: center;
  margin: 0 25px;
  font-weight: normal;
  width: 100%;
  text-align: center;
}


.menu a:hover{
  color: black;
  font-weight: bold;
  text-decoration: underline;
  font-size: 2.0rem;
}

.gcse-search{
  border: none !important;
  background-color: red !important;
}

/* Einstellung aktives Menue */
.menu a.menu_active{
  color: white !important;
  font-weight: bold !important;
  background-color: rgb(188, 238, 104); /* mintgruen */
  width: 200px;
  padding: 15px 0;
  cursor: none;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1.8rem;
}

.menu a.menu_active:hover{
  text-decoration: none;
  cursor: none;
}


.menu-button-container {
  width: 40px;
  height: 30px;
  display: none; /* wird nur mobil gezeigt */
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-button-container,
.menu-button-container::before,
.menu-button-container::after {
  content: "";
}

.menu-button {
  width: 100%;
  height: 4px;
  background: black;
  position: relative;
}

.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: black;
  left: 0;
}

.menu-button::before { top: -10px; }
.menu-button::after { top: 10px; }



/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10000;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

.hamburger.active span {
  background: #333; /* gleich lassen! */
}




/* Animation zu X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/*.menu-icon {
  display: none; /* Falls nicht für Mobile gebraucht
}*/

.menu.show {
  display: flex;
}

.menu-icon {
  transition: transform 0.3s ease;
}

.menu-icon.open {
  transform: rotate(90deg) !important; /* oder andere Animation, z.B. Linien über CSS-Pseudoelemente */
}

/*
.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: 125px; /* Kleinere Navbar*/
  padding: 5px;
  background-color: #642275 !important; /* lila */
  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 .menu_active{
  color:  black !important;
}

.navbar.small .head_logo_image {
  width: 80px;
  height: 80px;
  background-color: silver;
  border: 6px inset  rgb(188, 238, 104);
  border-radius: 5px;
}


.navbar.small .head_logo_image:hover{
  border: 6px inset silver;
  border-radius: 5px;
}


.navbar.small .menu{
font-size: 1.3rem;
float: right;
display: flex;
padding: 15px 50px;
}


.navbar.small .menu a{
  font-size: 1.3rem;
  color: #868e96; /* hellgruen*/
    padding: 5px 10px;
}


.navbar.small .menu a:hover{
  color: #868e96; /* hellgruen*/
  font-size: 1.53rem;
}
/* END navbar small */


/* 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;
}*/




/* BEGIN BREADCRUMB
.breadcrumb {
top: 33vh;
  position: absolute;
  width: 100%;
  height: 50px;
  background: transparent;
  padding:  0;
  display: inline-flex;
  float: left;
}


/* Breadcrumb style
.breadcrumb ul {
  list-style-type: none;
  color: rgb(124, 34, 109);
  width: 100%;
  margin: 0;
  display: inline-flex;
  padding-top: -20px;
}


.breadcrumb ul li {
  text-decoration: none;
  color: rgb(124, 34, 109);
  font-size: 20px;
}



/* Gestaltung Links
.breadcrumb ul li a {
  text-decoration: none;
  color: rgb(124, 34, 109);
  font-size: 20px;
  padding: 25px 10px;
}

/* Hover-Effekt
.breadcrumb ul li a:hover {
  text-decoration: underline;
  padding-bottom: 15px;
  border-radius:15px;
}

/* Gestaltung von >>
.breadcrumb ul li + li:before {
  margin: 0 10px;
  content: ">>";
  font-size: 20px;
  color: rgb(124, 34, 109);
}


/* Gestaltung von >>
.breadcrumb ul li + li:before {
  margin: 0 10px 0 5px ;
  content: ">>";
  font-size: 20px;
  font-weight: normal;
  color: rgb(124, 34, 109);
  display: inline-flex;
  flex-direction: row;
  background-color: none;
}
/* END navbar
*/




  /* BEGIN Header*/
  header {
    margin-top: 25vh !important; /* oder 25% vh */
    left: 200px
    right: 200px;
    display: flex;
    z-index: 10;
    flex-direction: column;
    padding-top: 20px;
    height: auto;
    width: auto;
   text-align: center;
    align-items: center;
  }


  header h1{
    padding-top: 40px;
    font-size:4rem;
    color: inherit !important;
    font-family: "Lumanosimo", serif;
    font-weight: bold;
    font-style: normal;
  }





  /* Bild im header*/
  .header_container {
    position: relative;
    width: 100%;
    max-width: 800px;
  }

  .header_image {
    display: block;
    width: 100%;
    height: auto;
  }

  .header_overlay {
    position: absolute;
    top: 0px;
    /*background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);  Black see-through */
    width: 100%;
    transition: .5s ease;
    opacity:0;
    color: #f76707;
    padding: 20px;
    text-align: center;
    height: 100px;

  }

  .header_container:hover .header_overlay {
    opacity: 1;
  }





/* BEGIN figure - figcaption*/
figure {
  justify-content: center;
  width: 100%;
  flex-direction: column;
  float: left;
}


figure figcaption{
  text-align: right;
  font-style: italic;
  font-size: 14px;
  color: black;
  padding-top: 10px;
  margin: 0;
}




/* BEGIN main - gesamter main-Bereich*/
main{
  width: 100%;
  height: auto;
  padding: 0 20px 50px 20px;
  align-items: center;
  text-align: center;
  margin-bottom: 300px;
}


main h2{
  font-size: 2.5rem;
  text-align: center;
  align-items: center;
  font-weight: bold;
  color: inherit;
  padding: 20px 10px 10px 10px;
}


.boxen{
  width: 100%;
  height: auto;
  margin:10px;
  padding: 0;
  }


/* linke Seite*/
.box_left{
  float: left;
  width: 45%;
  padding: 10px;
border-radius: 20px;
  height: 200px;
  display: block;
  flex-direction: column;

}

.box_right{
  float: right;
  width: 45%;
  padding: 10px;
border-radius: 20px;
  height: 200px;
  display: block;
  flex-direction: column;

}


.box{
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row; /* 2 Spalten*/
  overflow: hidden !important;
  border-radius: 20px;
  padding: 10px;
  justify-content:  space-between;
}



.box h2{
  font-size: 2rem;
  text-align: left;
  align-items:  flex-end;
  font-weight: bold;
  color: inherit;
  padding: 20px 10px;
}






/* Play-button Kapitel "Musik"*/
audio{
  color: inset;
  width: 300px;
  height: 100px;
  margin-top: 20px;
  margin-right:10% !important;
  padding: 0 10px;
  flow: right;
}




/* BEGIN Tabelle*/
table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid #ddd;
  border-spacing: 0;
  border-width: thin 0 0 thin;
}


/*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);
}



/* Fussbereich */
#footer {
position: relative;
transition: opacity 0.3s ease;  /* Sanfte Uebergangseffekte*/
padding: 5px 0;
color: #868e96 !important;
font-size: 20px;
bottom: 0;
width:100%;
text-align: center;
height: 160px;
z-index:99;
float: left;
 }

 /* 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-color: #c5d4e4;
      color: #eceff4 !important;
      border: 3px outset #d6e0ea;
      border-radius: 8px;
      cursor: pointer;
      z-index: 9999;
      font-size: 20px;
      display: block; /* nicht hidden
    }

  .toggle-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 10px 15px;
      background-color: #c5d4e4;
      color: #333;
      border: 3px outset #d6e0ea;
      border-radius: 8px;
      cursor: pointer;
      z-index: 9999;
      font-size: 18px;
      display: block; /* sicherstellen
    }

    .toggle-button:hover {
      color: #81a1c1;
      font-weight: bold;
    }


 .toggle-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
      display: block; /* nicht hidden
    }


  .toggle-button:hover {
    color: #81a1c1 !important;
    font-weight: bold;
  }*/

      /*  #footertoggle-button{
        display: none;
        opacity: 1;
    }*/


    /* Inhalt der 4 Spalten */
.footer_container{
  padding-top: 5px;
  width: 100%;
  z-index: 999;
  margin: 0 auto;
  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 6%;
  min-width: 550px;
  color: #868e96 !important;
}

.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 4%;
  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: inherit;
  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: inherit !important;
  transition: all 0.5s ease;
}

.social-links a:hover{
  color: #5e81ac !important;
  background-color: #ffffff;
  text-decoration: none;
}





/* an den Seitenanfang springen*/
#top {
  display: inline-block;
  padding: 10px;
  color: white !important;
  font-size: 22px;
  font-weight: bold;
  border: 5px outset #81a1c1;
  text-decoration: none;
  border-radius: 15px;
  font-size: 22px;
  cursor: pointer;
  margin: 0 5px;
  transition: transform 0.3s ease;
  z-index: 999;
  opacity: 1;
  background-color: #81a1c1;
}

#top:hover{
  text-decoration: underline;
}



.footer_bottom ul{
  width: 100%;
  float: left;
  list-style: none;
  text-align: center;
  display: inline;
  z-index: 100;
  padding: 1 auto;
}

.footer_bottom ul li{
  margin-top: 1em;
  align-items: center;
  display: inline;
}

.footer_bottom ul li a{
  color: black; /* grey */
  text-decoration: none;
  z-index: 9999 !important;
}

.footer_bottom ul li a:hover{
  color: #e06228;
  text-decoration: none;
}






/* Seite vorwaerts */
.previous, .next {
  color: #868e96 !important;
  width: 100%;
  height: 70px;
  text-decoration: none;
  font-weight: normal;
  z-index: 999;
  padding: 5px 18px;

}
/* Seite vorwaerts */
.middle {
  color: #868e96 !important;
  width: 100%;
  height: 70px;
  text-decoration: none;
  font-weight: normal;
  z-index: 999;
  padding: 5px 18px;
}

.middle:hover {
  font-weight: bold;
  text-decoration: underline !important;

}

.previous:hover, .next:hover {
border: 5px inset #81a1c1;
  border-radius: 15px;
  font-weight: bold;
}

/* Seite vorwaerts */
.next {
  color: #868e96 !important;
  width: 100%;
  height: 70px;
  text-decoration: none;
  font-weight: normal;
  z-index: 999;
}


.next:hover {
  text-decoration: none;
  color: #868e96 !important;
border: 5px inset #81a1c1;
  border-radius: 15px;
  padding: 5px 18px;
  font-weight: bold;
}







/* ===== MOBILE ===== */
@media (max-width: 900px) {

body{
  padding-bottom: 50px;
  overflow-x:hidden;
}

header {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    padding: 20px;
    height: auto !important;
    overflow: visible !important;
  }

.navbar {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #eaf1f8;
}


.navbar.small{
  display: none;
}

  /* Hamburger sichtbar erzwingen */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-right: auto; /* schiebt ihn sauber nach rechts */
  }



    .hamburger span {
      width: 30px;
      height: 3px;
      /*background: #333;*/
      transition: 0.3s;
      display: block;
      margin-right: auto;
    }


      .hamburger.active span {
        background: #333; /* gleich lassen!*/
      }




        #cookieBanner.display-right,
        #cookieBanner.display-left {
          left: 50% !important;
          right: auto !important;
          transform: translateX(-50%) !important;
        }


  /* Menü standardmäßig aus*/

        .menu {
          display: none !important; /* 🔥 wichtig */
          flex-direction: column;
          position: absolute;
          top: 50px;
          left: 0;
          padding: 5px 0;
          background: #eaf1f8;
          box-shadow: 0 10px 30px rgba(0,0,0,0.1);
          z-index: 99;
          gap: 5px;
          text-align: center;
     width: 100%;
     color: black !important;
        }

      .menu.show {
        display: flex !important;
      }

  .menu a {
        text-align: center;
        color: black !important;
        font-size: 1.5rem !important;
        padding: 3px 0;
      }


      .menu a.menu_active {
        width: 100%;
        display: inline-block;
        padding: 5px 10px;        /* optional schöner */
        margin: 0 auto;       /* 🔥 zentriert das Element */
      }



  .head_logo_image{
    display: none !important;
    opacity: 0;
  }

figure, figcaption{
  display: none;
}

.header_overlay {
   opacity: 1 !important;
   position: static; /* wichtig! */
   height: auto;
   background: none; /* optional */
 }

.header_image{
  display: none;
}






.header_overlay h1{
  margin-top: 0;
  font-size: 2.5rem;
}






.box{
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  width: 100%;
  height: auto;
  float: none !important;
}

.overlay h1{
  font-size: 2.5rem;
}

main h2{
  font-size: 1.5rem;
  text-align: center;
  font-weight: normal;
}


main{
  flex-direction: column !mportant;
}
.box_left,
  .box_right {
    float: none;
    width: 100%;
    height: auto;
  }


.boxen {
  display: flex;
  flex-direction: column;
}

.box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column; /* statt row */
  align-items: flex-start;
}
audio{
  width: 100%;
  height: auto;
}

.box h2{
  font-size: 1.5rem;
}



  #footer{
    height: 30px !important;
    margin-top: 200px;
    background-color: transparent;
    color: black;
  }

.footer_bottom{
  bottom: 0;
  width: 100% !important;
  display: flex !important;
  background-color: transparent !important;
  display: flex;
  justify-content: center;
}

.footer_bottom ul li{
  align-items: center;
  background-color: none !important;
  color: black;
  z-index: 999;
}

.footer_bottom ul li:hover{
  text-decoration: underline;
}

.footer_row{
  display: none;
}


.gcse-search,
 .gcse-search *,
 .gsc-control-cse,
 .gsc-control-cse * {
   display: none !important;
 }
}
