/* Drawer hidden unless opened */
.mobile-nav[hidden]{ display:none !important; }

/* Phones */
@media (max-width: 767px){
  header .site-nav, .site-nav { display:none !important; }
  .menu-btn{ display:inline-flex !important; align-items:center; justify-content:center; }
  body.menu-open{ overflow:hidden !important; }

  #book-fab{
    position: fixed; right: 1rem; bottom: 1rem; z-index: 1000;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 9999px; padding: .75rem 1rem; font-weight: 800;
  }
  #bookNowBtn{ display: none !important; }
}

/* ≥768px */
@media (min-width: 768px){
  header .site-nav, .site-nav { display:flex !important; }
  .menu-btn{ display:none !important; }
  .mobile-nav{ display:none !important; }

  #bookNowBtn{
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1000;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 9999px; padding: .85rem 1.25rem; font-weight: 800;
  }
  #book-fab{ display: none !important; }
}

/* iOS smoothness */
@supports (-webkit-overflow-scrolling: touch){
  body{ background-attachment:scroll !important; }
}
