
.menu {
    font-family: sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
  }


  
  .menu-group-heading {
    padding-bottom: 0;
    border-bottom: 2px solid #4b4b4b;
    font-family: 'Grand Hotel', cursive;
    font-size: 30px;
    margin: 0;
    color: #cbb27c !important;
  }
  
  .menu-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em 5em;
    padding: 2em 0;
  }
  
  .menu-item {
    display: flex;
  }
  
  .menu-item-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: cover;
    margin-right: 1.5em;
  }
  
  .menu-item-text {
    flex-grow: 1;
  }
  
  .menu-item-heading {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  
  .menu-item-name {
    margin-right: 1.5em;
    font-family: 'Stratos', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 0;
  }
  


  .menu-item-price {
    font-size:15px;
    letter-spacing: 2px;
    line-height: 17px;
    color: #bbbbbb;
  }
  
  @media screen and (min-width: 992px) {
    .menu {
      font-size: 14px;
    }
  
    .menu-group {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .menu-item-img {
      width: 125px;
      height: 125px;
    }
  }
  
@media screen and (max-width: 992px) {
    .menu {
    padding: 0 20px;
  }
  .menu-item-name {
    font-size: 15px;
  }
  .menu-item-price {
    font-size: 12px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 400px) {

  .menu-item-name {
    font-size: 12px;
  }
  .menu-item-price {
    font-size: 10px;
    letter-spacing: 0;
  }
}