.header {
  background-image: url('../assets/party-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 35px;
  position: relative;
}

.header-overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  flex-shrink: 0;
  /*border: 2px solid#F29DFF;*/
}

.logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* Container für beide Navs nebeneinander */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-grow: 1;
  justify-content: center; /* Zentriert zwischen Logo und rechts */
  padding: 0;
}

/* Navigationen */
.nav-container {
  display: flex;
  background-color: #F29DFF;
  border-radius: 9999px;
  padding: 10px 20px;
  gap: 20px;
}

.nav-container a {
  text-decoration: none;
  color: #0b2332;
  padding: 5px;
}

.nav-container a.active {
  border-bottom: 2px solid #0b2332;
  padding-bottom: 4px;
}

.nav-account {
  background-color: #A841B2;
}

/* Standard: Burger verstecken */
.burger-button {
  display: none;
}


@media (max-width: 768px) {
  .header-overlay {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .logo-container {
    text-align: center;
  }

  .burger-button {
    display: block;
    background-color: #F29DFF;
    color: #0b2332;
    border: none;
    border-radius: 9999px;
    font-size: 1.6rem;
    padding: 8px 20px;
    margin-top: 10px;
    cursor: pointer;
    z-index: 1000;
    align-self: center;
  }

  .nav-wrapper {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
    width: 90%;
  }

  .nav-wrapper.show {
    display: flex;
  }

  .nav-container {
    flex-direction: column;
    align-items: center;
    background-color: #F29DFF;
    border-radius: 20px;
    padding: 10px;
    max-width: 300px;
      width: 50%;
      margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-account {
    background-color: #A841B2;
  }

  .nav-container a {
    padding: 5px;
    width: 100%;
    text-align: center;
    color: #0b2332;
    text-decoration: none;
  }

  .nav-container a.active {
    background-color: #ffffff4D;
    border-radius: 8px;
    border-bottom: 0;
    width: 70%;
  }
}
