/* fonts */
/* colors */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 15px;
}

@media screen and (max-width: 450px) {
  body {
    font-size: 13px;
  }
}

.container {
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}

@media screen and (max-width: 1050px) {
  .container {
    width: 100%;
    padding: 80px 50px;
  }
}

@media screen and (max-width: 450px) {
  .container {
    width: 100%;
    padding: 30px 30px;
  }
}

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

a:hover {
  color: #4c4c4c;
}

p {
  text-align: center;
  line-height: 150%;
  margin-bottom: 10px;
}

.p-grey {
  color: #4c4c4c;
}

.p-white {
  color: white;
}

.pattern-bg {
  position: relative;
  background: #f2f2f2;
  overflow: hidden;
}

.pattern-bg::before {
  background: url("../img/bg-pattern.png");
  background-repeat: repeat;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.9;
}

/* headings */
h1 {
  font-family: "Yeseva One", cursive;
  font-size: 70px;
  font-weight: normal;
  color: #f2f2f2;
  text-align: center;
  text-transform: lowercase;
  text-shadow: 0px 0px 5px #333333;
  padding: 90px 0;
}

@media screen and (max-width: 1050px) {
  h1 {
    font-size: 65px;
  }
}

@media screen and (max-width: 850px) {
  h1 {
    padding: 185px 0 90px;
  }
}

@media screen and (max-width: 695px) {
  h1 {
    padding: 120px 0 25px;
    font-size: 28px;
    line-height: 150%;
  }
}

h2 {
  font-family: "Yeseva One", cursive;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 695px) {
  h2 {
    font-size: 22px;
  }
}

.h2-orange {
  color: #d3ad3b;
}

.h2-orange::after {
  content: url("../img/divider-orange.png");
  top: 100%;
  display: block;
  margin: 10px auto;
}

.h2-white {
  color: white;
}

.h2-white::after {
  content: url("../img/divider-white.png");
  top: 100%;
  display: block;
  margin: 10px auto;
}

h3 {
  font-family: "Yeseva One", cursive;
  font-size: 18px;
  font-weight: 400;
  color: white;
  text-align: center;
}

@media screen and (max-width: 695px) {
  h3 {
    font-size: 16px;
  }
}

h3::after {
  content: url("../img/divider-white.png");
  top: 100%;
  display: block;
  margin: 10px auto;
}

h4 {
  font-family: "Yeseva One", cursive;
  font-size: 18px;
  font-weight: 400;
  color: #d3ad3b;
  text-align: left;
}

@media screen and (max-width: 695px) {
  h4 {
    font-size: 16px;
  }
}

/* header */
.header {
  background: url("../img/bg-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
}

@media screen and (max-width: 695px) {
  .header {
    height: 380px;
  }
}

.header-container {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1050px) {
  .header-container {
    width: 100%;
    padding: 0 50px;
  }
}

@media screen and (max-width: 850px) {
  .header-container {
    width: 100%;
    padding: 0;
  }
}

.header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 695px) {
  .header-buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 30px;
  }
}

.book-table {
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  padding: 15px 50px;
  margin: 0 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px black solid;
}

@media screen and (max-width: 695px) {
  .book-table {
    width: 100%;
    text-align: center;
  }
}

.see-menu {
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  padding: 15px 50px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px lightgrey solid;
}

@media screen and (max-width: 695px) {
  .see-menu {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* navigation */
.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-shadow: 0px 0px 5px #333333;
  font-weight: 400;
  padding: 5px 0;
  list-style: none;
}

@media screen and (max-width: 1050px) {
  .navigation {
    font-size: 16px;
  }
}

@media screen and (max-width: 850px) {
  .navigation {
    display: none;
  }
}

.logo img {
  height: 80px;
}

.nav-item a {
  padding: 20px;
  color: #f2f2f2;
  text-decoration: none;
}

@media screen and (max-width: 1050px) {
  .nav-item a {
    padding: 20px 10px;
  }
}

.nav-item a:hover {
  color: #d3ad3b;
}

.nav-items-right {
  margin-left: auto;
}

.nav-social a {
  color: #d3ad3b;
  padding: 10px;
}

@media screen and (max-width: 1050px) {
  .nav-social a {
    padding: 5px;
  }
}

.nav-social a:hover {
  color: #f2f2f2;
}

#nav-scroll {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 95px;
  z-index: 10;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 0px 5px 0px #333333;
          box-shadow: 0px 0px 5px 0px #333333;
}

@media screen and (max-width: 850px) {
  #nav-scroll {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.nav-scroll-container {
  width: 1000px;
  margin: auto;
}

@media screen and (max-width: 1050px) {
  .nav-scroll-container {
    width: 100%;
    padding: 0 50px;
  }
}

@media screen and (max-width: 850px) {
  .nav-scroll-container {
    padding: 0 0;
  }
}

.hamburger-navigation {
  display: none;
}

/* about */
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 550px;
}

@media screen and (max-width: 1050px) {
  .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 400px;
  }
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 420px;
  width: 40%;
  z-index: 2;
}

@media screen and (max-width: 1050px) {
  .about-content {
    height: 400px;
    width: 49%;
  }
}

@media screen and (max-width: 700px) {
  .about-content {
    height: 400px;
    width: 100%;
  }
}

.cook {
  width: 250px;
  margin-top: auto;
}

@media screen and (max-width: 1050px) {
  .cook {
    width: 200px;
  }
}

.dish {
  height: 100%;
  z-index: 2;
}

@media screen and (max-width: 1050px) {
  .dish {
    height: auto;
    width: 48%;
  }
}

@media screen and (max-width: 700px) {
  .dish {
    display: none;
  }
}

/* ingredients */
.ingredients-bg {
  background: url("../img/bg-ingredients.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 650px;
}

@media screen and (max-width: 450px) {
  .ingredients-bg {
    height: 430px;
  }
}

.ingredients {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 490px;
}

@media screen and (max-width: 1050px) {
  .ingredients {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 490px;
  }
}

@media screen and (max-width: 450px) {
  .ingredients {
    height: 370px;
  }
}

.ingredients-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 70px 50px;
}

@media screen and (max-width: 1050px) {
  .ingredients-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 70%;
    z-index: 2;
  }
}

@media screen and (max-width: 850px) {
  .ingredients-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    z-index: 2;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (max-width: 850px) {
  .ingredients-content {
    padding: 30px;
  }
}

.ingredients-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: auto;
}

@media screen and (max-width: 850px) {
  .ingredients-images {
    margin-top: 0;
    width: 70%;
    margin: auto;
  }
}

@media screen and (max-width: 450px) {
  .ingredients-images {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.ingredients img {
  height: 100px;
  width: 100px;
}

@media screen and (max-width: 450px) {
  .ingredients img {
    height: 55px;
    width: 55px;
  }
}

/* menu */
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media screen and (max-width: 850px) {
  .menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 43%;
  z-index: 2;
}

@media screen and (max-width: 1050px) {
  .menu-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 48%;
    z-index: 2;
  }
}

@media screen and (max-width: 850px) {
  .menu-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    z-index: 2;
  }
}

.menu-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 850px) {
  .menu-section {
    margin: 50px 0 0;
  }
}

@media screen and (max-width: 450px) {
  .menu-section {
    margin: 20px 0 0;
  }
}

.menu-section-margin {
  margin: 50px 0 0;
}

@media screen and (max-width: 450px) {
  .menu-section-margin {
    margin: 20px 0 0;
  }
}

.menu-item {
  padding: 0 10px 10px;
  margin: 20px 0 0;
}

.menu-item-special {
  border: 1px #d3ad3b solid;
  padding: 10px;
  margin: 20px 0 0;
}

.menu-item-special-note {
  background: #d3ad3b;
  font-size: 13px;
  color: white;
  margin-bottom: -20px;
  width: 60px;
  text-align: center;
  margin-left: auto;
}

.menu-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px #d3ad3b solid;
}

.menu-description {
  text-align: left;
}

@media screen and (max-width: 1050px) {
  .menu-description {
    font-size: 13px;
  }
}

@media screen and (max-width: 450px) {
  .menu-description {
    font-size: 10px;
  }
}

/* reviews */
.reviews-bg {
  background: url("../img/bg-reviews.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
}

@media screen and (max-width: 450px) {
  .reviews-bg {
    height: 460px;
  }
}

.reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 440px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
  padding: 70px 70px;
  width: 58%;
  margin: 0 auto;
}

@media screen and (max-width: 1050px) {
  .reviews {
    width: 70%;
  }
}

@media screen and (max-width: 850px) {
  .reviews {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .reviews {
    height: 400px;
    padding: 30px;
  }
}

.review {
  font-family: "Yeseva One", cursive;
  color: white;
  text-align: center;
  line-height: 200%;
  margin: 0 0 20px;
}

@media screen and (max-width: 1050px) {
  .review {
    line-height: 180%;
  }
}

/* reservations */
.reservations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 430px;
}

@media screen and (max-width: 450px) {
  .reservations {
    height: 570px;
  }
}

.reservations-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40%;
  z-index: 2;
}

@media screen and (max-width: 1050px) {
  .reservations-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    z-index: 2;
  }
}

.reservations-images {
  width: 50%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1050px) {
  .reservations-images {
    display: none;
  }
}

.reservations-img {
  width: 48%;
}

.reservations-form {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
}

.form-item {
  width: 48%;
}

@media screen and (max-width: 450px) {
  .form-item {
    width: 100%;
  }
}

label {
  color: #d3ad3b;
  font-weight: 700;
}

input, select, button {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  border: 1px #cccccc solid;
  padding: 5px 10px 7px;
  height: 35px;
}

input, select {
  background: white;
  color: #757575;
  width: 100%;
  margin: 5px 0 15px;
  font-style: italic;
  border-radius: 0;
  -webkit-appearance: none;
}

button {
  background: #d3ad3b;
  color: white;
  width: 48%;
  margin: 10px auto 0;
  border: 1px #d3ad3b solid;
}

input:focus, select:focus, button:focus {
  border: 1px #d3ad3b solid;
  outline: none;
}

/* footer */
.footer {
  background: black;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 850px) {
  .footer-content {
    display: block;
    width: 100%;
  }
}

.footer-item {
  width: 32%;
}

@media screen and (max-width: 850px) {
  .footer-item {
    padding: 10px;
    width: 100%;
  }
}

/* media queries for mobile navigation */
@media screen and (max-width: 850px) {
  .hamburger-navigation {
    display: block;
    background: rgba(0, 0, 0, 0.7);
    z-index: 101;
    width: 100%;
    height: 95px;
    position: fixed;
    top: 0;
  }
  .hamburger-on, .hamburger-off {
    padding: 5px;
    position: fixed;
    top: 25px;
    right: 30px;
    font-size: 30px;
    z-index: 101;
  }
  .hamburger-on, #toggle-menu:checked ~ .hamburger-nav, #toggle-menu:checked ~ .hamburger-off {
    display: block;
    -webkit-transform-origin: 4px 0px;
            transform-origin: 4px 0px;
  }
  .hamburger-off, #toggle-menu, #toggle-menu:checked ~ .hamburger-on {
    display: none;
  }
  .hamburger-nav {
    z-index: 102;
    position: fixed;
    list-style-type: none;
    top: 95px;
    display: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  .hamburger-nav li.nav-item a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
  }
  .hamburger-nav li a:hover {
    color: #f2f2f2;
    background: #d3ad3b;
  }
  li.nav-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  li.nav-social a {
    padding: 30px 20px;
  }
  li.nav-social a:hover {
    background: none;
  }
  .logo {
    margin-left: 30px;
    padding: 5px 0;
  }
}
/*# sourceMappingURL=style.css.map */