
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* --- Mobile menu --- */
@media (max-width: 1025px) {
  .hamburger {
    display: block;
  }

  .nav__list {
    position: absolute;
    top: 50px;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.99);
    padding: 20px 0;
    gap: 25px;
    display: none;
  }

  .nav__list.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
