/******************/
/* Main Food Menu */
/******************/

/* Header */

#menu-header {
  margin: 1em 1em 2em 1em;
  color: #5e1211;
  color: var(--wine);

  font-family: "Cardo Bold";
  text-align: center;

  border-bottom: 2px solid #5e1211;
  border-bottom: 2px solid var(--wine);
}

#menu-header img {
  width: 100%;
}

#menu-header > h2 {
  font-size: 3rem;
}

/* Menu body */

#menu {
  margin: 4em auto;
  border: 2em solid #cf1c44;
  border: 2em solid var(--marinara-red);
}

/* Override body section margin */
#menu section {
  margin: 0;
}

#menu .food-menu-item {
  margin-bottom: 4em;
}

#menu .food-desc {
  text-align: center;
  word-wrap: break-word;
  color: #7b573e;
  color: var(--cafe);
  margin-left: 0.5em;
  margin-right: 0.5em;
}

#menu .food-detail {
  font-family: "Cardo";
}

#menu .food-title {
  font-family: "Roboto Slab Bold";
  font-size: 2rem;
}

/* Food images */

#menu .food-img {
  width: 85%;
  display: block;
  margin: 0em auto;
}

#menu .food-img > img {
  width: inherit;
}

/* Big screen overrides */

@media screen and (min-width: 56em) {
  #menu {
    width: 50em;
    border: 3em solid #cf1c44;
    border: 3em solid var(--marinara-red);
  }
  
  #menu-header {
    margin: 1em 2em 2em 2em;
  }
  
  #menu .food-desc {
    width: 25em;
    margin-left: 2em;
    text-align: left;
    display: inline-block;
  }
  
  #menu .food-img {
    display: inline-block;
    width: 20em;
    margin-left: 1em;
  }
}