/* style.css */

/* General Styles */
.shisha-button-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  width: 100%;
  margin-top: 20px; /* Space between the food menu buttons and shisha button */
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #eedec5;
  display: flex; 
  flex-direction: column; /* Stack items vertically */
  align-items: center; 
  min-height: 100vh; /* Ensure body takes at least full viewport height */
}

/* Feedback Button Container  */
.feedback-button-container {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* keep vertical centering consistent */
  width: 100%;
  gap: 1em;                  /* matches .button-container spacing */
  margin: 20px 0 40px;       /* 20 px above, 40 px below for a bit more breathing room */
}

/* Stack the button on very small screens */
@media (max-width: 480px) {
  .feedback-button-container {
    flex-direction: column;
    margin: 16px 0 32px;     /* slightly tighter spacing on mobile */
  }
}



/* New CSS for Calories */
.calories {
  font-size: 0.9em;
  color: #555;
  margin-left: 10px; /* Add space between price and calories */
  font-style: italic;
  display: inline; /* Display inline to be beside the price */
}

.logo-container {
  margin-bottom: 1rem; /* Space between logo and buttons */
  margin-top: 1rem; /* Space above the logo */
  text-align: center;
}

.logo {
  max-width: 150px; /* Adjust as needed */
  height: auto;
  display: block;
  margin: 0 auto; /* Center logo horizontally */
}

/* Style for the button container */
.button-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically  */
  gap: 1em;
  width: 100%;
}

.cta-button {
  background-color: #204230;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  width: auto;
  max-width: 300px;
}

.cta-button:hover {
  background-color: #36614a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* menu.html Styles */

/* Horizontal Navigation */
.menu-nav {
  overflow-x: auto;
  white-space: nowrap;
  background-color: #f9f8f1;
  border-bottom: 1px solid #d8d6c1;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%; /*navigation full width*/
  padding-left: 20px; /* Add padding to the left */
}

.menu-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start; /* Align to the left */
}

.menu-nav-list a {
  display: inline-block;
  padding: 15px 20px;
  text-decoration: none;
  color: #204230;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px 4px 0 0;
}

.menu-nav-list a.active,
.menu-nav-list a:hover {
  background-color: #204230;
  color: white;
}

/* Menu Categories */
.menu-category {
  padding: 20px;
  border-bottom: 1px solid #d8d6c1;
}


.menu-category h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #204230;
  font-size: 1.8em;
  border-bottom: 2px solid #204230;
  padding-bottom: 5px;
  display: inline-block;
}

/* ----- Menu Items ----- */
.menu-item {
  display: flex;
  flex-direction: row-reverse; /* Image on right, text on left */
  justify-content: flex-start; /* Align items to the start (left in LTR) */
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid #d8d6c1;
  padding: 16px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vegetarian-button-container {
  display: flex;
  justify-content: center;
  gap: 1em;
  width: 100%;
  margin-top: 16px;
}


.menu-item:hover {
  transform: translateY(-3px); /*  Move up on hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
  width: 120px; /* Fixed width */
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-inline-start: 25px; /* Logical property for spacing */
  flex-shrink: 0;
}

.menu-item-text {
  flex: 1; /* Take up available space */
  text-align: left; /* Left-align text (LTR) */
  /* padding-right: 15px; */
}

.menu-item-text h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #204230;
  font-size: 1.4em;
}

.price {
  font-weight: bold;
  color: #204230;
  display: inline;
  margin-top: 8px;
  font-size: 1.1em;
}

/* Add some general padding to main content */
main {
  padding-top: 20px; /* Reduced padding-top */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the menu sections */
}
