@import url("https://fonts.googleapis.com/css?family=Bree+Serif|Poppins|Source+Sans+Pro|Montserrat:400,900&display=swap");

* {
  box-sizing: border-box;
  font-family: "Source Sans Pro", "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 1em;
  padding: 1.5em;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

@media screen and (min-width: 768px) {
  .container {
    margin: 2em auto;
    padding: 2em;
  }
}

.menu {
  font-family: sans-serif;
  font-size: 14px;
}

.menu-group-heading {
  margin: 0;
  padding-bottom: 1em;
  border-bottom: 2px solid #ccc;
}

.menu-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  padding: 1.5em 0;
}

.menu-item {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 480px) {
  .menu-item {
    flex-direction: row;
  }
}

.menu-item-img {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 0;
  margin-bottom: 1em;
  border-radius: 8px;
}

@media screen and (min-width: 480px) {
  .menu-item-img {
    width: 80px;
    height: 80px;
    margin-right: 1.5em;
    margin-bottom: 0;
  }
}

.menu-item-text {
  flex-grow: 1;
}

.menu-item-heading {
  display: flex;
  flex-direction: column;
  margin: 0;
}

@media screen and (min-width: 480px) {
  .menu-item-heading {
    flex-direction: row;
    justify-content: space-between;
  }
}

.menu-item-name {
  margin-right: 0;
  margin-bottom: 0.5em;
  font-weight: 600;
}

@media screen and (min-width: 480px) {
  .menu-item-name {
    margin-right: 1.5em;
    margin-bottom: 0;
  }
}

.menu-item-price {
  font-weight: bold;
  color: #2c5f2d;
  font-size: 1.1em;
}

.menu-item-desc {
  line-height: 1.6;
  margin-top: 0.5em;
}

@media screen and (min-width: 992px) {
  .menu {
    font-size: 16px;
  }

  .menu-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-item-img {
    width: 125px;
    height: 125px;
  }
}
