/* =========================================================
   JP 1_1 BS5 v7 - desktop navbar black-band height patch
   Scope: desktop >= 992px only.

   Frozen from v6:
   - desktop logo position / size
   - desktop parent-menu position = translate(-12px, -8px)
   - desktop footer
   - all mobile fixed-top / logo / hamburger / parent-child menus / footer
   - B-region DOM / img src / text / href
   - all original image files
   - all JavaScript

   Requested change:
   - desktop black visible band height = exactly 80px
   - keep the navbar/layout box at 90px
   - black top remains flush at y=0
   - black bottom edge is y=80px (10px above the 90px box bottom)
   - do NOT move logo or parent menu
   ========================================================= */
@media (min-width: 992px) {
  body > nav.navbar.navbar-default.navbar-expand-lg.fixed-top.navbar-fixed-top.navbar-scroll.navbar-normal {
    background-color: transparent !important;
    background-image: linear-gradient(
      to bottom,
      #333333 0,
      #333333 80px,
      transparent 80px,
      transparent 90px
    ) !important;
    background-repeat: no-repeat !important;
    background-size: 100% 90px !important;
  }
}
