/* Hashlabs navigation — single source of truth, included on all pages */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #8e34ab;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

.nav-cta {
  background: #8e34ab !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
}

.nav-cta:hover {
  background: #a94fc8 !important;
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  nav ul li {
    display: none;
  }
  nav ul li:last-child {
    display: flex;
  }
}
