/* Mobile Menu */
.mobile-menu-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}
.menu-toggle {
  display: none;
}
.menu-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.menu-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s;
}
.menu-toggle:checked ~ .menu-hamburger span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
.menu-toggle:checked ~ .menu-hamburger span:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked ~ .menu-hamburger span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 250px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 80px;
}
.menu-toggle:checked ~ .mobile-menu {
  left: 0;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu a {
  padding: 15px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
}
.mobile-menu a:hover {
  background: #f1f5f9;
}
