body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #c1440e; /* header orange for letterbox */
  color: #f6e7c1; /* dark creme for text */
}

.site-container {
  max-width: 1850px; /* adjusted from 1930 to increase letterbox */
  margin: 0 auto;
  background: #2d1a0b; /* dark brown/black for fall */
  min-height: 100vh;
  box-shadow: 0 0 0 100vmax #c1440e; /* maintains orange letterbox */
}

header {
  background: #c1440e; /* burnt orange/red */
  color: #f6e7c1; /* dark creme */
  text-align: left;
  padding: 1.5rem 2rem 1rem 2rem;
  border-bottom: 4px solid #f6ae2d; /* fall yellow accent */
}

header > div {
  max-width: 1800px;
  margin: 0 auto;
}

.tagline {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

nav {
  background: #111;
  border-bottom: 2px solid #c1440e;
}

nav a {
  display: inline-block;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  margin: 0 0.35rem;
  text-decoration: none;
  background: #f6e7c1; /* creme base */
  color: #2d1a0b; /* dark text */
  border-radius: 6px;
  line-height: 1.1;
  box-shadow: 0 0 0 2px #c1440e inset, 0 0 8px rgba(193,68,14,0.55);
  transition: background .18s ease, color .18s ease, transform .12s ease, box-shadow .25s ease;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1800px;
  width: 100%;
}

nav a:hover,
nav a:focus-visible {
  background: #c1440e; /* orange on hover */
  color: #fff;
  box-shadow: 0 0 0 2px #f6e7c1 inset, 0 0 10px rgba(246,174,45,0.7);
  outline: none;
}

nav a:active {
  background: #3d2b1f; /* brown when clicking */
  color: #f6e7c1;
  transform: scale(.96);
  box-shadow: 0 0 0 2px #c1440e inset, 0 0 4px rgba(0,0,0,0.6);
}

#menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

.menu-item {
  border: 1px solid #c1440e;
  padding: 1rem;
  border-radius: 8px;
  background: #3d2b1f;
  color: #f6e7c1;
}

.menu-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}

.price {
  font-weight: normal;
  font-size: 0.9rem;
  color: #555;
}

.order-btn {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f6ae2d;
  color: #222;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.order-btn:disabled {
  background: #555;
  color: #aaa;
  cursor: not-allowed;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #f6ae2d;
  border-top: 2px solid #c1440e;
}

.content-section {
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section h2 {
  margin-top: 0;
  font-size: 2rem;
  border-left: 6px solid #f6ae2d;
  padding-left: 0.75rem;
}

.content-section article + article {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 174, 45, 0.3);
}

.content-section h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
  color: #f6ae2d;
}

.content-section p {
  margin: 0 0 0.75rem;
  line-height: 1.55;
}

@media (min-width: 600px) {
  #menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
