/* Custom Navigation Styles for HFIT Fitness Portal */

/* Base navigation link styles */
nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

/* Navigation link hover state */
nav a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hover underline effect */
nav a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* Active/current page navigation link */
nav a.active,
nav a[aria-current="page"] {
  color: #06d6a0;
  font-weight: 700;
}

/* Active link underline */
nav a.active::after,
nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #06d6a0;
}