@charset "utf-8";

.menu-hero {
  min-height: 380px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  padding: 60px 20px 40px;
}

.menu-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
}

.menu-hero h1 {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.menu-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 35px;
}

/* Hero Search Bar - Prominent */
.hero-search-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.hero-search-box {
  position: relative;
  width: 100%;
}

.hero-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: var(--text-tertiary);
  pointer-events: none;
  z-index: 2;
}

.hero-search-input {
  width: 100%;
  padding: 18px 55px 18px 55px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
  border-radius: 30px;
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px var(--shadow-color);
}

.hero-search-input:focus {
  outline: none;
  border-color: var(--accent-start);
  background: var(--card-bg-hover);
  box-shadow: 0 8px 40px rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
}

.hero-search-input::placeholder {
  color: var(--text-tertiary);
}

.hero-clear-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: var(--card-bg-hover);
  border: none;
  border-radius: 50%;
  color: var(--text-tertiary);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 1;
  z-index: 2;
}

.hero-clear-search.visible {
  display: flex;
}

.hero-clear-search:hover {
  background: var(--accent-start);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.hero-search-results {
  margin-top: 15px;
  font-size: 14px;
  color: var(--text-tertiary);
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-search-results.visible {
  color: var(--accent-start);
  font-weight: 600;
}

.search-result-icon {
  display: none;
}

.hero-search-results.visible .search-result-icon {
  display: inline;
}

.category-filter-wrapper {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px var(--shadow-color);
}

.category-filter {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}

.category-filter::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}


.category-filter::-webkit-scrollbar-track {
  background: transparent;
}

.category-filter::-webkit-scrollbar-thumb {
  background: transparent;
}

.filter-btn {
  padding: 8px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.menu-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.no-results.visible {
  display: block;
}

.no-results-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-results h3 {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.no-results p {
  font-size: 16px;
  color: var(--text-tertiary);
}

/* Menu Section - Compact */
.menu-section {
  margin-bottom: 50px;
  transition: all 0.4s ease;
}

.menu-section.hidden {
  display: none;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.section-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.section-header p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 4px 0 0 0;
}

.extra-note {
  display: block;
  font-size: 11px;
  color: var(--accent-start);
  margin-top: 4px;
  font-weight: 500;
}

/* Menu Grid - Compact 3-Column Layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.drinks-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.menu-item-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.menu-item-card.search-highlight {
  border-color: var(--accent-start);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(153, 27, 27, 0.05) 100%);
}

.menu-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-item-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.menu-item-card:hover::before {
  transform: scaleX(1);
}

.menu-item-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-item-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.item-description {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.4;
  flex-grow: 1;
}

.item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-start);
  margin-top: 4px;
}

.highlight {
  background: rgba(220, 38, 38, 0.2);
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 600;
}

.drink-card {
  padding: 12px;
}

.drink-card .menu-item-content {
  gap: 4px;
}

.drink-card h3 {
  font-size: 14px;
}

.drink-card .item-price {
  font-size: 15px;
  margin-top: 2px;
}

/* Featured Badge - Smaller */
.featured-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.mega-badge {
  background: linear-gradient(135deg, #dc2626 0%, #7c2d12 100%);
}

.featured.mega {
  border: 2px solid var(--accent-start);
}

/* Food Image Section - Reduced Height */
.food-image-section {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.food-image-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.food-image-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 20px;
}

.food-image-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.food-image-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* Delivery Info - Compact */
.delivery-info {
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 20px;
  margin-top: 40px;
}

.delivery-content {
  max-width: 1400px;
  margin: 0 auto;
}

.delivery-content h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.delivery-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.delivery-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-color);
}

.delivery-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.delivery-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.delivery-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 6px 0;
}

.delivery-card strong {
  color: var(--accent-start);
  font-weight: 700;
}

.phone-link {
  display: inline-block;
  color: var(--accent-start);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--accent-end);
  transform: scale(1.05);
}

/* Mobile Responsive - Tablet */
@media (max-width: 1024px) {
  .menu-hero {
    min-height: 340px;
    padding: 50px 20px 35px;
  }

  .menu-hero h1 {
    font-size: 40px;
  }

  .menu-hero p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero-search-input {
    padding: 16px 50px 16px 50px;
    font-size: 15px;
  }

  .category-filter-wrapper {
    top: 70px;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
  }

  .food-image-section {
    height: 220px;
    margin: 30px 0;
  }
}

/* Mobile Responsive - Phone */
@media (max-width: 768px) {
  
  .menu-hero {
    min-height: 320px;
    margin-top: 70px;
    padding: 40px 15px 30px;
  }

  .menu-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .menu-hero p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .hero-search-container {
    max-width: 100%;
  }

  .hero-search-input {
    padding: 14px 45px 14px 45px;
    font-size: 14px;
    border-radius: 25px;
  }

  .hero-search-icon {
    width: 18px;
    height: 18px;
    left: 16px;
  }

  .hero-clear-search {
    width: 24px;
    height: 24px;
    right: 16px;
    font-size: 16px;
  }

  .hero-search-results {
    font-size: 13px;
    margin-top: 12px;
  }

  .category-filter-wrapper {
    top: 60px;
    padding: 12px 0px;
  }

  .category-filter {
    justify-content: flex-start; 
    padding: 0 15px; 
  }

  .menu-container {
    padding: 20px 15px 40px;
  }

  .menu-section {
    margin-bottom: 35px;
  }

  .section-header {
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .section-icon {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .section-header p {
    font-size: 12px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .drinks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .menu-item-card {
    padding: 12px;
  }

  .menu-item-content h3 {
    font-size: 14px;
  }

  .item-description {
    font-size: 11px;
  }

  .item-price {
    font-size: 15px;
  }

  .no-results {
    padding: 40px 20px;
  }

  .no-results-icon {
    font-size: 48px;
  }

  .no-results h3 {
    font-size: 20px;
  }

  .no-results p {
    font-size: 14px;
  }

  .food-image-section {
    height: 180px;
    margin: 25px 0;
    border-radius: 12px;
  }

  .food-image-content h3 {
    font-size: 22px;
  }

  .food-image-content p {
    font-size: 13px;
  }

  .delivery-info {
    padding: 30px 15px;
  }

  .delivery-content h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .delivery-card {
    padding: 20px;
  }

  .delivery-icon {
    font-size: 32px;
  }

  .delivery-card h3 {
    font-size: 16px;
  }

  .delivery-card p {
    font-size: 13px;
  }

  .phone-link {
    font-size: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .menu-hero {
    min-height: 290px;
    margin-top: 60px;
    padding: 35px 15px 25px;
  }

  .menu-hero h1 {
    font-size: 26px;
  }

  .menu-hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-search-input {
    padding: 12px 40px 12px 40px;
    font-size: 13px;
  }

  .hero-search-icon {
    width: 16px;
    height: 16px;
    left: 14px;
  }

  .hero-clear-search {
    width: 22px;
    height: 22px;
    right: 14px;
    font-size: 14px;
  }

  .hero-search-results {
    font-size: 12px;
    margin-top: 10px;
  }

  .category-filter-wrapper {
    top:50px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 12px;
  }

  .section-icon {
    font-size: 22px;
  }

  .section-header h2 {
    font-size: 18px;
  }

  .drinks-grid {
    grid-template-columns: 1fr;
  }

  .food-image-section {
    height: 160px;
  }

  .food-image-content h3 {
    font-size: 20px;
  }

  .delivery-content h2 {
    font-size: 22px;
  }
}