* {
  margin: 0;
  padding: 0;
  font-family: 'Josefin Sans', sans-serif;
  scroll-behavior: smooth;
}

nav {
  display: flex;
  padding: 1% 7%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  width: 200px;
}

.nav-contact {
  text-align: center;
}

.nav-contact ul li {
  list-style: none;
  text-decoration: none;
  padding: 1em;
}

.nav-links ul li {
  list-style: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 .75em;
  position: relative;
}

.nav-links ul a {
  color: black;
  text-decoration: none;
  font-size: .9em;
}

.nav-links ul a:hover {
  color: #8a8a8a;
}

.nav-links ul li::before {
  content: '';
  width: 0%;
  height: 3px;
  background: #8a8a8a;
  display: block;
  margin-bottom: .5em;
  transition: 0.3s;
}

.nav-links ul li:hover::before {
  width: 100%;
  transition: 0.5s;
}

.mobile_nav {
  display: none;
}

.menu-toggle {
  color: #000;
  font-size: 1.75em;
}

.close-toggle {
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: 5px;
  right: 25px;
  font-size: 4em;
}

.menu-overlay {
  height: 70%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgb(0, 0, 0, .9);
  transition: all 0.5s ease 0s;
  overflow: hidden;
}

.overlay-content {
  display: flex;
  height: 80%;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.overlay-content a {
  padding: 1em;
  font-size: 1.5em;
  color: #fff;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease 0s;
}

.title h2 {
  text-align: left;
}

.title h3 {
  text-align: left;
  line-height: 1.5;
  width: 80%;
  padding-bottom: 3em;
  margin-bottom: 3em;
}

.picture {
  background-image: url(images/background-food.jpg);
  background-size: cover;
  isolation: isolate;
  color: white;
}

.picture-filter {
  height: 85vh;
  position: relative;
}

.picture-filter::after {
  content: '';
  position: absolute;
  background: #b3b3b3;
  inset: 0;
  z-index: -1;
  mix-blend-mode: multiply;
}

.picture-text {
  padding: 10em 5em;
  line-height: 3em;
}

.picture-text a {
  text-decoration: none;
}

.order-btn {
  color: #000;
  background-color: #fff;
  text-align: center;
  border-radius: 5px;
  font-size: 1.25em;
  font-weight: 700;
  width: 10em;
  margin: 2em 0;
}

.order-btn:hover {
  background-color: #d9d9d9;
  transition: all .5s ease;
}

.mid-section {
  width: 80%;
  margin: auto;
  padding: 5em 0;
  text-align: center;
}

.about-picture {
  width: 80%;
  margin: auto;
  padding: 5em 0;
}

.about-picture img {
  width: 100%;
  box-shadow: .1em .1em .5em;
}

h1 {
  font-size: 2.5em;
  font-weight: 600;
}

h3 {
  text-align: center;
  font-weight: 600;
  margin: 1em 0;
}

h4 {
  padding: 1em;
}

p {
  color: #737373;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5em;
  padding: 1em;
}

.options {
  background: #ffe6e6;
  opacity: .85;
  border-radius: 10px;
  margin: 1em;
  padding: 1em 1em;
  box-sizing: border-box;
  transition: 0.3s;
}

.options:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.elements {
  margin: 5em 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.menu .elements {
  display: grid;
  grid-template-columns: repeat(2, minmax(400px, 1fr));
}

.food {
  margin: 1em;
  padding: 1em 1em;
  box-sizing: border-box;
}

.food img {
  width: 50%;
  box-shadow: .1em .1em .5em;
}

.food p {
  padding: 0;
}

.store {
  max-width: 500px;
  max-height: 500px;
  margin: auto;
  padding: 2em 0;
  box-sizing: border-box;
}

.store img {
  width: 75%;
  border-radius: .5em;
}

.footer {
  color: #ffff;
  background: #800000;
  margin: auto;
  margin-top: 5em;
  text-align: center;
  padding: 3em 0;
}

.footer p {
  color: #ffff;
  font-size: 0.75em;
}

.foot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
  margin-bottom: 3em;
}

.icons .fa {
  font-size: 1.75em;
  color: #ffff;
  margin: 0 .5em;
  cursor: pointer;
  padding: 1em 0;
}

/* Code for small screens */
@media(max-width: 840px) {
  nav {
    display: block;
    align-items: center;
    margin: 1em 0;
  }

  .logo {
    text-align: center;
  }

  .nav-links {
    text-align: center;
    margin-top: 1em;
  }

  .picture {
    background-position: center;
  }

  .menu .elements {
    margin-top: 2em;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .about-story {
    font-size: 70%;
  }

  .footer .foot {
    display: block;
  }
}

@media(max-width: 700px) {
  .logo {
    margin-top: 2em;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    z-index: 1;
  }

  .mobile_nav {
    display: inherit;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
  }

  .elements {
    display: grid;
    grid-template-columns: repeat(1, minmax(180px, 1fr));
  }

  .menu .elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .picture-filter {
    height: auto;
    position: relative;
  }

  .about-story {
    font-size: 50%;
  }
}