body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fdfbf7;
  color: #222;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.menu-container {
  background-color: rgb(216, 170, 132);
  border: 1px solid #ccc;
  padding: 40px;
  max-width: 800px;
  width: 90%;
  box-sizing: border-box;
}

h1 {
  text-align: center;
  text-transform: lowercase;
  font-size: 2.2rem;
  margin-bottom: 30px;
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.menu-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.column {
  flex: 1;
}

h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  border-top: 1px solid #000000;
  padding-top: 10px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 8px;
}

.item span {
  white-space: nowrap;
}

/* dotted line between text and price */
.item .dots {
  flex-grow: 1;
  border-bottom: 1px dotted #0f0e0e;
  margin: 0 8px;
  height: 0;
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 30px;
  border-top: 1px solid #000000;
  padding-top: 15px;
  color: #444;
}

/* Responsive layout */
@media (max-width: 768px) {
  .menu-columns {
    flex-direction: column;
    gap: 30px;
  }

  .column {
    width: 100%;
  }
}

/* Prevent layout from changing on smaller screens */
html, body {
    min-width: 720px; /* your fixed container width */
    overflow-x: auto;  /* allow horizontal scroll instead of shrinking */
}

* {
    box-sizing: border-box; /* ensures widths stay fixed */
}

/* Optional: disable media query overrides */
@media only screen and (max-width: 9999px) {
    /* This empty rule block prevents accidental responsiveness */
}

.menu-container {
    width: 800px !important;
    max-width: 800px !important;
}

.menu-columns {
    flex-direction: row !important; /* keep columns side by side */
    gap: 40px !important;
}

.column {
    width: auto !important; /* let flex handle equal widths */
}

@media (max-width: 768px) {
    .menu-columns {
        flex-direction: row !important; /* override responsive stacking */
    }

    .column {
        width: auto !important; /* ignore 100% width on small screens */
    }
}

/* Ensure page doesn't shrink below fixed width */
html, body {
    min-width: 800px !important;
    overflow-x: auto !important; /* allow horizontal scroll if screen is smaller */
}