/* Allgemeine Stile für die Seite */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header-Stile */
.hcontainer {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: white;
}

.hcontent {
  width: 90%;
  max-width: 1600px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  background-color: white;
}

.hcolumn1 {
  flex: 1;
  min-width: 50px;
  background-color: white;
  padding: 0px;
  display: flex;
  justify-content: left;
  align-items: flex-start;
}

.logo1 {
  height: 130px;
  width: auto;
  max-width: 100%;
}

.logo2 {
  height: 90px;
  width: auto;
  max-width: 100%;
}

.logo3 {
  max-height: 90px;
  width: auto;
  max-width: 100%;
}

.hcolumn2 {
  flex: 1;
  min-width: 50px;
  background-color: white;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu1 ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu1 a {
  text-decoration: none;
  color: #009999;
}

.hcolumn3 {
  flex-basis: 100%;
  background-color: white;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu2 ul {
  list-style: none;
  display: none; /* Verstecke das Menü in Spalte 3 standardmäßig */
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  text-align: center;
}

.menu2.open ul {
  display: none; /* Zeige das Menü in Spalte 3 nicht an, auch wenn es in der mobilen Ansicht geöffnet war */
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0px;
  text-align: center;
}

.menu2 a {
  text-decoration: none;
  color: #009999;
}

.hamburger-menu {
  display: none;
  align-items: center;
  cursor: pointer;
  margin-right: 20px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 25px;
  height: 18px;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #009999;
}


.flex-element {
    height: 130px;
    width: 100%;
    display: block;
}


@media screen and (max-width: 1200px) {
  .menu1 ul {
    display: none;
  }
  
  .logo1 {
    display: none;
  }

  .logo3 {
    display: none;
  }

  .hcolumn2 {
    justify-content: center;
  }

  .hamburger-menu {
    display: flex;
  }

  .menu2.open ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 20px;
    text-align: center;
  }

  .flex-element {
    height: 90px;
    width: 100%;
    display: block;
  }
}


@media screen and (min-width: 1200px) {
  .logo2 {
    display: none;
  }

  .logo3 {
    display: none;
  }
}


@media screen and (max-width: 700px) {
  .logo2 {
    display: none;
  }

  .logo3 {
    display: block;
  }

  .hcolumn1 {
    flex: 1;
    min-width: 150px;
    background-color: white;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}

