.background-image {
  position: fixed; /* Fixed position to keep it in the background */
  top: 0;
  left: 0;
  height: 100vh; /* Full height */
  width: 100vw; /* Full width */
  z-index: -1; /* Keep it behind other content */

  background-image: url("background.jpg");
  background-size: cover; /* Cover the entire viewport */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
}

.menu-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 15px;
  cursor: pointer;
  transition: transform 0.3s;
}

.menu-icon:hover {
  transform: scale(1.1); /* Slightly enlarge the icon when hovered */
}

.menu-icon img {
  width: 150px; /* Adjust this based on your preference */
  height: 150px; /* Adjust this based on your preference */
  filter: invert(1);
}

.menu-icon p {
  margin-top: 10px;
  font-size: 20px; /* Adjust this based on your preference */
  text-align: center;
  color: white;
}

.menu-selection {
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: rgba(255, 255, 255, 0.4); */
  backdrop-filter: saturate(180%) blur(1.5px);
  display: flex;
  justify-content: space-between;
  align-items: center; /* Center items vertically */
  position: fixed; /* Fixed positioning */
  top: 0;
  left: 0;
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full viewport height */
  z-index: 1; /* Above the background image */
  transition: opacity 0.4s;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* .menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}



.menu-image {
  width: auto;
  height: 100vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
  scroll-snap-align: center;
} */

html {
  scroll-behavior: smooth;
}

.menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  opacity: 0;
  transition: opacity 0.4s;
}

.menu-image {
  width: auto;
  height: 100vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
  scroll-snap-align: center;
}
