body.menu-open {
  overflow: hidden;
}

/* Hamburger aus im Desktop */
.menue_mobil_icon {
  display: none;
}

/* Hamburger-Striche */
.menue_mobil_icon span {
  display: block;
  width: 34px;
  height: 3px;
  margin: 7px 0;
  background: #ffffff;
}

/* ===== MOBILE ===== */
@media (max-width: 500px) {

  /* Desktop-Menü NICHT als Leiste anzeigen */
  .Navigation {
    display: none;
  }

  /* Hamburger sichtbar */
  .menue_mobil_icon {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: transparent;
    border: 0;
    padding: 12px;
    background-color: rgba(19,67,144,1);
    width: 60px;
  }

  /* Overlay */
  #menuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(19,67,144,0.7);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 10000;
  }

  #menuOverlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Menü im Overlay */
  #menuOverlay .menue_ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  #menuOverlay li {
    float: none !important;
  }

  #menuOverlay a.menue_a {
    color: #ffffff !important;
    font-size: 22px;
    padding: 12px 0;
    display: block;
  }


  /* Sticky im Mobile AUS */
  .top,
  .sticky .top {
    position: relative !important;
    background: none !important;
  }



  /* Desktop-Menü im Header ausblenden */
  .top .Navigation {
    display: none;
  }

  /* Navigation im Overlay MUSS sichtbar sein */
  #menuOverlay .Navigation {
    display: block !important;
  }



}
