/* Content Sections */
.content {
  background: #f4f4f4;
  height: fit-content;
}

.menu {
  margin: 0 7% 0 13%;
  padding-top: 5%;
  max-width: 100%;
  display: flex;
  flex-direction: row-reverse; /* Stack menu items vertically */
  gap: 20px; /* Add padding between menu items */
}

#menu-head {
  align-self: flex-end;
  height: fit-content !important;
  background-color: transparent;
  width: 100%;
  border-bottom: solid #00bf62 10px;
}

#menu-links {
  height: fit-content;
}

.menavbar {
  margin-left: 11%;
}

#menu-option {
  margin-bottom: 10%;
  width: 100%; /* Ensure full width for each menu item */
  margin-bottom: 40px; /* Add padding below each menu item */
}

#menu-option h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #00743c;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: dotted #00743c;
  width: 80%; /* Adjust the width as needed */
}

.price {
  margin-right: 10px; /* Adjust spacing as needed */
  font-size: 1.5rem; /* Adjust font size as needed */
  color: #00743c; /* Match the color of the heading */
  font-family: 'Sacco', sans-serif; /* Use Sacco font, fallback to sans-serif if unavailable */
  font-weight: normal; /* Adjust to match the font definition */
  font-style: normal; /* Adjust to match the font definition */
}

#menu-option p {
  font: 1.125rem / 1.5rem sofia-pro, sans-serif;
  font-weight: 400;
  max-width: 85%;
}

@media (orientation: portrait) {
  .menavbar {
    margin: 0;
    background-color: #00bf62;
    padding: 4px;
    height: inherit;
  }

  #mobile2-menu {
    background-color: #00bf62;
  }

  .tab-link {
    display: block;
    background-color: #00bf62 !important;
    margin-left: 1% !important;
    border-radius: 0 0 0 0 !important;
  }

  .menu {
    margin: auto;
  }

  #menu-option {
    min-width: 100%;
  }

  .menu-item-content {
    min-width: 100%;
  }
}

@media (orientation: landscape) {
  #menu-option {
    flex-basis: 80%;
    box-sizing: border-box;
    padding: 10px;
  }
}

.tab-link {
  height: 50px;
  background-color: #00743c;
  border-radius: 5px 5px 0 0;
  margin-left: 3px;
}

.tab-link.active {
  background-color: #00bf62;
  color: #f4f4f4;
  border-radius: 5px 5px 0 0;
  height: 56px;
}

.tab-link:hover {
  background-color: #00bf62;
  color: #f4f4f4;
  border-radius: 5px 5px 0 0;
  height: 56px;
}

/* Tab Content */
.tab-content.active {
  display: flex !important;
}

.tab-content {
  display: none;
}


.parallax {
  flex-direction: column-reverse;
}

.title {
  align-self: start;
  flex-basis: 100%;
}
/* Hover Image Container */
#hover-image-container {
  position: fixed;
  z-index: 1000;
  opacity: 0; 
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; 
  transform: scale(0.9); 
  pointer-events: none; 
  width: 200px; 
  height: 200px; 
}

#hover-image-container.visible {
  opacity: 1; /* Fully visible */
  transform: scale(1); /* Normal size */
}

#hover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}