/*============*/
/*---Resets---*/
/*============*/
html, body {
  margin: 0;
  padding: 0;
}
body {
  background-image: url(../images/content_bg.jpg);
  background-size: 50%;
}
/*===========*/
/*---Fonts---*/
/*===========*/
@font-face {
  font-family: 'majesti_bannerbold';
  src: url('../fonts/majesti-banner-bold-webfont.woff2') format('woff2'),
       url('../fonts/majesti-banner-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/*=========================*/
/*---Keyframe Animations---*/
/*=========================*/
@keyframes slide1 {
  0% {
      opacity: 1;
  }
  17% {
      opacity: 1;
  }
  33% {
      opacity: 0;
  }
}
@keyframes slide2 {
  0%{
      opacity: 0
  }
  17% {
      opacity: 0;
  }
  33%{
      opacity: 1;
  }
  50% {
      opacity: 1;
  }
  67% {
      opacity: 0;
  }
  100% {
      opacity: 0;
  }
}
@keyframes slide3 {
  0% {
      opacity: 0;
  }
  50% {
      opacity: 0;
  }
  67%{
      opacity: 1;
  }
  83% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
/*===================*/
/*---Color Palette---*/
/*===================*/
:root {
  --fire-starter: #be1e2d;
  --cool-down: #8a8c8f;
  --sleek: #41393d;
  --spicy: #ef4e22;
  --lucky: #d4a18d;
  --bamboo: #d7e4c2;
}
/*============*/
/*---Global---*/
/*============*/
p {
	font-family: 'athelas, serif';
}
.content{
  box-sizing: border-box;
  max-width: 960px;
  background-color: white;
  margin: 0 auto;
}
.conatiner{
  width: 80%;
  margin:auto;
  overflow:hidden;
}
.content_bg{
  background: url(../images/content_bg.jpg);
  background-size: 50%;
  color: var(--cool-down);
  line-height: 1.25;
}
.logo-small {
  height: 33px;
  width: 33px;
  background-image: url(../images/logo-small.svg);
  background-size: cover;
  background-position: center;
}
/*==============*/
/*---Showcase---*/
/*==============*/
#showcase{
  min-height: 400px;
  position: relative;
  background-position: center;
  opacity: 0.80;
}
#showcase .layer1, .layer2, .layer3 {
    position: absolute;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
#showcase .layer1 {
    background-image: url(../images/slider-layer-1.jpg);
    animation: slide1 10s infinite;
}
#showcase .layer2 {
    background-image: url(../images/slider-layer-2.jpg);
    animation: slide2 10s infinite;
}
#showcase .layer3 {
    background-image: url(../images/slider-layer3.jpg);
     animation: slide3 10s infinite;
}
/*============*/
/*---Header---*/
/*============*/
.main {
  height: 155px;
  background-image: url(../images/logo.svg);
  padding-bottom: 0;
  background-color: var(--sleek);
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 8px 10px 2px #000;
}
/*================*/
/*---Navigation---*/
/*================*/
nav {
    margin-top: 113px;
    padding: 0;
    width: 100%;
}
nav ul {
    padding: 0;
    margin-bottom: 5px;
    list-style: none;
    display:flex;
    justify-content: space-around;
    align-items: baseline;
}
nav ul li{
  font-family: athelas, serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
nav ul li a {
    color: var(--cool-down);
    text-decoration: none;
    margin-top: 30px;
}
nav a:hover {
    color: var(--fire-starter);
}
nav a::before {
    content: '';
    display: block;
    height: 3px;
    width: 0%;
    background-color: var(--fire-starter);
    position: relative;
    top: -5px;
    transition: all ease-in-out 250ms;
}
nav a:hover::before {
    width: 100%;
}
/*=============*/
/*---Content---*/
/*=============*/
.reservation p{
	padding: 10px;
	color: var(--sleek);
}
.wrapper {
    margin: 0;
    padding: 30px 0 0 0;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 -10px 10px 0px #444;
}
.section {
    padding-bottom: 50px;
    margin-top:0;
    width: 66%;
}
.sub-menu-section {
  margin-top: 0;
  width: 66%;
}
.sub-menu-section h1 {
  margin: 0;
}
.sub-menu-section a {
  margin: 0;
  padding: 0;
  color: var(--sleek);
  text-decoration: none;
}
.sub-menu-section a:hover {
  color: var(--fire-starter);
}
.single-section {
    padding-bottom: 50px;
    margin-top:0;
    width: 100%;
}
.section h1, .single-section h1, .menu-section h1, .sub-menu-section h1 {
    font-family: 'majesti_bannerbold', serif;
    font-size: 30px;
    margin: 10px 0 5px;
    text-align: center;
    color: var(--fire-starter);
}
.section p {
    font-family: athelas, serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--cool-down);
    margin: 0 30px;
}
.section #mission{
    text-align: center;
}
/*==========*/
/*---Menu---*/
/*==========*/
.menu-wrapper {
  margin: 0;
  padding: 30px 0 30px 10px;
  height: 65vh;
  display: flex;
  justify-content: space-between;
  background-image: url(../images/menu-bg.jpg);
  z-index: 1;
}
.menu-section {
  width: 66%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1em 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1em 1fr 1fr 1fr 1fr 1fr;
}
.menu-section div h1 {
  margin: 0;
  padding: 0;
  color: var(--sleek);
}
.menu-section p {
  margin: 0;
  color: var(--fire-starter);
}
.menu-section a {
  text-decoration: none;
}
.menu-section a h1:hover {
  color: var(--fire-starter);
}
.app-name {
  background-color: rgba(255, 255, 255, .7);
  grid-column: 2 / 4;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
  z-index: 9;
}
.app-pic {
  background-image: url(../images/app-pic.jpg);
  background-size: cover;
  background-position: center;
  grid-column: 3 / 6;
  grid-row: 2 / 5;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
  z-index: 3;
}
.app-color {
  background-color: rgba(215, 228, 194, .8);
  grid-column: 1 / 5;
  grid-row: 3 / 6;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
}
.entree-name {
  background-color: rgba(255, 255, 255, .7);
  grid-column: 8 / 10;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
  z-index: 9;
}
.entree-pic {
  background-image: url(../images/ent-pic.jpg);
  background-size: cover;
  background-position: center;
  grid-column: 9 / 12;
  grid-row: 2 / 5;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
  z-index: 3;
}
.entree-color {
  background-color: rgba(190, 30, 45, .7);
  grid-column: 7 / 11;
  grid-row: 3 / 6;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
}
.desert-name {
  background-color: rgba(255, 255, 255, .7);
  grid-column: 2 / 4;
  grid-row: 7 /10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
  z-index: 9;
}
.desert-pic {
  background-image: url(../images/des-pic.jpg);
  background-size: cover;
  background-position: center;
  grid-column: 3 / 6;
  grid-row: 8 / 11;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
  z-index: 3;
}
.desert-color {
  background-color: rgba(213, 162, 144, .7);
  grid-column: 1 / 5;
  grid-row: 9 / 12;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
}
.drink-name {
  background-color: rgba(255, 255, 255, .7);
  grid-column: 8 / 10;
  grid-row: 7 / 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
  z-index: 9;
}
.drink-pic {
  background-image: url(../images/drink-pic.jpg);
  background-size: cover;
  background-position: center;
  grid-column: 9 / 12;
  grid-row: 8 / 11;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
  z-index: 3;
}
.drink-color {
  background-color: rgba(240, 78, 35, .7);
  grid-column: 7 / 11;
  grid-row: 9 / 12;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
}
/*====================*/
/*---Sub-Menu Lists---*/
/*====================*/
.menu-list {
  padding: 0 30px;
  height: 90%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.app-menu-list {
  background-color: rgba(215, 228, 194, .7);
  background-image: url(../images/app-list-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
}
.entree-menu-list {
  background-color: rgba(190, 30, 45, .3);
  background-image: url(../images/entree-list-bg.jpg);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
}
.desert-menu-list{
  background-color: rgba(213, 162, 144, .7);
  background-image: url(../images/desert-list-bg.jpg);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
}
.drink-menu-list {
  background-color: rgba(240, 78, 35, .7);
  background-image: url(../images/drink-list-bg.jpg);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 7px 7px 15px -3px rgba(0, 0, 0, .5);
}
.menu-nav {
  margin-top: -5px;
  margin-bottom: 5px;
  padding: 0 30px;
  display: flex;
  justify-content: space-around;
}
.menu-nav li {
  list-style: none;
}
.menu-list ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
}
.menu-list ul li {
  list-style: none;
  color: var(--sleek);
  align-items: center;
  font-family: "athelas", serif;
  font-size: 30px;
}
.menu-list .price {
  text-align: right;
}
.menu-list span {
  color: var(--fire-starter);
  font-family: "source-han-serif-tc", serif;
}
/*====================*/
/*---Private Dining---*/
/*====================*/
.private {
  background-image: url(../images/private-img.jpg);
  background-size: cover;
  background-position: center;
  height: 620px;
  position: relative;
  padding: 0;
  box-shadow: 0 0 0 0 #000;
}
.private-sec h1 {
  font-size: 4em;
  line-height: 1;
  margin: 0;
}
.private-res {
  position: absolute;
  top: 50px;
  right: 0;
}
.private-sec {
  padding: 20px 0;
  background-color: rgba(255, 255, 255, .7);
  width: 50%;
  position: absolute;
  top: 50px;
  left: 30px;
}
.private-sec #mission {
  text-align: left;
  color: var(--sleek);
}
/*==================*/
/*---Contact Form---*/
/*==================*/
.contact-section {
  height: 530px;
  width: 100%;
  background-image: url(../images/contact-bg.jpg);
  background: cover;
  overflow: hidden;
  position: relative;
}
.contact-section header {
    height: 70px;
    width: 562px;
    margin: 30px auto 0 auto;
    background-color: var(--sleek);
    text-align: center;
}
.contact-section header h1{
    font-family: majesti banner, serif;
    font-size: 30px;
    margin: 0;
    text-align: center;
    color: var(--cool-down);
    padding: 16.5px 0 16.5px 0;
}
.contact-matte {
    height: 400px;
    width: 562px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 0;
}
form {
    max-width: 450px;
    margin: auto;
    font-family: athelas, serif;
    padding-top: 34px;
}
form textarea{
    height: 10.5em;
}
form input, form textarea{
    border: 3px solid var(--sleek);
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    background-color: rgba(138, 140, 143, 0.7);
    font-size: 16px;
    font-family: athelas, serif;
}
form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--cool-down);
}
form .contact-info-group label {
    width: 50%;
    float: left;
    box-sizing: border-box;
}
form .contact-info-group label:nth-child(1) {
    padding-right: 5px;
}
form .contact-info-group label:nth-child(2) {
    padding-left: 5px;
}
form label {
    display: block;
    margin-bottom: 20px;
}
form label span {
    display: block;
    color: var(--fire-starter);
}
form .submit-wrap {
    text-align: right;
}
form [type="submit"] {
  padding-bottom: 10px;
  font-family: majesti banner, serif;
  text-align: center;
  background: var(--fire-starter);
  color: var(--cool-down);
  border: 3px solid var(--fire-starter);
  font-size: 20px;
  text-transform: uppercase;
  width: 33%;
}
form [type="submit"]:hover {
  cursor: pointer;
  border-color: rgba(255,255,255, .3);
}
/*==================*/
/*---Reservations---*/
/*==================*/
.accommodation {
  background-image: url(../images/accomodations.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.accomm {
  margin: auto;
  margin-top: 65px;
  width: 80%;
  background-color: rgba(255, 255, 255, .8);
}
.reservation {
    padding-bottom: 5px;
    margin-top: auto;
    margin-bottom: auto;
    height: 350px;
    width: 33%;
    /*border-radius: 30px 0 0 30px;*/
    background-color: rgba(138, 140, 143, .7);
    box-shadow: -5px 0px 25px -5px #111;
}
.reservation header {
    padding: 10px 0;
    font-family: majesti_bannerbold;
    text-align: center;
    /*border-radius: 30px 0 0 0;*/
    background-color: var(--fire-starter);
}
.reservation header h1{
    margin: 0;
    padding: 0;
    color: #aaa;
}
.reservation-info {
    padding-top: 10px;

}
.reservation form{
    padding-top: 30px;
}
.reservation form label{
    margin-bottom: 30px;
}
.reservation form input {
    width: 75%;
    padding: 5px 10px;
    margin: 0 auto;
    display: block;
}
.reservation form select {
    width: 75%;
    height: 34px;
    margin: 0 auto 30px auto;
    display: block;
    font-family: athelas, serif;
    font-size: 16px;
    background-color: rgba(138, 140, 143, 0.7);
    border: 3px solid var(--sleek);
    border-radius: 0 0 0 0;
}
.reservation form select option {
    padding: 5px 10px;
    color: var(--fire-starter);
}
.submit-wrap input {
    padding: 5px 10px;
}
/*=====================*/
/*---Sign-Up Section---*/
/*=====================*/
.sign-up{
  height: 530px;
  width: 100%;
  background-image: url(../images/signup.jpg);
  background: cover;
  overflow: hidden;
  position: relative;
}
.sign-up-box{
  background-color: rgba(255, 255, 255, .7);
  width: 640px;
  padding: 20px 50px;
  margin: 50px auto 0;
}
.sign-up-box h1 {
  margin: 0;
  color: var(--fire-starter);
  font-family: 'majesti_bannerbold', serif;
  font-size: 4em;
  line-height: 1;
  text-align: left;
}
.sign-up-box p {
  margin: 0;
  font-family: 'altheas', serif;
  color: var(--sleek);
  font-size: 1.25rem;
  font-weight: 100;
  text-align: center;
}
.sign-up-form {
  margin: 0;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}
.sign-up-left, .sign-up-right {
  width: 47%;
}
.sign-up-button {
  text-align: center;
}
.sign-up-button [type="submit"] {
  width: 35%;
  padding: 3px 6px 2px;
  font-family: 'majesti_bannerbold', serif;
  text-transform: uppercase;
  font-size: 20px;
  background-color: var(--fire-starter);
  color: var(--cool-down);
  border: 3px solid var(--fire-starter);
  box-sizing: border-box;
}
.sign-up-button [type="submit"]:hover {
  cursor: pointer;
  border-color: rgba(255,255,255, .3);
}
/*============*/
/*---Footer---*/
/*============*/
footer{
    padding: 15px;
    text-align: center;
    background-color: var(--fire-starter);
    box-shadow: 0 -10px 20px -3px rgba(48, 48, 48, 0.5);
  display: flex;
  justify-content: space-between;
}
footer ul{
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 50%;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
}
footer ul li{
    list-style: none;
}
footer a:hover {
  color: var(--sleek);
}
footer ul li a:hover {
  box-shadow: 0 4px 5px -3px rgba(0, 0, 0, .7);
}
footer .copyright {
    margin-bottom: 15px;
}
footer a{
    text-decoration: none;
    color: black;
}
.hours {
  width: 25%;
  margin: auto;
  padding-left: 30px;
  font-family: 'altheas', serif;
  font-size: 12px;
}
.hours-list {
  font-family: 'altheas', serif;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: justify
}
.location {
  width: 25%;
  font-family: 'altheas', serif;
  font-size: 12px;
  margin: auto;
}
.social {
  width: 50%;
}
/*===================*/
/*---Media Queries---*/
/*===================*/
@media screen and (max-width: 959px){
    body{
        background-image: none;
    }
}
@media screen and (max-width: 750px){
  .menu-wrapper {
    flex-direction: column;
    padding: 15px 10px;
    justify-content: space-around;
  }
  .reservation {
    order: 1;
    width: 100%;
    height: 33%;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 15px;
  }
  .reservation-info {
    display: flex;
    justify-content: space-around;
  }
  .reservation form {
    padding-top: 15px;
  }
  .reservation form label {
    margin-bottom: 15px;
  }
  .reservation form select {
    width: auto;
    margin-bottom: 15px;
  }
  .menu-section {
    order: 2;
    width: 100%;
    height: 66%;
  }
}
