.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: -100vw;
  background-color: #2c3e50;
  font-size: 20px;
  width: 60vw;
  height: 100vh;
  padding: 10vh 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: left 0.5s ease;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
  border-bottom: 1px solid white;
  padding-bottom: 15px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

body.no-scroll {
  overflow: hidden;
}