/* =========================================================
   TOP NAV + MEGA MENU (public site)
   The dashboard keeps its own separate .admin-sidebar — untouched.
   ========================================================= */
.hill-main{ margin-left:0; } /* no more sidebar offset on the public site */

.hill-topbar{
  background:#02203f;
  border-bottom:3px solid var(--hill-gold);
  position: sticky;
  top: 0;
  z-index: 1045;
}
.btn-nav-toggle{
  background:transparent; border:none; color:#f5a623; padding:2px 4px; line-height:1;
}
.btn-nav-toggle:hover{ color:#fff; }

.mega-menu{
  position: fixed;
  top: 0;
  right: 0;
  width: min(760px, 94vw);
  height: 100vh;
  background:#01172c;
  transform: translateX(100%);
  transition: transform .32s ease;
  z-index: 1040;
  overflow-y: auto;
  box-shadow: -18px 0 50px rgba(0,0,0,.4);
  padding-top: 90px;
}
.mega-menu.open{ transform: translateX(0); }

.mega-col-title{
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 14px;
  color:#f5a623;
}
.mega-col-title a{ color:#f5a623; text-decoration:none; }
.mega-col-title a:hover{ color:#fff; }
.mega-links{ list-style:none; padding:0; margin:0; }
.mega-links li{ margin-bottom: 12px; }
.mega-links a{
  color:#ccc; text-decoration:none; font-size:.95rem;
}
.mega-links a:hover{ color:#f5a623; }

@media (max-width: 575.98px){
  .mega-menu{ padding-top: 76px; }
}
