.logo {
  width: 250px;
  object-fit: contain;
}
.logo:hover {
  filter: brightness(1.2);
  cursor: pointer;
}

.header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100px;

   border-bottom: 1px solid rgba(0, 0, 0, 0.1); 

  /*  */

  /* backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.4); /* halbtransparentes Weiß */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */ 
}

.navbar {
  list-style: none;
  display: flex;
  gap: 20px;
  /* padding: 10px 20px; */
}

.navbar a {
  font-size: 16px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 3px;
}

.navbar a:hover {
}

/* -------------------------- Search Bar -------------------------------- */

.search-container {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.search-form {
  display: flex;
  gap: 12px;
}
/* 
.inputfield {
  height: 35px;
  text-align: center;
}
.inputfield:focus{
  outline: none;
  border-color:  rgb(255, 188, 63);
  border-radius: 3px;
} */
.form-item-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.grey {
  color: grey;
}

.small-grey-font {
  font-size: 14px;
  color: grey;
}

.ps-relative {
  position: relative;
}
.guests-input {
}

.guests-box {
  height: 250px;
  width: 250px;
  position: absolute;
  top: 65px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); */

  display: none;
  padding: 30px 10px;
  border-radius: 6px;
}

.guests-box-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guests-box-item-controller {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 45%;
}

.guests-box-item-icon {
  width: 28px;
}

.guests-box-item-icon:hover {
  filter: brightness(0.5);
  cursor: pointer;
}

.not-allowed {
  opacity: 0.5;
}

.not-allowed:hover {
  cursor: not-allowed;

  /* pointer-events: none;   */
}

.search-box-icon {
  width: 20px;
}

.search-btn {
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: rgb(255, 205, 111);
  outline: none;
  border: none;
  border-radius: 3px;
  font-size: 16px;
}

.search-btn:hover {
  cursor: pointer;
  background-color: rgb(255, 188, 63);
  border-bottom: 1px solid grey;
}
.search-btn:active {
  border: none;
  background-color: rgb(255, 205, 111);
}

.form-search-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
