
/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
}

.nav-link.active {
  color: #38bdf8;
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #0f172a;
    padding: 20px;
    border-radius: 10px;
  }

  .nav-list.nav-open {
    display: flex;
  }
}
