/* ==========================================================================
   Static-site custom override (NOT from Joomla) — mobile menu fix.

   Problem: Helix3's "menu-fixed" header floats a logo-only bar at the top of
   phones on scroll (the hamburger lives in a separate element that isn't
   pinned), so the sticky bar has no way to open the menu.

   Fix: on phones (<768px) disable the floating/sticky header so the normal
   mobile header + hamburger scroll with the page. The off-canvas menu drawer
   (opened by the hamburger) is unaffected and keeps working.
   ========================================================================== */
@media (max-width: 767.98px) {
  #sp-header.menu-fixed-in,
  #sp-header.menu-fixed-out,
  #sp-header.menu-fixed {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    box-shadow: none !important;
  }
}
