/* NAV CONTAINER */
.site__nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;

  /* ADJUSTABLE NAV WIDTH for different users */
  width: max-content;
  max-width: 95vw;
  gap: 1.5rem;

  justify-content: center;
  background: rgba(47, 82, 138, 0.35);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9999px;
  padding: 0.5rem 1.2rem;
  margin: 1rem auto;
  height: 65px;
  z-index: 10;
  /* width: min(80vw, 800px); */
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transition: opacity .6s ease-in, transform .6s ease-in;
}

/* when used with .is-visible from JS animation */
.site__nav.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* LOGO */
.site__logo {
  flex-shrink: 0;
  height: 65px;
  width: auto;
  padding-top: 5px;
  padding-left: 10px;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.25));
}

/* NAV LIST & LINKS */
.site__nav-list {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  margin-left: -25px;
  padding-right: 3rem;
}

.site__nav-list li a {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  text-decoration: none;
  color: #fff;
  transition: background .15s ease-out, color .15s ease-out;
  background: transparent;
}

.site__nav-list li.active a {
  background: rgba(79, 140, 255, 0.85);
    color: #fff;
}

.site__nav-list li a:hover,
.site__nav-list li a:focus-visible {
  background: rgba(255,255,255,0.07);
  color: #000000;
  font-weight: 500;
}

.site__nav-list i{
  color: #58a6ff;
}

.site__nav-list a{
  color: #58a6ff;
  padding-left: 10px;
}

  /* remove padding from li so the grey box vanishes */
  nav ul li {
    padding: 0 !important;
    background: transparent !important;
  }

