<style>
body {
  overflow-x: hidden;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 60vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.drawer-menu.open {
  right: 0;
}
.drawer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer-menu li {
  margin-bottom: 1rem;
  font-size: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
}
.drawer-menu a {
  text-decoration: none;
  color: #fff;
  display: block;
}
#drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}
.hamburger-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.hamburger-bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.hamburger-toggle.is-active .hamburger-bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger-toggle.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.hamburger-toggle.is-active .hamburger-bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}
</style>
