/*
  revox — Sitewide Navigation Active-State
  The theme ships hover styling for nav links (color: var(--theme) on
  :hover) but no persistent "you are here" treatment. This file adds
  only that: a .current-menu-item class + aria-current="page" pair,
  applied to whichever of Home / Case Studies / About / Services /
  Contact matches the current page, across every nav rendering path
  the theme produces (desktop bar, meanmenu clone, offcanvas sidebar).
  Linked on every page, right before </head>.
*/

.header-main .main-menu ul li.current-menu-item > a,
.mean-nav .current-menu-item > a,
#menu-main-menu .current-menu-item > a,
.offcanvas__wrapper .current-menu-item > a {
  color: var(--theme) !important;
  position: relative;
}

.header-main .main-menu > ul > li.current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--theme);
  border-radius: 2px;
}
