/* =========================
   NAVIGATION
========================= */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;

  padding: 26px 50px;

  position: sticky;
  top: 0;

  z-index: 999;

  background: rgba(0, 0, 0, 0.72);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-top: 1px solid rgba(255,225,68,0.45);
  border-bottom: 1px solid rgba(255,225,68,0.45);
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  padding-left: 10px;

  color: #fffdef;
}

.nav-links {
  display: flex;
  gap: 42px;
}

.nav-links a {
  text-decoration: none;

  color: #fffdef;

  opacity: 0.82;

  transition: 0.25s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: #ffe144;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .nav {
    flex-direction: column;
    gap: 20px;

    padding: 18px 24px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;

    gap: 14px;
  }

}