* {
  box-sizing: border-box;
}

section, img, li, ul, header, p, h1, h2, h3, h4, h5, a, .hero {
  margin: 0;
  padding: 0;
}

body {
  margin: 0 auto;
  height: 100vh;
  background-color: #FDF4E0;
  display: flex;
  flex-direction: column;
}

/*  Navitagion Bar */
.nav {
  background: #E9B420;
  display: flex;
  justify-content: center;
  align-items: center;
  /* top | right | bottom | left */
  padding: 0.5rem 5rem;
  margin: 0 auto;
}

.logo {
  max-height: 60px;
  border: none;
  padding: 0 4rem;
}

.icon {
  height: 25px;
  padding-left: 15px;
  padding-top: 5px;
  text-decoration: none;
  align-self: center;
}

li {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* NAVIGATION LINKS */
.link {
  font-family: 'Roboto Slab', 'Lucida Console', 'Monaco', monospace;
  font-weight: normal;
  color: #414042;
}

.link a {
  padding: 2px;
  border-bottom: solid 1px #E9B420;
}

.link a:hover {
  border-bottom: solid 2px #414042;
  padding: 2px;
  font-size: 1rem;
}

.link a:focus {
  border-bottom: solid 2px #414042;
  padding: 2px;
}

/* Grid Column x2 */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-flow: dense;
  padding: 0;
  width: 100%;
  background: #FDF4E0;
  color: #414042;
}

.hero-image {
  background: url(http://www.foxholebkk.com/img/rodmay_coffee.jpg);
  background-size: cover;
  background-position: center;
  min-height: 750px;
}

.hero-text {
  text-align: center;
  align-self: center;
  /* top | right | bottom | left */
  padding: 0 50px;
}

p, h1, h2, h3, h4 {
  font-family: 'Roboto Slab', 'Lucida Console', 'Monaco', monospace;
  color: #414042;
}

h1 {
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  padding-bottom: 20px;
  text-align: center;
}

h3 {
  font-weight: normal;
  font-size: 1.2rem;
  opacity: 70%;
  padding-top: 10px;
  text-align: center;
}

h4 {
  font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
}

h5 {
  font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  padding-top: 1rem;
  text-align: center;
}

p {
  font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
}

.center {
  text-align: center;
}

/* Menu */
.wrapper {
  padding-top: 8rem;
  width: 75%;
  margin: 0 auto;
}

/* Title with border */
.title-wrapper {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  text-align: center;
  margin-bottom: 1rem;
}

.title {
  border-bottom: 10px solid #E9B420;
  grid-column: 2 / 3;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-flow: dense;
  grid-gap: 50px;
  margin: 0;
  margin-top: -20px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.menu-items {
  max-height: 250px;
  transition: 300ms;
  filter: saturate(0) brightness(1.1);
  transition: 200ms;
  padding: 0;
}

.menu-items:hover {
  filter: saturate(1);
}

/* About */
.about {
  padding-top: 8rem;
  margin: 0 auto;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* top | right | bottom | left */
  padding-top: 2rem;
  width: 100%;
  background: #FDF4E0;
  color: #414042;
}

.about-details li {
  padding: 0 5rem 0 5rem;
  align-self: center;
}

.pcenter {
  text-align: center;
}

.about-image {
  background: url(http://www.foxholebkk.com/img/foxhole-cat.jpg);
  background-size: cover;
  background-position: center;
  min-height: 700px;
}

/* Items */
.item {
  margin-top: 2.5rem;
}

.item-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-flow: dense;
  grid-gap: 2rem;
  padding: 3rem 0 1rem 0;
  width: 90%;
  margin: 0 auto;
}

ul.item-gallery img {
  width: 100%;
  max-width: 100%;
}

/* 2 columns */
figcaption {
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-auto-flow: row;
  grid-gap: 10px 5px;
  margin: 0;
}

/* 2 columns wider gap */
.special {
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-auto-flow: row;
  grid-gap: 20px 20px;
  margin: 0;
}

.price {
  grid-column: 2/3;
  text-align: left;
}

.description {
  opacity: 50%;
}

/* coffee */
.coffee {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  grid-auto-flow: dense;
  grid-gap: 10px 5px;
  margin: 0 auto;
  padding-right: 5px;
}

.additional {
  border-top: 1px solid;
  grid-column: span 4;
}

.additional-3 {
  border-top: 1px solid;
  grid-column: span 3;
}

.span-3 {
  grid-column: span 3;
}

.span-2 {
  grid-column: span 2;
}

.span-7 {
  grid-column: span 7;
}

/* tea */
.tea-columns {
  display: grid;
  grid-template-columns: 4fr 1fr 1fr;
  grid-auto-flow: dense;
  grid-gap: 10px 20px;
  margin: 0 auto;
  padding-right: 5px;
}

/* Category Hero Images */
.speciality-drinks {
  background: url(http://www.foxholebkk.com/img/meninblack.jpg);
}

.coffee-notcoffee {
  background: url(http://www.foxholebkk.com/img/flatwhite.jpg);
}

.tea {
  background: url(http://www.foxholebkk.com/img/cafe-hero-birdview.jpg);
}

.smoothie-soda {
  background: url(http://www.foxholebkk.com/img/cafe-hero-birdview.jpg);
}

.beer {
  background: url(http://www.foxholebkk.com/img/beer-fridge.jpg);
}

.breakfast {
  background: url(http://www.foxholebkk.com/img/muesli_strawberry.jpg);
}

.sweets {
  background: url(http://www.foxholebkk.com/img/friand-birdview.jpg);
}

.lunch {
  background: url(http://www.foxholebkk.com/img/pie.jpg);
}

.barsnack {
  background: url(http://www.foxholebkk.com/img/curry-gyoza_2.jpg);
}

.toast-image {
  background: url(http://www.foxholebkk.com/img/curry-gyoza_2.jpg);
}

.speciality-drinks, .coffee-notcoffee, .tea, .beer, .smoothie-soda, .breakfast, .sweets, .lunch, .barsnack, .toast-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100%;
}

/* More images */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-flow: dense;
  grid-gap: 1rem;
  padding: 2rem 5px 0 5px;
  width: 90%;
  margin: 0 auto;
}

ul.gallery img {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.toast {
  max-height: 100px;
}

.ingredients {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px 2rem 5px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

ul.ingredients img {
  max-height: 100px;
  padding: 0 5px 0 5px;
}

.option {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  padding-top: 2rem;
}

.flexbox {
  display: flex;
  flex-direction: column;
}

/* Media */
@media (min-width: 600px) {
  .speciality-drinks, .coffee-notcoffee, .tea, .beer, .smoothie-soda, .breakfast, .sweets, .lunch, .barsnack, .toast-image {
    height: 500px;
  }

  .option {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .speciality-drinks, .coffee-notcoffee, .tea, .beer, .smoothie-soda, .breakfast, .sweets, .lunch, .barsnack, .toast-image {
    min-height: 375px;
  }

  .option {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .card {
    margin-top: -1rem;
  }

  .logo {
    max-height: 40px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  p, h4 {
    font-size: 0.9rem;
  }

  .hero-text {
    text-align: center;
    align-self: center;
    padding: 3rem 0.5rem;
  }

  .hero-image {
    min-height: 400px;
  }

  .about-image {
    min-height: 400px;
  }

  .about-details li {
    padding: 2rem 2rem;
  }

  .menu-grid {
    grid-gap: 0;
    padding-top: 10px;
  }

  .wrapper {
    padding-top: 5rem;
    width: 100%;
  }

  .about {
    padding-top: 4rem;
    margin: 0 auto;
  }

  .about-details {
    display: grid;
    grid-template-columns: 1fr;
    /* top | right | bottom | left */
    padding-top: 1rem;
  }

  /* Menu Items */
  .menu-items h4 {
    padding: 0 5px 0 5px;
  }

  .menu-items p {
    padding: 0 5px 0 5px;
  }

  .span-3 p {
    padding: 0 5px 0 5px;
  }

  .span-2 p {
    padding: 0 5px 0 5px;
  }

  .item-gallery {
    width: 100%;
    padding: 1rem 0 1rem 0;
  }

  ul.item-gallery img {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  figcaption {
    grid-template-columns: 5fr 1fr;
    grid-gap: 10px 5px;
    margin: 0;
    padding: 0 0 1rem 0;
  }

  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1rem;
    padding: 1rem 0 0 0;
    width: 100%;
    margin: 0 0 2rem 0;
  }
}
