* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, #e1391e 0%, #e1391e 100%);
  color: #2a1a0d;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.section-one {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e6d3b7;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.section-one p {
  margin: 0 0 1rem;
  line-height: 1.6;
  font-size: 1.15rem;
}

.menu,
.location,
.about,
.contact {
  margin-top: 1.75rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e6d3b7;
  min-height: 7rem;
}

.menu::before,
.location::before,
.about::before,
.contact::before {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d9672c;
}

.menu::before {
  content: "Menu";
}

.location::before {
  content: "Location";
}

.about::before {
  content: "About";
}

.contact::before {
  content: "Contact";
}

@media (min-width: 720px) {
  .section-one {
    padding: 3rem;
  }
}
