/* Hamburger Menu Styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: rgba(30, 30, 30, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem;
  z-index: 999;
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  display: block;
  animation: fadeInDown 0.3s ease-out;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
  color: var(--accent-purple);
  padding-left: 1rem;
}

.mobile-menu-links .cta-button {
  margin-top: 1rem;
  justify-content: center;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-button.active {
  color: var(--accent-purple);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
  }
  
  .nav-links {
    display: none;
  }
}