/*
 * Story 10.6 — Public Nav Active Tab Highlighting for Guests
 * ------------------------------------------------------------
 * The metovo theme (public/metovo/css/stylesheet.css) provides an active-state
 * color rule for the *header* primary menu (line 714):
 *
 *   .primary-menu ul.navbar-nav > li.active > a:not(.btn) {
 *     color: #2dbe60;
 *   }
 *
 * but no equivalent rule for the *footer* nav (lines 3038-3063 only style the
 * base color and hover state — no active treatment).
 *
 * This file adds the missing rule, scoped tightly to `#footer` so it does not
 * affect any other nav UI on the site. The selector mirrors the header pattern
 * exactly: highlight the `<a>` when its parent `<li>` carries `.active`.
 *
 * Loaded AFTER public/metovo/css/stylesheet.css via @stack('styles') in
 * resources/views/layouts/public.blade.php so it wins source-order ties.
 */
#footer .nav .nav-item.active > .nav-link {
  color: #2dbe60;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}