@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../images/menu/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
  font-family: 'Montserrat',sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
}

.item-list {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 95px;
  justify-content: center;
}

.item-list dl {
  margin-top: 20px;
}

.item-list dt {
  font-weight: bold;
}

.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.item-list .price {
  font-weight: bold;
  margin-top: 15px;
}

.item-list li {
    position: relative;
}

.item-list .item-label {
    position: absolute;
    top: 0;
    left: calc(100% + 18px);
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
    transform-origin: top left;
    transform: rotate(90deg);
}

.item-list img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.item-list li:nth-child(5) img {
  object-position: center 80%;
}

.footer {
    margin-top: 100px;
}



@media (max-width: 800px){
   .item-list {
    margin-top: 45px;
    grid-template-columns: auto;
   } 

.item-list {
  padding-left: 20px;
  padding-right: 20px;
}

.item-list li {
  width: 220px;
  margin-left: 30px;
}

}