/* ---------------------------MENU---------------------------- */

.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.menu-btn div {
  height: 4px;
  background-color: #164734;
  border-radius: 2px;
  transition: 0.3s;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: #f8f8f8;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
}

.nav.open {
  transform: translateX(0);
}

.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}

.nav ul li a {
  text-decoration: none;
  color: #164734;
  font-weight: 500;
}

/* Menu icon animation */
.menu-btn.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open div:nth-child(2) {
  opacity: 0;
}

.menu-btn.open div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
