body {
  margin: 0;
  padding: 0;
  background: url('background.png'), #282828;
  background-size: cover;
  font-family: 'Roboto Mono', Consolas, monospace;
  color: white;
}

/* Container */
.menu-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 0 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}

.back-arrow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: #2457db;
  cursor: pointer;
  transition: color 0.2s;
}
.back-arrow:hover {
  color: #183d99;
}

/* Title */
header h1 {
  width: 100%;
  text-align: center;
  color: #2457db;
  font-size: 2.2em;
  letter-spacing: 2px;
}

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 135px);
  gap: 30px 20px;
  justify-items: center;
  margin-bottom: 50px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.square-img {
  width: 160px;
  height: 90px;
  border-radius: 12px;
  background: #fff;
  border: 3px solid #fff;
  box-sizing: border-box;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.square-img img.img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.item-label {
  color: #cc2323;
  font-size: 1em;
  letter-spacing: 1px;
  text-align: center;
}

/* Locations */
.locations {
  margin-top: 40px;
}

.locations h2 {
  text-align: center;
  color: #2457db;
  font-size: 1.5em;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

/* Circle images for locations */
.location-list {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
}

.circle-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #d8d8d8;
  border: 3px solid #cc2323;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.circle-img img.img-circle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.location-label {
  color: #fff;
  text-align: center;
  font-size: 1em;
  margin-top: 2px;
}

.location-label strong {
  font-size: 1.06em;
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .menu-container {
    max-width: 98vw;
  }
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 10px;
  }
}

@media (max-width: 800px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 6px;
  }
  .square-img {
    width: 130px;
    height: 75px;
  }
  .location-list {
    flex-direction: column;
    align-items: center;
  }
  .location-item {
    margin-bottom: 20px;
    width: 85vw;
    max-width: 250px;
  }
}

@media (max-width: 500px) {
  header h1 {
    font-size: 1.3em;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
  .square-img {
    width: 95vw;
    max-width: 340px;
    height: 55vw;
    min-height: 65px;
    border-radius: 8px;
  }
  .locations h2 {
    font-size: 1em;
  }
  .circle-img {
    width: 65vw;
    height: 65vw;
    max-width: 130px;
    max-height: 130px;
    min-width: 70px;
    min-height: 70px;
  }
  .location-item {
    width: 100%;
    margin-bottom: 12px;
  }
}