/********** Base Styles **********/
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f2f2f2;
}

h1 {
  text-align: center;
  font-size: 175%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.menu-item {
  border: 1px solid black;
  background-color: #999999; /* Light grey background for the section */
  color: white;
  position: relative;
  padding: 15px;
  padding-top: 45px; /* Pushes content down to avoid title overlap */
  margin: 15px;
}

.item-title {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid black;
  padding: 6px 40px;
  font-size: 125%;
  font-weight: bold;
}

/* Specific Title Colors */
.title-chicken {
  background-color: #D59898; /* Pinkish */
  color: black;
}

.title-beef {
  background-color: #C14543; /* Red */
  color: white;
}

.title-sushi {
  background-color: #E5D198; /* Yellowish */
  color: black;
}

.menu-item p {
  line-height: 1.4;
}

/********** Simple Responsive Framework **********/
.row {
  width: 100%;
}


/********** Desktop View **********/
@media (min-width: 992px) {
  .col-lg-4 {
    float: left;
    width: 33.33%;
  }
}

/********** Tablet View **********/
@media (min-width: 768px) and (max-width: 991px) {
  .col-md-6 {
    float: left;
    width: 50%;
  }
  .col-md-12 {
    float: left;
    width: 100%;
  }
}

/********** Mobile View **********/
/* No media query needed for mobile view as it's the default.
  The divs will stack vertically by default (display: block).
  We can be explicit if we want, but it's not necessary.
  
  @media (max-width: 767px) {
    // Styles for mobile would go here if they weren't the default.
  }
*/