.navbar {
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  z-index: 1000;
}

.hamburger {
  font-size: 28px;
  color: white;
  background-image: linear-gradient(135deg, #94E2FF, #002694);
  padding: 10px 17.5px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 2000;
}

.menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: white;
  list-style: none;
  padding: 60px 0 0;
  margin: 0;
  transition: right 1s ease;
  z-index: 1000;
  /* 오버레이보다 높게 설정 */
}

.menu.open {
  right: 0;
}

.menu li {
  border-bottom: 1px solid #aaa;
}

.menu li a {
  display: block;
  padding: 15px 20px;
  color: black;
  text-decoration: none;
}

.menu li a:hover {
  background-color: #ccc;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  z-index: 900;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}