
/* === CLEAN MENU ANIMATION + HOME TEXT GLOW ONLY === */

/* Remove all pseudo glow boxes/underlines from previous menu effects */
.site-header .site-nav a::before,
.site-header .site-nav a::after {
  display: none !important;
  content: none !important;
  box-shadow: none !important;
  border: 0 !important;
  background: none !important;
}

/* Base menu animation */
.site-header .site-nav a {
  position: relative !important;
  transition:
    color .28s ease,
    text-shadow .28s ease,
    transform .28s ease,
    background-color .28s ease !important;
}

/* Animated hover: no outline, only smooth text glow + slight lift */
.site-header .site-nav a:hover {
  transform: translateY(-2px);
  text-shadow:
    0 0 7px rgba(0,210,255,.65),
    0 0 15px rgba(0,130,255,.38);
}

/* Home: plain text only, glow text, no selection/box/underline */
.site-header .site-nav a[href*="index"] {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  color: #9feaff !important;
  text-shadow:
    0 0 6px rgba(0,210,255,.75),
    0 0 14px rgba(0,130,255,.42) !important;
}

/* Remove active background specifically from Home */
.site-header .site-nav a[href*="index"].active {
  background: transparent !important;
  box-shadow: none !important;
}
