/* Site-level overrides layered on top of the original Desert/Twenty Twelve theme */

.entry-content .h_1,
.entry-content h1.h_1 {
  font-family: 'open sans', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin: 16px 0 12px 10px;
  padding: 0;
  text-align: left;
}

/* ---------- Mobile menu (standard hamburger) ---------- */

.menu-toggle {
  display: none;
}

@media screen and (max-width: 599px) {
  /* Hide original desktop/top banner visual bits that get cramped */
  #header_wrap { text-align: center; }

  /* Show the hamburger */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    padding: 10px 14px;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    background: #f4f4f4;
    color: #333;
    font: bold 14px/1 'open sans', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
  }
  .menu-toggle::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #333;
    box-shadow: 0 -6px 0 #333, 0 6px 0 #333;
  }
  .menu-toggle[aria-expanded="true"] {
    background: #b5111a;
    color: #fff;
    border-color: #b5111a;
  }
  .menu-toggle[aria-expanded="true"]::before {
    background: #fff;
    box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
  }

  #site-navigation {
    position: relative;
  }

  /* Collapse the menu by default on mobile */
  .main-navigation ul.nav-menu {
    display: none !important;
    background-color: #b5111a;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
  }

  .main-navigation ul.nav-menu.toggled-on {
    display: block !important;
  }

  .main-navigation li {
    display: block;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .main-navigation li:last-child {
    border-bottom: none;
  }
  .main-navigation li a {
    display: block;
    color: #fff;
    background: none;            /* kill the divider.png right-chevron on mobile */
    font-family: 'open sans', sans-serif;
    font-size: 17px;
    font-weight: bold;
    padding: 14px 18px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: normal;
  }
  .main-navigation li a:hover,
  .main-navigation .current-menu-item > a {
    background: #8e0d14;
    color: #fff;
  }
}
