custom-navigation {
  display: block;
  width: 100%;
  height: auto;
}

.custom-header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  z-index: 9999;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  border: 0.5px solid rgb(243, 243, 243);
  background-color: #fde8d793;
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  padding: 20px 40px;
  border-radius: 20px;
  animation: appear-header 1s ease-in-out;
  min-width: 800px;
  font-size: 20px;
  font-weight: 600;
}

@keyframes appear-header {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;

  }
}

.custom-header__nav {
  display: flex;
  justify-content: center;
  text-align: center;
}

.custom-header__logo {
  height: 40px;
  display: block;
}

.custom-header__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.custom-header__menu-item {
  display: flex;
  align-items: center;
}

.custom-header__menu li {
  position: relative;
  color: #C16B5A;
  font-weight: 600;
  text-decoration: none;
}

.custom-header__menu li:not(.kaelte-rudi-menu-button) {
  position: relative;
  color: #C16B5A;
  font-weight: 600;
  text-decoration: none;
}

.custom-header__menu li:not(.kaelte-rudi-menu-button)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #C16B5A;
  transition: width 0.3s ease;
}

.custom-header__menu li:not(.kaelte-rudi-menu-button):hover::after {
  width: 100%;
}

.kaelte-rudi-menu-button:hover {
  opacity: 0.8;
  cursor: pointer;
}





/* MOBILE */

@media (max-width:1400px) {

  .custom-header.mobile {
    flex-direction: column;
    align-items: stretch;
    min-width: unset !important;
    width: 80%;
    padding: 20px;
    border-radius: 20px;
    background-color: #fde8d793;
    backdrop-filter: blur(5px);
    border: 0.5px solid rgb(243, 243, 243);
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
    transition: height 0.3s ease;
    z-index: 9999;
  }

  .custom-header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .custom-header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .custom-header__burger span {
    width: 25px;
    height: 3px;
    background-color: #C16B5A;
    border-radius: 2px;
  }

  .custom-header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    font-size: 25px;
  }

  .custom-header__menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0px;
  }

  .custom-header__menu-item a {
    text-decoration: none;
    color: #C16B5A;
    font-weight: 600;
    padding: 5px 0;
    display: block;
    text-align: center;
    transition: color 0.3s;
    font-size: 25px;
  }

  .custom-header__menu-item a:hover {
    color: #c16b5ac6;
  }


}