/* ===== NAV LINK WAVE EFFECT ===== */
.nav-link {
  position: relative;
  padding: 6px 4px;
  font-weight: 500;
  transition: color 0.3s ease;
  overflow: hidden;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #be1e2d;
  z-index: -1;
  transition: height 0.35s ease;
  border-radius: 4px 4px 0 0;
}

/* Hover wave */
.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  height: 100%;
}

/* Active page */
.nav-link.active {
  color: #ffffff;
  background: #be1e2d;
}

.nav-link.active::after {
  height: 100%;
}