/* ==== DESKTOP NAVBAR ==== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #121212;
  padding: 1em 2em;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(270deg, #0f2027, #203a43, #2c5364);
background-size: 600% 600%;
animation: gradientShift 12s ease infinite;

}

@keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.nav-left,
.nav-right {
  display: flex;
  gap: 1.5em;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #5ce1e6;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #5ce1e6;
}

nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
