/* Menu Hero/Banner Section - Main background image section */
.menu-hero {
  background-image: url('../images/menu-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 200px; /* Increased top padding to push content below header */
  padding-bottom: 100px;
  margin-top: 0; /* No gap between header and hero */
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Light overlay for text readability */
.menu-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.menu-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--fontFamily-forum);
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 15px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--gold-crayola);
}

.breadcrumb span:last-child {
  color: var(--gold-crayola);
  font-weight: 600;
}

.breadcrumb span:not(:last-child) {
  color: rgba(255, 255, 255, 0.5);
}

/* Menu Page Specific Styles */
.menu {
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: #f5f0e8;
  min-height: 100vh;
}

.veg-toggle {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 15px;
}

.veg-toggle label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  user-select: none;
}

.veg-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4CAF50;
}

.filter-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.filter-wrap li {
  padding: 20px 40px;
  background-color: #b59b7a;
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  margin: 0;
  text-align: center;
  min-width: 200px;
}

.filter-wrap li:first-child {
  border-radius: 8px 0 0 8px;
}

.filter-wrap li:last-child {
  border-radius: 0 8px 8px 0;
}

.filter-wrap li:hover {
  background-color: #f8f8f8;
}

.filter-wrap li.active {
  background-color: #b59b7a;
  color: #fff;
  border-color: #b59b7a;
}

.filters-content {
  margin-bottom: 80px;
}

.menu-filter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 15px;
}

.single-menu {
  background-color: #faf8f5;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-menu:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  padding-bottom: 5px;
}

.title-wrap h4 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.title-wrap .price {
  font-size: 2rem;
  font-weight: 700;
  color: #e74c3c;
  margin: 0;
}

.single-menu p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.order-btn {
  padding: 4px 6px;
  background-color: transparent;
  color: #222;
  border: 1.5px solid #222;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background-color: #b59b7a;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .menu-hero {
    padding-top: 180px;
  }
}

@media (max-width: 992px) {
  .menu {
    padding-top: 60px;
  }

  .menu-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 350px;
  }

  .hero-title {
    font-size: 3rem;
  }
  
  .filter-wrap li {
    padding: 15px 30px;
    font-size: 1rem;
    min-width: 150px;
    border-radius: 6px !important;
    margin: 5px;
  }
}

@media (max-width: 768px) {
  .menu {
    padding-top: 50px;
  }

  .menu-hero {
    padding-top: 140px;
    padding-bottom: 70px;
    min-height: 300px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }
  
  .menu-filter {
    grid-template-columns: 1fr;
  }

  /* Keep filter tabs horizontal on mobile - scrollable */
  .filter-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    padding: 0 15px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .filter-wrap::-webkit-scrollbar {
    display: none;
  }

  .filter-wrap li {
    flex: 0 0 auto;
    width: auto;
    min-width: auto;
    padding: 12px 20px;
    font-size: 1.2rem;
    border-radius: 0 !important;
    margin: 0;
    white-space: nowrap;
  }
  
  .filter-wrap li:first-child {
    border-radius: 6px 0 0 6px !important;
  }
  
  .filter-wrap li:last-child {
    border-radius: 0 6px 6px 0 !important;
  }
}

@media (max-width: 576px) {
  .menu {
    padding-top: 40px;
  }

  .menu-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 250px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
  
  .filter-wrap {
    padding: 0 10px;
  }
  
  .filter-wrap li {
    padding: 10px 15px;
    font-size: 1.1rem;
  }
}