body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: none;
  background-color: #f3d6a2;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 90vh;
  background: url("../assets/cafe-mobile-1.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
}

#page1 {
  min-height: 90vh;
  width: 100vw;
}

.logo {
  left: 0.5rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.site-title-name {
  text-align: center;
  margin: 0 auto;
  font-size: 2rem;
  /* color: #222; */
}

header p {
  /* color: #2e1b07; */
  margin: 0;
}

.welcome-message {
  padding: 0.7rem 0.2rem;
  font-size: 0.95rem;
}
.menu-title {
  font-size: 1rem;
  padding: 0.2rem 0.2rem;
  margin-top: 2rem;
}
.menu-container {
  gap: 0.5rem;
  /* flex-direction: column; */
  align-items: center;
  margin-top: 0.5rem;
}
.menu-item {
  width: 3rem;
  padding: 0.5rem 0.2rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.social-link {
  top: 1rem;
  right: -2.7rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.welcome-message {
  border-radius: 9px;
  padding: 0.5rem 0.5rem;
  margin: 1 auto;
  max-width: 90vw;
  letter-spacing: 0.5px;
  background: rgba(245, 226, 184, 0.8);
}

.welcome-message h2 {
  font-size: 2rem;
  color: #b8860b;
}

.page-wrapper {
  flex-direction: column;
}

.menu-item-category {
  width: 100vw;
  height: 35vh;
}

.odd-pallet {
  background: rgba(203, 165, 82, 0.5); /* slightly transparent */
}

.odd-pallet .menu-item {
  background: #f3d6a2;
}

.even-pallet {
  background: rgba(243, 214, 162, 0.5); /* slightly transparent */
}

.even-pallet .menu-item {
  background: #cba552;
}

.menu-items-description {
  display: flex;
  flex-direction: left;
  justify-content: center;
  gap: 1rem;
}

.menu-items-description .menu-item {
  width: auto;
  padding: 1rem 0.2rem;
  font-size: 0.9rem;
}

#page2 .dish-img {
  height: 50%;
  max-width: 50%;
  object-fit: contain;
  padding-left: 2.5rem;
}

#page5 .dish-img {
  height: 50%;
  max-width: 50%;
  object-fit: contain;
  padding-left: 2.5rem;
}

footer {
  position: fixed;
  left: 75vw;
  bottom: 4vw;
  width: 25vw;
  background: rgba(75, 46, 14, 0.08);
  color: #4b2e0e;
  padding: 0;
  text-align: center;
  font-size: 0.5rem;
  border-radius: 0;
  box-shadow: 0 -2px 2px rgba(75, 46, 14, 0.08);
  z-index: 10;
}
