/*--- Variables ---*/
:root {
  /*--- Colors ---*/
  --cherryWood: rgba(126, 0, 0,1);
  --fadedCherryWood: rgba(126, 0, 0,.8);
  --froth: #DFD9AB;
  --fadedFroth: rgba(223, 217, 171, .8);
  --americano: #883E24;
  --fadedAmericano: rgba(136, 62, 36,.8);
  --espreson: #491000;
  --fadedEspreson: rgba(73, 16, 0,.8);
  --typeWriterInk: #191312;
  --fadedInk: rgba(25, 19, 18, .8);
  /*--- Fonts ---*/
  --ff-s: 'Bitter', serif;
  --ff-ss: 'Hind', sans-serif;
}
/*--- Global Styles ---*/
body, html {
  height: 100%;
  width: 100%;
  font-family: var(--ff-ss);
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4, h5, h6, {
  font-family: var(--ff-s);
}
button {
  font-family: var(--ff-ss);
}
/*--- Mobile First Styling ---*/
.wrapper {
  height: 100vh;
}
/*--- Header ---*/
.header {
  height: 80%;
  background-image: url(../assets/header.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*--- Top Responsive Nav ---*/
.navbar {
  padding: 5px 10px;
  background-color: var(--fadedInk);
  position: relative;
  display: flex;
  justify-content:space-between;
  align-items: center;
}
/*--- Menu Toggle ---*/
.barOne, .barTwo, .barThree {
    width: 35px;
    height: 5px;
    background-color: var(--froth);
    margin: 6px 0;
    transition: 0.4s;
    opacity: .8;
}
.change .barOne {
  opacity: 1;
  -webkit-transform: rotate(-45deg) translate(-8px, 7px);
  transform: rotate(-45deg) translate(-8px, 7px);
}
.change .barTwo {opacity: 0;}
.change .barThree {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}
.logo {
  font-family: var(--ff-s);
  color: var(--fadedFroth);
  font-size: 24px;
}
.logo:hover, .logo:focus {
  color: var(--froth);
  cursor: pointer;
}
#menu {
  position: absolute;
  top: 49px;
  right: 0;
  left: 0;
  height: 100vh;
}
.hideMenu {
  display: none;
}
.menuItem{
  padding: 10px 0;
  width: 100%;
  color: rgba(255,255,255,.8);
  background-color: var(--fadedCherryWood);
  text-align: center;
  border-bottom: 1px solid var(--cherryWood);
  text-decoration: none;
}
.menuItem:last-child {
  border-bottom: none;
}
.menuItem:hover {
  background-color: var(--cherryWood);
  color: white;
}
.showMenu {
  background-color: rgba(255, 255, 255, .8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
/*---Content Section ---*/
section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bookTable {
  display: none;
}
#bookTableBtn {
  width: 80%;
  margin: 20px auto;
  padding: 5px 0;
  background-color: var(--fadedInk);
  border: none;
}
.btn {
  font-size: 24px;
  color: white;
}
.mainContent {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.contentCard {
  margin-bottom: 10px;
  max-width: 80%;
  padding: 5px;
  box-shadow: 2px 2px 4px var(--fadedInk);
}
.contentCard:last-child {
  margin-bottom: 0;
}
.cardImg {
  height: auto;
  width: 100%;
}
.cardImg img {
  max-width: 100%;
}
.cardCopy {
  padding: 10px;
}
.heading {
  margin-bottom: 10px;
  color: var(--fadedInk);
}
.cardCopy p {
  font-size: 1rem;
  line-height: 1rem;
  color: var(--typeWriterInk);
}
/*--- Contact Form ---*/
input, textarea {
  font-family: var(--ff-ss);
  padding: .5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--fadedInk);
  border-radius: .25rem;
  font-size: .8rem;
}
input:focus, textarea:focus {
  outline: none;
}
label {
  margin-bottom: .5rem;
  color: var(--typeWriterInk);
  font-family: var(--ff-s);
}
.contactCard {
  width: 80%;
  padding: 0 1rem 1rem 1rem;
  margin-top: 2rem;
  box-shadow: 2px 2px 4px var(--fadedInk);
}
.contactCard h1 {
  margin: .5rem auto;
  text-align: center;
  color: var(--typeWriterInk);
}
.contact {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.contact button {
  padding: .5rem;
  background-color: var(--fadedCherryWood);
  font-size: 1rem;
  color: white;
  border-radius: .25rem;
  border: none;
  text-transform: uppercase;
}
.contact button:focus {
  outline: none;
}
/*--- Form Validation Modal ---*/
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: var(--fadedInk);
}
.modal-content {
  background-color: #ccc;
  margin: 200px auto;
  width: 70%;
  z-index: 100;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background: var(--fadedCherryWood);
  padding: 15px;
}
.modal-body {
  padding: 1rem 2rem;
  font-family: var(--ff-s);
}
.closeBtn {
  color: #ccc;
  font-size: 2rem;
  line-height: 16px;
}
.closeBtn:hover, .closeBtn:focus {
  color: var(--fadedInk);
  cursor: pointer;
}
/*--- Shop ---*/
.search {
  margin-top: 2rem;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search input {
  margin: 0;
  width: 100%;
  border-radius: .25rem 0 0 .25rem;
  border-right: none;
}
.search button {
  background: none;
  height: 39px;
  border: none;
}
.search button img {
  height: 39px;
}
.shopLinks {
  margin-top: 1.5rem;
  display: flex;
}
.shopLinks a {
  padding: 0 .5rem;
  font-family: var(--ff-s);
  color: var(--fadedInk);
  text-decoration: none;
  border-right: 1px solid var(--fadedInk);
}
.shopLinks a:last-child {
  border-right: none;
}
.shopLinks a:hover {
  color: var(--typeWriterInk);
}
.shopContain {
  width: 100vw;
}
.shopItem {
  margin: 2rem auto;
  padding: .5rem;
  width: 80%;
  box-shadow: 2px 2px 4px var(--fadedInk);
}
.shopItem img {
  width: 100%;
}
.shopItem h2 {
  text-align: center;
  color: var(--cherryWood);
}
.shopItem p {
  margin-top: .5rem;
  text-align: center;
  color: var(--typeWriterInk);
}
/*--- Menu ---*/
.menuTitle {
  font-family: 'Bitter', serif;
  margin-top: 2rem;
  font-size: 2rem;
}
.drinkItem-odd {
  width: 100%;
  padding-right: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid var(--fadedInk);
}
.drinkItem-even {
  width: 100%;
  padding-left: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid var(--fadedInk);
}
.drinkItem-odd:last-child, .drinkItem-even:last-child {
  border: none;
}
.drinkItem-odd img, .drinkItem-even img {
  width: 33%;
}
.drinkInfo h2 {
  font-size: 1.25rem;
}
.drinkInfo p {
  margin-top: .5rem;
  line-height: 1.25rem;
}
.cal {
  float: left;
}
.price {
  float: right;
}
/*--- Vision ---*/
.mobileContain {
  width: 80%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.profilePic {
  width: 250px;
  height: 250px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}
.profilePic img {
  width: 100%;
}
.mobileContain p {
  margin: .5rem 0;
  line-height: 1.2rem;
}
/*--- Footer ---*/
footer {
  margin-top: 2rem;
}
.footerMenu {
  display: flex;
  flex-direction: column;
}
.social {
  padding-top: 1rem;
  background-color: var(--fadedCherryWood);
  text-align: center;
}
.social button {
  margin: 0 .5rem;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  fill: var(--fadedFroth);
  border-radius: 50%;
  border: none;
}
.social button:hover {
  fill: var(--froth);
}
/*--- Location Page ---*/
.map {
  background-image: url(https://maps.googleapis.com/maps/api/staticmap?center=Nashville,+TN&zoom=13&scale=1&size=640x640&maptype=roadmap&format=png&visual_refresh=true&markers=size:mid%7Ccolor:0xba0000%7Clabel:1%7CNashville,+TN&markers=size:mid%7Ccolor:0xdb2800%7Clabel:2%7CGulch,+TN);
  width: 100%;
  height: 300px;
  margin-bottom: 1rem;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.locations {
  width: 80%;
  text-align: center;
}
.addressWrap {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--fadedInk);
}
.addressWrap:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.address {
  align-self: center;
}
.address h3 {
  line-height: 1.5rem;
  margin-bottom: .5rem;
}
.address p{
  line-height: 1rem;
}
.phoneNum {
  display: none;
}
.mobileBtns {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
.mobileBtns button {
  padding: .5rem 2rem;
  font-family: var(--ff-ss);
  font-size: 1rem;
  background-color: var(--fadedCherryWood);
  color: rgba(255,255,255, .8);
  border-radius: .25rem;
  border: none;
}
/*================*/
/*  Media Queries  /
/=================*/
@media only screen and (min-width: 800px){
  /*--- NavBar ---*/
  .navbar {
    padding: 0 10px;
  }
  .logo {
    margin: .5rem 0;
  }
  #toggle {
    display: none;
  }
  #menu {
    height: 100%;
    position: inherit;
    height: auto;
    top: auto;
    right: auto;
    left: auto;
  }
  .menuItem {
    padding: 0 1rem;
    height: 100%;
    background: none;
    border: none;
  }
  .menuItem:hover {
    background: none;
  }
  .hideMenu {
    display: inline-block;
  }
  /*--- Vision Page ---*/
  .mobileContain {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .profilePic {
    margin-right: 1rem;
    border-radius: 0;
    width: 40%;
    height: 100%;
  }
  .bigScreen {
    width: 55%;
  }

  /*--- Footer ---*/
  footer {
    padding: .6rem;
    background-color: var(--fadedCherryWood);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footerMenu {
    max-width: 70%;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    order: 1;
    flex-grow: 3;
  }
  .footerMenu .menuItem {
    padding: 0;
    margin-right: .5rem;
    background: transparent;
    border-bottom: none;
  }
  .social {
    padding: 0;
    min-width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: none;
    order: 2;
  }
  /*--- Shop ---*/
  .shopContain {
    width: 80%;
    display:flex;
  }
  .shopItem {
    margin-right: 2rem;
  }
  /*--- Menu Page ---*/
  .menuContent {
    width: 80%;
    display:flex;
    flex-wrap: wrap;
  }
  .drinkItem-odd, .drinkItem-even {
    width: 40%;
    margin:1rem auto;
    border-bottom: none;
  }
}
@media only screen and (min-width: 768px) {
  .header {
    height: 60%;
  }
  /*--- Locations Page ---*/
  .map {
    height: 640px;
  }
  .addressWrap {
    flex-direction: row;
    align-items: center;
  }
  .mobileBtns {
    flex-direction: column;
  }
  .callBtn {
    display: none;
  }
  .phoneNum {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .menuContent {
    width:60%;
  }
  .mainContent {
    width: 80%;
    flex-direction: row;
  }
  .contentCard {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .contentCard:last-child {
    margin-right: 0;
  }
  #bookTableBtn {
    display: none;
  }
  .bookTable {
    display: block;
    margin: 2rem auto;
  }
  .bookTable select, input[type="date"] {
    padding: .5rem 5rem .5rem .5rem;
    font-family: var(--ff-ss);
    margin-right: 2rem;
    background-color: #fff;
    font-size: .91rem;
    border-radius: .25rem;
    border-bottom: 1px solid var(--fadedInk);
    border-left: 1px solid var(--fadedInk);
    border-top: none;
    border-right: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
  }
  .bookTable select:focus {
    outline: none;
  }
  .tableBtn {
    background-color: var(--fadedCherryWood);
    color: rgba(255,255,255, .8);
    padding: .5rem 3rem;
    border:none;
    border-radius: .25rem;
  }
  section {
    margin-bottom: 2rem;
  }
  .locaWrap {
    display:flex;
    flex-direction: row;
  }
  .map {
    width: 60%;
    margin-bottom: 0;
    height: 100vh;
    order: 2;
  }
  .locations {
    order: 1;
    width: 40%;
  }
  .addressWrap {
    width: 100%;
  }
  .address {
    margin-left: 2rem;
  }
  .mobileBtns {
    margin-right: 2rem;
  }
  footer {
    margin-top: 0;
  }
