* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #333;
  scroll-behavior: smooth;
}

:root {
  --color-primary: #A0522D;
  --color-secondary: #502917;
  --color-background: #F2EDD7;
}

body {
  background-color: var(--color-background);
}

@media (min-width: 640px) {
  .spacer {
    height: 50px;
  }
}

@media (min-width: 768px) {
  .spacer {
    height: 75px;
  }
}

@media (min-width: 1024px) {
  .spacer {
    height: 100px;
  }
}

/* =================================================
 text styles
==================================================== */

h1 {
  font-size: 0;
}

h2 {
  font-family: 'Pacifico', cursive;
  font-weight: lighter;
  color: #333;
  text-shadow: 2px 8px 6px rgba(0,0,0,0.2), 0px -5px 35px rgba(255,255,255,0.3);
}

h2 {
  font-size: 1.5rem;
  margin: 1rem 0 0;
  text-align: center;
}

h3 {
  text-align: center;
}

p {
  padding: 0 1rem;
}

/* text media queries */

@media (min-width: 768px) {

  .sub-heading {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}



/* =================================================
 header
==================================================== */

header {
  background-color: var(--color-primary);
}

.header-banner {
  width: 100%;
  max-width: 1200px;
  height: 50vw;
  max-height: 600px;
  margin: auto;
  background-image: url(images/ech-banner.webp);
  background-repeat: no-repeat;
	background-size: contain;
	display: grid;
	place-content: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

/* =================================================
 navigation
==================================================== */

nav {
  background-color: var(--color-primary);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
  max-width: 1200px;
  margin: auto;
}

.nav-links {
  display: none;
}

.nav-book {
  color: #fff;
  padding: .25rem 1.5rem;
  border-radius: 1rem;
  background-color: #4C43CD;
  background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 87% at 26% 20%, rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  border: 2px solid white;
  cursor: pointer;
  transition: .4s linear;
}

.nav-book:hover {
  background-color: #fff;
  color: #4C43CD;
}

.button-container {
  display: flex;
  justify-content: center;
}

.dropdown-button {
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.dropdown-button .material-icons {
  color: white;
  font-size: 40px;
  padding-bottom: .25rem;
}

.dropdown-links {
  display: none;
  position: fixed;
  z-index: 5;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.dropdown-links a {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.75rem;
}

.dropdown-links span {
  color: white;
  font-size: 2rem;
  position: fixed;
  font-weight: 600;
  top: 20px;
  right: 30px;
}

.show {
  display: grid;
  place-content: center;
  text-align: center;
}

/* navigation media queires */

@media (min-width: 768px) {

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links * {
  color: white;
  margin-left: 2rem;
  font-size: 1.5rem;
}

.nav-book {
  font-size: 1.5rem;
}

.dropdown-button {
  display: none;
}
}

/* =================================================
 modal
==================================================== */

.modal {
  display: none;
  place-content: center;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal__content {
  background-color: var(--color-background);
  margin: 40% auto;
  padding: 1.5rem;
  border: 3px solid var(--color-primary);
  border-radius: 1rem;
  width: 80vw;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal__content b {
  max-width: 80%;
  margin: auto;
}

.modal__link {
  text-decoration: none;
  display: flex;
  align-content: center;
  justify-content: center;
  background-color: var(--color-secondary);
  color: #fff;
  padding: .5rem;
  border-radius: 1rem;
  border: 2px solid var(--color-primary);
  margin: auto;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  transition: .4s linear;
}

.modal__link i, .modal__link span {
  color: #fff;
}

.modal__link:hover {
  background-color: #fff;
}

.modal__link:hover i, .modal__link:hover span {
  color: #000;
}

.modal__close {
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  transition: .2s linear;
}

.modal__close:hover {
  color: crimson;
}

.modal__desktop {
  display: none;
}

@media (min-width: 768px){

  .modal__link {
    display: none;
  }

  .modal__desktop {
    display: block;
  }
}


/* =================================================
 main
==================================================== */

main {
  margin: auto;
  text-align: center;
}

.underline {
  width: 4rem;
  height: .25rem;
  margin: 1rem auto;
  background: var(--color-primary);
  box-shadow: 0 2.5px 7.5px rgba(0, 0, 0, .5);
}

section {
  margin: 50px auto;
  max-width: 1600px;
}

/* =================================================
  menus section
==================================================== */

.container__image {
  background-image: url(images/menu-mobile.webp);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center center;
  margin: 1rem auto;
  height: 400px;
  max-width: 1200px;
  position: relative;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.5));
  display: grid;
  place-content: center;
  border-radius: 1rem;
}

.container__links {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, .7);
  padding: 2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.container__link {
  background-color: #fff;
  color: var(--color-primary);
  padding: .5rem;
  border-radius: 1rem;
  border: 2px solid var(--color-primary);
  min-width: 200px;
  margin: 1rem auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  transition: .4s linear;
  font-weight: bold;
}

.container__link:hover  {
  background-color: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

@media (min-width: 768px) {
  .container__link {
    height: 50px;
  }

  .container__links {
    flex-direction: row;
    height: 33%;
    align-items: center;
    top: 132px;
  }
}

@media (min-width: 1024px) {
  .container__image {
    background-image: url(images/menu-desktop.webp);
  }
}

/* =================================================
  services section
==================================================== */

.services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 1rem;
  padding: 1rem;
  border: 2px solid var(--color-primary);
  background-color: #fff;
  border-radius: 10px;
}

.services p, .services u {
  font-weight: bold;
  color: var(--color-secondary);
}

.services__image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.services__item {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__item p {
  max-width: 200px;
}

@media (min-width: 768px) {
  .services {

    margin: auto;
    height: 400px;
    align-items: center;
  }

  .services__items {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}

/* =================================================
  promotion section
==================================================== */

.full-width {
  background-image: url(images/promo-desktop.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 100%;
  height: 600px;
  display: grid;
  place-content: center;
}

.card {
  background-color: rgba(0, 0, 0, .7);
  padding: 1rem;
}

.card h2, .card p, .card b {
  color: white;
}

@media (min-width: 768px) {

  .full-width {
    height: 700px;
  }

  .card {
    max-width: 650px;
  }

  .card p, .card b {
    font-size: 1.5rem;
  }

}

@media  (min-width: 1024px) {

    .full-width {
      height: 700px;
    }

    .card {
      max-width: 1200px;
    }
}

/* =================================================
  locations section
==================================================== */

.location {
  padding: 1rem;
  max-width: 1000px;
  margin: auto;
}

.location__name {
  color: #333;
  margin-bottom: 0;
}

.location__flex {
  padding: 1rem;
  border: 2px solid var(--color-primary);
  background-color: #fff;
  border-radius: 10px;
  margin: 1rem auto 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.location__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.location__span {
  margin-right: .75rem;
}

.location__item i {
  color: var(--color-secondary);
  font-size: 2rem;
  margin-left: 1rem;
}

.location__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

.location__item--desktop {
  display: none;
}

.location__link {
  display: flex;
  align-items: center;
  margin: auto;
  padding: .25rem .5rem .25rem 0;
  width: 100%;
  border-radius: 1rem;
  border: 2px solid var(--color-primary);
  background-color: var(--color-secondary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  transition: .4s linear;
}

.location__link--facebook {
  background-color: #4267B2;
  border-color: #fff;
}

.location__link--instagram {
 background-color:  #833AB4;
 border: 2px solid white;
 text-align: right;
 padding-left: .8rem;
}

.location__link--tripadvisor {
  background-color: #00af87;
  border: 2px solid white;
  text-align: right;
  padding-left: .8rem;
}

.location__link--instagram img, .location__link--tripadvisor img {
  height: 60px;
}

.location__link--facebook i {
  font-size: 3rem;
}

.location__link:hover  {
  background-color: #fff;
}

.location__link i, .location__link span {
  color: #fff;
}

.location__link:hover i, .location__link:hover span {
  color: var(--color-secondary);
}

/* main content media queries */
@media (min-width: 768px) {

  .location__item--desktop {
    display: flex;
  }

  .location__item--mobile {
    display: none;
  }

  .location__flex {
    max-width: 650px;
  }

  .location__item i {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {

  .location {
    display: flex;
    max-width: 1200px;
  }

  .location__flex {
    flex: 1 1 50%;
    margin: 1rem;
  }
}

/* =================================================
  social section
==================================================== */

.fb-page {
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.social-feeds {
  display: none;
}

.center {
  display: flex;
  justify-content: center;
}

.center-reviews {
  margin: 1rem
}

.reviews {
  margin: 1rem auto;
  padding: 1rem;
  max-width: 1125px;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
}

/* background image from https: //codepen.io/mupkoo/pen/YgddgB */

.reviews__link {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 12px 15px;
  text-decoration: none;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: auto;
  width: calc(100% - 10px);
  max-width: 500px;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 15%) inset, 0 3px 6px rgb(0 0 0 / 10%);
}

.reviews__link span {
  color: rgb(52, 128, 220);
  width: 90%;
  font-size: .8rem;
}

@media (min-width: 768px) {
  .fb-links-mobile {
    display: none;
  }

  .social-feeds {
    display: block;
    /* margin: auto; */
  }
}

@media (min-width: 1024px) {
  .social-feeds {
    display: flex;
  }
}

/* =================================================
 footer
==================================================== */

footer {
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 35px;
  background: -moz-linear-gradient(top, #A0522D 0%, #502917 100%);
  background: -webkit-linear-gradient(top, #A0522D 0%, #502917 100%);
  background: linear-gradient(to bottom, #A0522D 0%, #502917 100%);
}

.attribution, .attribution a, .attribution em {
  font-size: .8rem;
  color: white;
}
