@import url(https://fonts.googleapis.com/css?family=Roboto:500,400italic,700italic,300,700,500italic,300italic,400);

.body {
  display: grid;
  grid-template-rows: 60vh auto auto;
  margin: 0px 0px 0px 0px;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60vh;
  z-index: -1;
  overflow: hidden;
}

.hero__background__image {
  width: 100vw;
  height: 60vh;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.1) scaleX(-1);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem;
  color: #f5f5f5;
  gap: 1rem;
  position: absolute;
  top: 5rem;
  width: 30rem;
  height: 70%;
}

.hero__aside__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
  box-sizing: unset;
  margin: unset;
}

.header {
  display: flex;
  width: 100%;
  max-width: 100vw;
  align-items: flex-start;
  padding: 1rem 0.5rem;
  justify-content: space-between;
  min-height: fit-content;
  background: linear-gradient(#000000d0 0%, #00000000 10%);
}

.header__logo {
  width: 100px;
  object-fit: contain;
}

.header__nav {
  padding: 1rem 2rem;
}

.header__nav__list {
  display: flex;
  gap: 1rem;
  list-style-type: none;
  color: #f5f5f5;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
}

.main__selection {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  color: #f5f5f5;
}

.main__selection--coffee {
  background: url("../../assets/choose/choose_coffee.webp") no-repeat center
    center;
  background-size: cover;
}

.main__selection--tea {
  background: url("../../assets/choose/choose_tea.jpeg") no-repeat center center;
  background-size: cover;
}

.main__selection--smoothies {
  background: url("../../assets/choose/choose_smoothies.jpeg") no-repeat center
    center;
  background-size: cover;
}

.main__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
  color: #6f3d28;
}

.main__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 2rem;
  max-width: 100vw;
}

.main__menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #f5f5f580;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  max-width: 300px;
}

.main__menu__item__image {
  width: 150px;
  min-height: 150px;
  border-radius: 9999px;
  border: 2px solid #f5f5f5;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.main__menu__item__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  text-align: center;
  height: 100%;
}

.main__menu__item__info__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6f3d28;
}

.main__menu__item__info__price {
  font-size: 1rem;
  font-weight: 700;
  color: #03c04a;
}

