:root {
  --prim-font: Montserrat;
  --sec-font: Poppins;
  --prim-color: #d79532;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

.burger_menu {
  background: black;
}

.hero {
  height: 100vh;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(./hero-wallp.jpg);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./hero-wallp.jpg);
  background-size: cover;
  background-position: center;
  max-height: 100%;
}

.hero header {
  height: 65px;
  width: 100%;
}

.hero header h1 {
  font-family: var(--prim-font);
  font-weight: 900;
  font-size: 1.5rem;
  padding: 0.4rem 1.6rem;
  color: var(--prim-color);
  -webkit-transition: color 0.3s 0.2s ease-in-out;
  transition: color 0.3s 0.2s ease-in-out;
}

.hero header h1.burger_open {
  color: black;
  position: absolute;
  z-index: 100;
}

.hero header nav.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hero header nav {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  position: absolute;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 0px;
  top: 0;
  z-index: 50;
  background: var(--prim-color);
}

.hero header nav ul {
  height: 40%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4rem 2rem;
  background: rgba(215, 149, 50, 0.8);
}

.hero header nav ul li {
  list-style: none;
  font-family: var(--prim-font);
  font-style: normal;
  font-weight: 900;
  margin: 0.5rem 0;
  font-size: 2.6rem;
  height: auto;
  width: 100%;
}

.hero header nav ul li:hover {
  color: white;
  cursor: pointer;
}

.hero header nav ul li button {
  height: 65px;
  width: 100%;
  margin: 0 auto;
  background: black;
  border: 0;
  color: white;
  font-family: var(--prim-font);
  font-size: 2rem;
  font-weight: 900;
}

.hero header nav ul li button:hover {
  cursor: pointer;
}

.hero header ul.desknav {
  height: 65px;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 3rem;
  top: 0;
  list-style: none;
}

.hero header ul.desknav li a {
  text-decoration: none;
  color: white;
  font-family: var(--sec-font);
  font-size: 1.2rem;
  font-weight: 900;
}

.hero header ul.desknav li button {
  height: 50px;
  width: 130px;
  color: white;
  font-family: var(--sec-font);
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--prim-color);
  border: 0;
}

.hero .burger {
  position: absolute;
  right: 1rem;
  top: 1rem;
  height: 26px;
  width: 30px;
  padding: 0.4rem 1.6rem;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .burger:hover {
  cursor: pointer;
}

.hero .burger.open #bars {
  display: none;
}

.hero .burger.open #close {
  display: block;
}

.hero .burger #close {
  display: none;
}

.hero .burger img {
  height: 26px;
  width: 30px;
  position: absolute;
}

.hero .hero_content {
  height: calc(100vh - 65px);
  width: 100%;
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero .hero_content div {
  height: 70%;
  width: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 1rem;
  position: relative;
  top: 100px;
}

@media (min-width: 650px) {
  .hero .hero_content div {
    width: 100%;
  }
}

.hero .hero_content div h2 {
  font-size: clamp(3rem, 4vw, 5rem);
  width: 50%;
  font-family: var(--sec-font);
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 1px #d79532;
}

.hero .hero_content div button {
  height: 50px;
  width: 200px;
  background: var(--prim-color);
  font-family: var(--sec-font);
  font-size: 2rem;
  font-weight: 900;
  color: black;
  border: 0;
}

.hero .hero_content div button:hover {
  cursor: pointer;
}

#burgers {
  background: black;
}

#salads {
  background: var(--prim-color);
}

#salads button {
  background: white;
  color: black;
  margin-top: 1rem;
}

#salads h1 {
  color: white;
  -webkit-text-decoration: 2px underline white;
          text-decoration: 2px underline white;
}

.meals {
  min-height: 100vh;
  width: 100vw;
  padding: 1rem calc((100vw - 1300px) / 2);
}

.meals .sectionTitle {
  height: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.meals .sectionTitle h1 {
  font-family: var(--prim-font);
  font-weight: 900;
  color: white;
  font-size: clamp(2rem, 4.2vw, 5rem);
  -webkit-text-decoration: 5px underline var(--prim-color);
          text-decoration: 5px underline var(--prim-color);
}

.meals .meal_card_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

.meals .meal_card_container .meal_card {
  margin: 2rem 2rem;
  width: 300px;
  font-family: var(--prim-font);
  background: black;
}

.meals .meal_card_container .meal_card img {
  height: 300px;
  min-width: 300px;
  max-width: 100%;
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}

.meals .meal_card_container .meal_card .prod_des {
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.meals .meal_card_container .meal_card .prod_des h2 {
  font-size: clamp(2.5rem, 2vw, 3rem);
  color: white;
  font-weight: 900;
}

.meals .meal_card_container .meal_card .prod_des button {
  height: auto;
  width: 100%;
  font-size: clamp(2rem, 2vw, 3rem);
  background: var(--prim-color);
  border: 0;
  color: white;
  text-transform: uppercase;
  font-weight: 900;
}

.meals .meal_card_container .meal_card .prod_des button:hover {
  cursor: pointer;
}
/*# sourceMappingURL=style.css.map */