/* Allgemeine Stile */


html, body {
  height: 100%;
}

body {
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  margin: 0;
  background-image: url("../Bilder/background.png"); 
  background-size: cover; 
  /*background-position-y: 75px;*/
  background-position: center; 
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: grid; 
  grid-template-rows: auto 1fr auto; 
}

h1, .h1-long{
    color: #3d3d3d;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    font-family: "Nomada Didone", "Schotis Display", "Georgia", "Times New Roman", "Garamond", serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

h2 {
    color: #3d3d3d;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    font-family: "Merriweather", "Georgia", "Times New Roman", "Garamond", serif;
}

main::-webkit-scrollbar {
    display: none;
}


main {
  max-width: 1200px;
  width: 90%;
  background-color: #ffffffbb;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: auto;
  box-sizing: border-box;
  position: fixed;
  top: 200px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
 }

/* Layout innerhalb des main-Elements *
.main-container {
  display: block;
  height: auto;   
  margin: 0;
  padding: 0;
}
*/
.tlr-container { /* Layout Top Left Right */
    display: grid;
    grid-template-areas:
      "top top"
      "left right";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 80px 1fr;
    min-height: calc(100vh - 250px);
    /*background: linear-gradient(to bottom, #831111bb 5px, #bbbbbb00 100px, #bbbbbb00 100%,#831111bb 10px);*/
    padding-left: 2,5%;
    padding-right: 2,5%;
  }  

.tc-container { /* Layout Top Center */
    display: grid;
    grid-template-areas:
      "top"
      "content";
    grid-template-columns: 1fr;
    grid-template-rows: 80px 1fr;
    height: auto;
    min-height: calc(100vh - 250px);
    /*background: linear-gradient(to bottom, #831111bb 5px, #bbbbbb00 100px, #bbbbbb00 100%,#831111bb 10px);*/
    padding-left: 2,5%;
    padding-right: 2,5%; 
}
.top-container, .top-container2 {
    grid-area: top;
    text-align: center;
    height: 80px;
  }
  
.top-container p {
    text-align: justify;
  }	

.content-container {
    grid-area: content;
    text-align: justify;
    margin: 20px;
    padding:0 2.5%;
  }

.success-message {
    text-align: center;
}

.left-container {
    grid-area: left;
    text-align: left;
    margin: 20px;
  }
  
.left-container h2 {
    color: #000000;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  
.right-container {
    grid-area: right;
    text-align: left;
    margin: 20px;
  }

.right-container h2 {
    color: #000000;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }


/* Aufzählungen */
.bullet1 {
    list-style-type: square;
    margin-left: 10px;
}

/* Kopfzeile */

header, footer {
  /*max-width: 1200px;*/
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  color: white;
  /*background-color: #3b5704bb;*/
  font-size: 22px;
  display: flex;
  justify-content: center;
  z-index: 1000;
} 

.header {
    position: fixed;
    top: 0; 
    height: 200px;
     /* Stellt sicher, dass die Header über dem Hintergrundbild liegt */
    /*width: 100vw;*/
} 

.logo-container {
    display: flex;
    background-color: #ffffffbb;
    justify-content: center;
    align-items: center;
    /*width: 350px; /* Breite des Logos */
    /*max-width: 1200px;*/
    width: 100vw;
    height: 150px; /* Höhe des Logos */
    margin: 0 auto; /* Zentriert das Logo */
    z-index: 100; /* Stellt sicher, dass das Logo über dem Hintergrundbild liegt */
    
} 

.logo {
    max-width: 350px;
    height: auto;
    width: auto;
    opacity: 1;
    max-height: 100px;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu li {
  padding: 15px 0;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #ffffffe7;
  align-items: center;
  font-size: 20px;
  padding: 15px 20px;
}

.menu a:hover {
  background-color: #aaaaaac7;
  border-radius: 10px;
}

/* Navigationsleiste */

.navbar {
    height: 50px;
    width: 100%;
    font-size: 20px;
    position: fixed;
    top: 150px;
    /* opacity: 0.9; */
    background-color: #3d3d3dc7;
    align-items: center;
}
    
.menu-toggle {
  display: none;
}
    
@media screen and (max-width: 600px) { /*Bei Handy Bildschirmen*/
    .menu {
      display: none;
    }
    /* .menu a {
      text-decoration: none;
      color: #ffffffe7;
      align-items: center;
      font-size: 20px;
      padding: 15px 20px;
      box-sizing: border-box;
      border-width: 100vw;
    }

    .menu a:hover {
      background-color: #aaaaaac7;
      border-radius: 0px;
    } */
    .hamburger-icon {
      display: block;
      position: absolute;
      top: 5px;
      right: 30px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      z-index: 2000;
    }
    .hamburger-icon span {
      display: block;
      height: 5px;
      width: 35px;
      margin: 6px 0;
      background: #ffffffdd;
      border-radius: 2px;
      transition: 0.3s;
    }
    .menu-toggle:checked + .hamburger-icon + .menu {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 50px;
      right: 0px;
      background: #3d3d3d;
      width: 100vw;
      height: auto;
      z-index: 1999;
    }

    .tlr-container { /* Layout Top Left Right */
      grid-template-areas:
        "top"
        "left"
        "right";
      min-height: calc(100vh - 150px);
    }

    .tc-container { /* Layout Top Center */
      min-height: calc(100vh - 150px);
    }
    .header {
      height: 150px;
    }
    .logo-container {
      height: 100px; /* Höhe des Logos */
    }
    .logo {
      max-height: 75px;
    }
    main{
      top: 150px;
      z-index: 1;
    }
    .navbar {
      top: 100px;
      z-index: 1000;
    }
    .top-container2
    {
      height: 100px;
    }
    .top-container {
      height: 50px;
    }
    .h1-long{
      font-size: 20px;
    }
    .bullet1 {
      margin-left: 0px;
    }
  }

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    opacity: 0.9;
    height: 50px;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #3d3d3daa;
} 

.footer-content {
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}

/* Button zu Kontaktformular */
.tip-submit-btn {
  background-color: #3d3d3d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 18px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(61,61,61,0.1);
  margin-top: 16px;
}

.tip-submit-btn:hover {
  background-color: #831111;
  color: #fff;
  box-shadow: 0 4px 16px rgba(131,17,17,0.15);
}

/* Kontaktformular */
#contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffffbb;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
#contact-form button[type="submit"] {
  background-color: #3d3d3d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 18px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(61,61,61,0.1);
  margin-top: 16px;
}

#contact-form button[type="submit"]:hover {
  background-color: #831111;
  color: #fff;
  box-shadow: 0 4px 16px rgba(131,17,17,0.15);
}