/* Resetting margins and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #fff;
}

/* Navigation Bar */
header {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

header:hover{
	background: rgba(0, 0, 0, 1);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center; /* Center the menu items horizontally */
  align-items: center; /* Center the items vertically */
  padding: 10px 0;
  margin: 0;
  flex-wrap: wrap; /* Ensure items don't overflow the screen */
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff; /* Default text color */
  text-decoration: none;
  font-size: 18px;
  padding: 10px 15px;
  display: inline-block; /* Ensures the padding is clickable */
  transition: background 0.3s ease, color 0.3s ease; /* Smooth transition */
}

nav ul li a:hover {
  background: #ccc; /* Background color on hover */
  color: #000; /* Text color on hover */
  border-radius: 5px; /* Optional: Rounded corners for the highlight */
}

/* Responsive Styling for Mobile Screens */
@media (max-width: 600px) {
  nav ul {
    justify-content: center; /* Center items on smaller screens */
    flex-direction: row; /* Keep the layout horizontal */
    flex-wrap: wrap; /* Allow wrapping if needed */
  }

  nav ul li {
   margin: 0 8px;
  }

  nav ul li a {
    font-size: 16px; /* Slightly smaller font for smaller screens */
    padding: 8px 12px; /* Adjust padding for smaller screens */
  }
}
/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('images/logo2.png'); /* Replace with your image */
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff5f4;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-text .btn {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-text .btn:hover {
  background: #ff9800;
}

/* Section Content Styling */
.section-content {
  text-align: center;
  padding: 80px 20px;
  color: #000;
  background-image: url('images/logo2.png'); /* Replace with your image */
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff5f4;
  background-position: center;
  
}

/* General Reset */
body {
	/*height: 100vh;*/
  background-image: url('images/logo2.png'); /* Replace with your image */
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff5f4;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
	
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Menu Section */
.menu-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 20%;
  text-align: center;
}

/* Menu Items */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  
}

.menu-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.menu-item h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
}

.menu-item p {
  margin: 5px 0;
  font-size: 1rem;
  color: #666;
}

.price {
  background-color: #e74c3c;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
}

/* Tabs */
.menu-tabs {
  display: flex;
  justify-content: center	;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 10px; /* Space between buttons */
}

.tab {
  background: rgba(0, 0, 0, 0.1);
  color: #555;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.tab.active {
  background-color: #e74c3c;
  color: #fff;
}

.tab:hover {
  background-color: #c0392b;
  color: #fff;
}

/* Tab Content */
.tab-content {
   display: none;
  margin-top: 20px;
  /*background: rgba(255, 255, 255, 0.9);*/
  border-radius: 8px;
  /*padding: 20px;*/	
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

/* Accessibility Enhancements */
.tab:focus {
  outline: 2px solid #e74c3c;
  outline-offset: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .menu-item {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start;
  }

  .price {
    margin-top: 10px;
    align-self: flex-start; /* Align price to the top-left */
  }

  .menu-section {
    padding: 15%;
  }

  .tab {
    padding: 10px 15px; /* Reduce button size */
    font-size: 0.9rem; /* Smaller font size for tabs */
  }

  .menu-tabs {
    gap: 5px; /* Adjust spacing between buttons */
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1rem; /* Adjust heading size for very small screens */
  }

  .price {
    font-size: 0.9rem; /* Adjust price font size */
    padding: 5px 10px; /* Smaller padding */
  }

  .tab {
    font-size: 0.8rem; /* Smaller font for tab buttons */
    padding: 8px 12px; /* Smaller padding for tabs */
  }
}



/* Menu Items 
.menu-item {
  /*display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.menu-item h2 {
  margin: 0;
  font-size: 1.5rem;
}

.menu-item p {
  margin: 5px 0;
  font-size: 1.5rem;
}

.price {
  background-color: #ccc;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
}

.tab {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 10px 50px;
  border: none;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab.active {
  background-color: #e74c3c; /* Red for active tab */
}

/*.tab:hover {
  background-color: #555;} /* Gray on hover */ 

/* Tab Content 
.tab-content {
  display: none;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.3);
}

.tab-content.active {
  display: block;
}*/


/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
}
