nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  height: 64px;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.97) 0%, rgba(8, 8, 8, 0) 100%);
  backdrop-filter: blur(4px);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
}
