.menu-bar {
  position: fixed;
  z-index: 1000;
  height: 85px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.menu-wrapper {
  position: relative;
  height: 40px;
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-radius: 30px;
  background: rgba(220, 220, 220, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 0;
  background: black;
  transition: all 0.35s ease;
}

.menu-btn {
  background-color: transparent;
  color: black;
  border: none;
  padding: 10px 15px;
  font-family: "googlesans";
}

.menu-btn:hover {
  border-bottom: 3px solid black;
  cursor: pointer;
}

.menu-bar-wrapper {
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: background 0.5s ease;
}

.menu-bar-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.3);
}

.logo-img {
  position: absolute;
  height: 50px;
  top: 17px;
  left: 16px;
  width: auto;
}



@media (max-width: 768px) {
  .menu-wrapper {
    gap: 0;
  }

  .menu-btn {
    padding: 5px;
  }

  .logo-img {
    display: none;
  }

  .menu-wrapper {
    width: 90%;
  }
}