.section {
  height: 25%;
}

.slider {
  background: #c49967;
  color: #ddd;
  padding: 5px;
  border-radius: 5px;
  padding-bottom: 3%;
}
.slider.item.full-width {
  grid-template-columns: 44% 1fr;
}

.section h3 {
  margin-top: 3%;
}

.image {
  justify-self: center;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.item.full-width {
  grid-template-columns: 35% 1fr;
  grid-column-gap: 1em;
  align-items: center;
}

.item {
  display: grid;
  grid-auto-flow: row;
  place-items: center;
}
.item .item.full-width {
  grid-auto-flow: column;
  grid-template-columns: 35% 1fr;
  grid-column-gap: 1em;
  align-items: center;
}

.item .detail {
  padding-right: 0.5em;
}

.item .detail {
  place-self: end;
}

.special .item {
  border: 1px solid #ddd;
  background: #eee;
  padding: 5px;
  border-radius: 3px;
}

.item button {
  width: 100%;
  border-radius: 3px;
  background: #fff;
  border: none;
  padding: 8px 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9em;
  font-family: "Bebas Neue", sans-serif;
}
button.add-to-cart:before {
  content: "🛒";
}

/* Menu Item Sections */
.menu h3 {
  font-size: 1.1em;
}
.items {
  display: flex;
  overflow-x: auto;
}
@media screen and (min-width: 900px) {
  .items {
    overflow-x: visible;
    flex-flow: wrap;
    row-gap: 10px;
  }
  .item.link {
    display: none;
  }
}

.items .item {
  margin-right: 8px;
  background-color: #fff;
  padding: 5px 7px;
  border-radius: 3px;
  min-width: 110px;
}
.items .detail {
  padding-right: 0;
  place-self: center;
  text-align: center;
}
.items button {
  font-size: 0.85em;
}
.items .add-to-cart {
  place-self: end;
  background: #121212;
  color: #c49967;
}
.items .add-to-cart:before {
  content: "";
}
.item.link {
  place-self: center;
}

/* Media Queries */
@media screen and (min-width: 430px) {
  .slider.item.full-width {
    grid-template-columns: 50% 1fr;
  }
}

@media screen and (min-width: 460px) {
  .slider.item.full-width {
    grid-template-columns: 45% 1fr;
  }
  .item .detail {
    place-self: center;
  }
}

@media screen and (min-width: 500px) {
  h3 {
    font-size: 1.5em;
  }
  .ingredients {
    font-size: 1.1em;
  }
  .items .item {
    margin-right: 0.8em;
    min-width: 150px;
  }
}

@media screen and (min-width: 550px) {
  .hero-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "featuredSection specialSection";
    column-gap: 0.5em;
  }
  .featured.section,
  .special.section {
    height: 100%;
  }
  .item.full-width {
    display: flex;
    flex-flow: column;
    height: 100%;
    padding: 0.5em 1em;
  }
  .item.full-width .detail {
    margin-top: auto;
    padding-right: 0;
    width: 100%;
  }
  .featured.section {
    grid-area: featuredSection;
  }
  .special.section {
    grid-area: specialSection;
  }
  .special.section h2 {
    display: none;
  }
}

@media screen and (min-width: 780px) {
  .hero-sections {
    display: grid;
    grid-template-columns: repeat (3, 1fr);
    grid-column-gap: 2%;
    justify-content: space-between;
  }
}

@media screen and (min-width: 900px) {
  main {
    width: 800px;
    margin: 0 auto;
  }

  h2 {
    font-size: 1.8em;
  }

  .menu.section {
    margin-top: 2em;
  }

  .hero-sections .section {
    display: none;
  }
  .hero-sections .desktop-only {
    display: unset;
    height: 500px;
    width: 800px;
    border: 1px solid gray;
  }
}
