/* GLOBAL */

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Istok Web', sans-serif;
  height: 100%;
  width: 100%;
  margin: 0px;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

a {
  color: #326E2A;
  text-decoration: none;
}

a:hover {
  color: #4ba53f;
  cursor: pointer;
}

#non-mobile-navigation {
  text-align: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#non-mobile-navigation > a > img {
  max-height: 150px;
}

#mobile-navigation {
  display: none;
}

#overlay-navigation {
  display: none;
}

.nav-link {
  display: inline-block;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 0px;
  margin-top: 0px;
}

#title {
  font-size: 3em;
  padding-bottom: 10px;
  margin: 0px;
}

#main-content {
  min-height: calc(100% - 300px);
}

.banner-photo {
  height: 400px;
}

.banner-photo-overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text {
  color: #fff;
  text-align: center;
}

.banner-text > h1 {
  font-size: 4em;
}

hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(50, 110, 42, 1), rgba(0, 0, 0, 0));
  margin-bottom: 20px;
}

.content-section {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.content-section > h1 {
  font-size: 2.5em;
}

.half-content-section > p, .full-content-section > p {
  margin: 0px;
}

.half-content-section {
  width: 50%;
}

.full-content-section {
  width: 100%;
}

#about-content, #contact-content, #menu-content, #home-content {
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 800px;
  margin: auto;
}

#footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 50%;
  margin: auto;
}

.footer-content {
  width: 50%;
}

.footer-content a > p, .footer-content > p {
  margin-bottom: 5px;
  margin-top: 5px;
}

#right-footer-content {
  text-align: right;
}

button {
  border: 2px solid #326E2A;
  font-size: inherit;
  color: #326E2A;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  display: block;
  margin: auto;
  margin-top: 10px;
}

button:hover {
  cursor: pointer;
  border: 2px solid #4ba53f;
  color: #fff;
  background-color: #4ba53f;
}

button:hover > a {
  color: #fff;
}

button:hover > a:hover {
  color: #fff;
}

button:focus {
  outline: 0px;
}

/* HOME PAGE */

#home-banner-photo {
  background: url('../images/homephoto.jpg') no-repeat center center;
  background-size: cover;
}

.notice {align-content: center;
font-size: 16pt;
color: darkred;}

.home-page-buttons {
  display: inline-block;
  margin: 0px;
}

/* MENU PAGE */

#menu-banner-photo {
  background: url('../images/menuphoto.jpg') no-repeat center center;
  background-size: cover;
}

#menu-disclaimer {
  margin-top: 30px;
  font-style: italic;
}

#menu-disclaimer > p {
  margin: 0px;
}

#menu-toggles {
  margin-top: 20px;
  margin-bottom: 40px;
}

#menu-toggles > button {
  display: inline-block;
}

.menu-toggle-active {
  border: 2px solid #4ba53f;
  background-color: #4ba53f;
  color: #fff;
}

.menu-toggle-active:hover {
  cursor: default;
}

.menu-section {
  display: none;
  margin-bottom: 40px;
}

.menu-section > h1 {
  font-size: 2.5em;
}

.menu-section-items > h2 {
  margin-bottom: 0px;
}

.menu-section-items > p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.menu-section-items {
  text-align: left;
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
}

.menu-section-active {
  display: block;
}

.big-and-bold {
  font-size: 1.5em;
}

/* CONTACT PAGE */

#contact-banner-photo {
  background: url('../images/contactphoto.jpg') no-repeat center center;
  background-size: cover;
}

#contact-banner-photo > .banner-photo-overlay > .banner-text > h1 {
  margin-bottom: 10px;
}

#contact-call-button {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  margin-top: 0px;
}

#contact-call-button > h1 {
  margin: 0px;
}

#contact-call-button:hover {
  background-color: #fff;
  color: #000;
}

#google-map {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
}

#facebook {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
  max-width: 300px;
  min-height: 400px;
  margin: auto;
  margin-top: 20px;
}

#google-map > iframe, #facebook > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ABOUT PAGE */

#about-banner-photo {
  background: url('../images/aboutphoto.jpg') no-repeat center center;
  background-size: cover;
}

/* MEDIA QUERIES */

@media(max-width: 768px) {
  .content-section {
    flex-direction: column;
  }

  .half-content-section {
    width: 100%;
  }
}

@media(max-width: 767px) {
  #non-mobile-navigation {
    display: none;
  }
  #mobile-navigation {
    height: 50px;
    display: flex;
    align-items: center;
  }
  #left-mobile-nav {
    width: 50%;
    height: 50px;
  }
  #right-mobile-nav {
    text-align: right;
    width: 50%;
  }
  .mobile-nav-logo {
    height: 50px;
  }
  #mobile-nav-toggle {
    margin-right: 10px;
    margin-top: 5px;
    font-size: 1.2em;
  }
  .fa-bars {
    font-size: 2em;
  }
  #overlay-navigation {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 1;
    overflow-x: hidden;
    background-color: #fff;
  }
  #overlay-navigation > h1 {
    text-align: center;
    padding-left: 20px;
    margin-top: 0px;
  }
  #overlay-navigation > hr {
    margin-top: -5px;
  }
  #close-mobile-nav {
    font-size: 2em;
    float: right;
    margin-top: 5px;
    margin-right: 10px;
  }
  .banner-text > h1 {
    font-size: 2.5em;
  }
  .banner-text > h2 {
    font-size: 1em;
  }
  .banner-text {
    padding-right: 20px;
    padding-left: 20px;
  }
  #footer {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid #326E2A;
  }
  .footer-content {
    width: 100%;
  }
  #right-footer-content, #left-footer-content {
    text-align: center;
  }
}
