* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4;
  background: #000;
  color: #CCC;
}

a {
  text-decoration: none;
  color: #FFF;
}

p {
  margin: 0.75rem 0;
}

img { 
  width: 100%;
}

/* Utility Classes */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.mt {
  margin-top: 1.5rem;
}

.primary-color {
  color: rgb(236, 196, 142);
}

.cta-black {
  display: inline-block;
  margin: 20px 20px 10px 20px;;
  padding:15px 25px;
  border: 1px solid #ffffff;
  background: #000000;
  color: #ffffff;
  transition: 0.2s linear;
}

.cta-black:hover {
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
}


.text-lg {
  font-size: 1.3rem;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.flex {
  display: flex;
}

.under {
  text-decoration: underline;
}

/* Navbar */

#navbar {
  position: fixed;
  width: 100%;
  top: 0;
  color: #FFF;
  z-index: 1;
  padding: 0.5rem 0;
  transition: 500ms ease;
}

.navbar-blk {
  background:  rgba(0,0,0,0.9);
  border-bottom: 1px solid gray;
}

#navbar > .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

#nav-logo {
  display: flex;
  align-items: center;
}

img#main-logo {
  height: 52px;
  width: auto;
  margin-left: 1rem;
  transition: 500ms ease;
}

#navbar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  min-height: 52px;
}

#navbar ul li a {
  color: #FFF;
  padding: 0.8rem;
  margin: 0.25rem;
  border: 1px solid transparent;
  transition: 0.2s;
}

#navbar ul li a:hover,
.overlay ul li a:hover {
  border: 1px solid #FFF;
}


#navbar .hamburger {
  display: none;
  padding: 0;
  font-size: 1.5rem;
  cursor: pointer;
}

.hamburger a:hover {
  border: 1px solid transparent !important;
}

/* MENU OVERLAY */

.overlay {
  display: flex;
  visibility: hidden;
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
  background: rgba(40,40,40,0.95);
  color: #FFF;
  font-size: 2rem;
	overflow:auto;
  z-index:99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.overlay-nav {
  list-style: none;
  text-align: center;
}

.overlay-nav li a {
  display: block;
  padding: 0.5rem;
  border: 1px solid transparent;
}


/* EMAIL SIGNUP LINK + POPUP */

.email-link, .email-close, .signup-form button {
  cursor: pointer;
}

.email-link {
  color: #FFF;
}

.email-overlay {
  display: flex;
  visibility: hidden;
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
  background: rgba(40,40,40,0.7);
  color: #FFF;
  overflow: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.email-popup {
  margin: 2rem;
  min-width: 300px;
  max-width: 550px;
  line-height: 1.5;
  text-align: center;
  padding: 30px 30px;
  border: 3px solid rgb(236, 196, 142);
  background-color: #000;
  position: relative;
}

.email-close {
  position: absolute;
  background: rgb(236, 196, 142);
  height: 26px;
  width: 28px;
  top: -15px;
  right: -15px;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
}

.signup-title {
  font-size: 1.1rem;
}

.signup-form {
  width: 100%;
  padding: 2rem 0;
}

.signup-form input {
  border: 0;
  outline: 0;
  padding: 8px 10px;
  border-radius: 4px;
  margin-right: 12px;
  font-size: 1.1rem;
}

.signup-form button {
  display: inline-block;
  border: 0;
  outline: 0;
  padding: 8px 10px;
  background: rgb(236, 196, 142);
  color: #000;
  border-radius: 4px;
  font-size: 1.1rem;
}
/* Add back in when email input field comes back

@media(max-width:580px) {
  .signup-form button {
    display: block;
    margin: 1rem auto 0 auto;
  }
}
*/

.signup-footer {

  font-size: 0.7rem;
  font-style: italic;
}


/* HOMEPAGE INTRO */

#intro {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.1)),
                 #000 url('../img/landing.jpg') no-repeat center / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#intro > .container {
  height: 100%;
}

#intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

#intro-content img {
  display: block; 
  margin: 0 auto -1rem auto; /*Block and margin to keep centered on narrow IE11 views */
  max-width: 55vw;
}

#intro-arrow {
  display: block;
  padding-bottom: 2rem;
  margin: 0 auto;
}


/* HOMEPAGE NOTICE */

#notice {
  background: rgb(236, 196, 142);
}

#notice .container {
  text-align: center;
  font-size: 1.4rem;
  color: #000;
  padding-top: 40px;
  padding-bottom: 30px;
}

#notice i {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

#notice a {
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}

/* HOMEPAGE BOX LINKS */

#main-links {
  padding: 1rem 0;
  font-family: 'Bitter', serif;
  color: #FFF;
}

.box-item {
  flex: 1;
  padding: 1rem;
}

.home-box {
  height: 260px;
  transition: 0.2s linear;
}

.home-box:hover {
  opacity: 0.8;
  box-shadow: 0 0 5px 1px #FFF;
}

.box-content h3 { 
  display: inline-block;
  background: rgba(0,0,0,0.8);
  padding: 0.75rem;
  margin: 1rem 0 0 1rem;
  font-size: 2.2rem;
  border: 1px solid #FFF;
}

#menu-box {background: #fff url('../img/home-links/menu.jpg') no-repeat center / cover;}
#specials-box {background: #fff url('../img/home-links/specials.jpg') no-repeat center / cover;}
#about-box {background: #fff url('../img/home-links/about.jpg') no-repeat center / cover;}
#events-box {background: #fff url('../img/home-links/events.jpg') no-repeat center / cover;}
#party-box {background: #fff url('../img/home-links/parties.jpg') no-repeat center / cover;}

/* HOMEPAGE CONTACT / MAP */

#location {
  text-align: center;
}

#location .container {
  display: flex;
  align-items: center;
  background: #111;
}

.address, .map {
  flex: 1;
}

.address {
  padding: 1rem;
  font-size: 1.3rem;
}

/* OTHER PAGES LAYOUT */

main.page {
  margin: 2rem 0;
  padding: 0 1rem;
  line-height: 1.8;
}

.page > .container {
  max-width: 912px;
}

.page-banner {
  height: 40vh;
  min-height: 200px;
  max-height: 450px;
}

.about-banner {background: url('../img/banners/about.jpg') no-repeat center / cover;}
.menu-banner {background: url('../img/banners/menu.jpg') no-repeat center / cover;}
.specials-banner {background: url('../img/banners/menu.jpg') no-repeat center / cover;}
.contact-banner {background: url('../img/banners/contact.jpg') no-repeat center / cover;}

 /* MENU PAGE */

.menu-pdf {
  border-bottom: 1px dotted #EEE;
}

.menu-flex {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu-img {
  padding: 1rem;
  flex: 1;
}

  /* SPECIALS PAGE */

.specials-list {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  text-align: center;
  align-items: stretch;
  margin: 50px auto;
}

.specials-list h3 {
  font-size: 23px;
  border-bottom: 1px solid rgb(236, 196, 142);
  color: rgb(236, 196, 142);
}

.specials-list em {
  font-size: 19px;
}

.specials-day {
  width: 47%;
  margin: 0.5rem auto;
  padding: 1rem;
}

/* CONTACT */

.contact-flex {
  display: flex;
}

/* FOOTER */

footer {
  margin: 1rem 0 0 0;
  text-align: center;
}

footer .container {
  padding: 1rem;
}

footer .row {
  border-top: 1px solid rgb(236, 196, 142);
  border-bottom: 1px solid rgb(236, 196, 142);
  padding: 1rem 0;
  align-items: center;
  flex-wrap: wrap;
}

.footer-item {
  padding: 0.5rem;
  flex: 1;
}

#footer-info {
  border-top: none;
  border-bottom: none;
  border-left: 1px solid rgb(236, 196, 142);
  border-right: 1px solid rgb(236, 196, 142);
}

#footer-logo img {
  max-width: 60%;
}

footer i {
  margin: 0 0.3rem;
  transition: 0.1s ease;
}



.fa-twitter-square:hover {color: #00ACEE;}
.fa-facebook-square:hover {color: #3B5998;}
.fa-instagram:hover {color: #F58529;}
.fa-yelp:hover {color: #C41200;}


#footer-copyright {
  margin-top: 0.75rem;
  padding: 1rem;
  color: #888;
}

/* SMALL NOTEBOOK */

@media(max-width:992px) {
  .footer-item {
    font-size: 0.9rem;
  }

  .home-box {
    height: 250px;
  }
}

/* MOBILE */

@media(max-width:768px) {
  #navbar .hamburger {
    display: block;
  }

  #nav-links li:not(:last-child) {
    display: none;
  }

  #notice .container {
    font-size: 1.2rem;
  }

  #notice i {
    margin-bottom: 15px;
  }

  #notice p {
    font-size: 1.3rem;
  }

 
  #location .container,
                  .row {
    flex-direction: column;
  }

  .home-box {
    height: 230px;
  }
  
 .box-item {
    padding: 0.5rem 0;
    flex: 1 0 auto; /* Fix for IE when flex items switch to column direction */
  }

  .address {
    font-size: 1rem;
  }

  .map {
     width: 100%;
  }

  .page-side {
    display: none;
  }

  .menu-flex {
    flex-direction: column;
    justify-content: center;
  }

  .menu-img img {
    display: block;
    margin: 0 auto;
    max-width: 455px; 
  }

  .specials-day {
    width: 90%;
  }

  .footer-logo {
    display: none;
  }

  .footer-info .footer-location {
    border-left: 0px;
  }

  .footer-item {
    width: 90%;
    font-size: 1rem;
    flex: 0 1 auto; /* Fix for IE when flex items switch to column direction */
  }

  #footer-logo {
    display: none
  }
  
  #footer-info {
    order: 2;
    border-top: 1px solid rgb(236, 196, 142);
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding-bottom: 0;
  }
  
  #footer-hours {
    order: 1;
    padding-top: 0;
  }
}


