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

html,
body {
  height: 100%;
  font-family: "Sriracha", "Helvetica", "Arial", sans-serif;
  scroll-snap-type: y mandatory;
}

/* Shared template */
.section-template {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  scroll-snap-align: start;
}

.section-template h1 {
  font-size: 40px;
  text-align: center;
}


.background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Header */

header {
  min-height: 100%;
  background-image: url("images/burger.jpg");
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  opacity: 0.85;
  color: black;
  scroll-snap-align: start;
}

.resturant-name {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: flex-end;
  padding-right: 30px;

}

header h1 {
  font-size: 100px;
  width: 400px;
  opacity: 0.85;
  margin: 30px;
  line-height: 1.2;
}

header p {
  font-size: 25px;
  text-align: right;
  opacity: 0.75;

}

/* Features */
.features {
  background-color: #FAC158;
  border-bottom: 1px solid #FAC158;
}


.feature-item {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.feature-item h2 {
  font-size: 30px;
  margin: 0 auto;
  opacity: 0.8;
}

.feature-item .icon {
  font-size: 50px;
  color: #ff4940;
  margin: 10px auto;
}

.feature-item .subtitle {
  margin: 0 auto;
  text-align: center;
  width: 400px;
  opacity: .8;
}

.features hr {
  width: 40px;
  margin: 20px auto;
  border: 8px dotted lightslategray;
  border-bottom: none;
  opacity: .3;
}

/* MENU */
.menu {
  /* background-color: #FAC158; */
  background-image: url("images/meal.jpg");
  opacity: .85;
}

.menu h1 {
  font-size: 60px;
  margin: 0 auto 150px;
  width: 400px;
  text-align: center;
  color: white;
  text-shadow: 2px 2px #555555;
}

.menu button {
  background-color: #ff4940;
  border: none;
  width: 200px;
  height: 75px;
  border-radius: 5px;
  text-align: center;
  font-family: "Sriracha", "Helvetica", "Arial", sans-serif;
  font-size: 25px;
  margin: 15px auto;
}

.menu button:hover {
  background-color: #f76f68;
  cursor: pointer;
}

/* Contact */
.contact-section {
  background-color: #ff4940;
  justify-content: center;
}

.contact-section h1 {
  margin-bottom: 60px;
}

.contact-form {
  align-self: center;
}

.contact-form input[type='text'],
.form-row textarea {
  border: none;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  font-size: 16px;
}

.form-row {
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}

.form-row label {
  margin-bottom: 15px;
  font-size: 16px;
}

.form-row textarea {
  resize: none;
}

.form-row button {
  border: none;
  border-radius: 5px;
  height: 40px;
  background-color: #FAC158;
  font-size: 16px;
}

.form-row button:hover {
  background-color: #f5cd82;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #ff4940;
  text-align: center;
  padding-bottom: 10px;
}

@media only screen and (min-width: 700px) {
  .features {
    margin: 0 auto;
  }

  .feature-item {
    border: 1px solid transparent;
    width: 700px;
    margin: 0 auto;
   }

   .features h1 {
     margin-bottom: 40px;
   }

  .menu h1 {
    width: initial;
  }

  .contact-form {
    width: 600px;
  }

  .contact-section h1 {
    margin-bottom: 100px;
  }

  .contact-form {
    margin-bottom: 300px;
  }

  .form-row {
    align-items: flex-start;
    flex-direction: row;
  }

  .form-row input[type="text"],
  .form-row textarea,
  .form-row button {
    width: 350px;
    height: initial;
  }

  .form-row label {
    text-align: right;
    width: 120px;
    margin-top: 7px;
    padding-right: 20px;
  }

  .form-row button {
    margin-left: 120px;
    height: 40px;
  }
}