/* book-nav.css */
/* Adds Book Online button beside existing Facebook/menu controls. */

.book-nav {
  position: fixed;
  z-index: 3;
  top: 54px;
  right: calc(10% + 90px);

  min-width: 170px;
  height: 39px;
  padding: 0 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #fff;
  color: #fff !important;
  background: transparent;

  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-sizing: border-box;
}

.book-nav:hover,
.book-nav:focus,
.book-nav:visited {
  color: #fff !important;
  text-decoration: none !important;
}

/* Mobile/tablet: Book Online sits left of the hamburger */
@media only screen and (max-width: 1000px) {
  .book-nav {
    top: 36px;
    right: calc(5% + 72px);

    width: 110px;
    min-width: 110px;
    height: 50px;
    padding: 6px 12px;

    border-color: #d0d868;
    color: #d0d868 !important;

    font-size: 12px;
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-align: center;
    white-space: normal;
  }

  .book-nav:hover,
  .book-nav:focus,
  .book-nav:visited {
    color: #d0d868 !important;
  }
}



@media only screen and (max-width: 750px) {
  .book-nav {
    top: 30px !important;
    right: calc(5% + 72px) !important;

    width: 110px;
    min-width: 110px;
    height: 50px;
  }
}




/* Home page only */

/* Desktop: Book Online below Facebook */
.home-book-nav {
  top: 254px;
  right: 4.5%;
  width: 92px;
  min-width: 92px;
  height: 40px;
	
	
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
	border: 2px solid #FFF; 
  color: #fff !important;
  background: transparent;

  font-family: 'Open Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-sizing: border-box;

}

/* Mobile: Book Online left of hamburger */
@media only screen and (max-width: 1170px) {
  .home-book-nav {

  }
}


/* Mobile: Book Online left of hamburger */
@media only screen and (max-width: 750px) {
  .home-book-nav {
    top: 22px !important;
    right: calc(5% + 74px) !important;

    width: 110px;
    min-width: 110px;
    height: 50px;
  }
}
