.site-nav,
.site-nav * {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.site-nav {
  position: fixed;
  top: 4vh;
  left: 6vw;
  right: 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 1.5s ease;
  pointer-events: none;
}

.site-nav a,
.logo {
  pointer-events: auto;
}

.logo {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.nav-right a {
  margin-left: 2.5rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  opacity: 0.7;
}

.nav-right a:hover {
  opacity: 1;
}

/* RESPONSIVENESS */
@media (max-width: 600px) {
  .site-nav {
    left: 4vw;
    right: 4vw;
  }

  .nav-right a {
    margin-left: 1.2rem;
    font-size: 0.85rem;
  }
}
