/* MENU PAGE CSS */

/* Custom Menu Hero */
.menu-hero {
  background: radial-gradient(circle at 50% 0%, #fff 0%, #fdfdfa 100%);
  min-height: 40vh;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(230,168,0,0.1);
  text-align: center;
  padding: 140px 24px 60px;
  position: relative; overflow: hidden;
}
.menu-hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(230,168,0,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.menu-hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 8px;
  color: var(--gold); margin-bottom: 16px;
}
.menu-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900; color: var(--green-dark);
  line-height: 1.1; margin-bottom: 0;
  text-shadow: 0 4px 20px rgba(230,168,0,0.15);
}
.menu-hero-title span {
  font-family: 'Dancing Script', cursive;
  color: var(--gold); font-weight: 400;
  display: inline-block;
  transform: rotate(-2deg);
}
.menu-hero-divider {
  width: 2px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 32px auto; opacity: 0.5;
}
.menu-hero-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem; color: var(--text-mid);
  max-width: 500px; margin: 0 auto; line-height: 1.8;
}

.page-hero-inner { position: relative; z-index: 1; }

.menu-filter-bar {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  position: sticky; 
  top: 72px; /* sits right below main navbar */
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding: 0;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  pointer-events: auto;
}
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto; 
  scrollbar-width: none;
  background: transparent;
  border: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  white-space: nowrap;
  padding: 10px 28px;
  border-radius: 40px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--text-mid);
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.filter-tab:hover {
  color: var(--green-dark);
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}
.filter-tab.active {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(26,124,51,0.25);
  transform: translateY(-4px);
}

@keyframes meshGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.menu-section { 
  background: linear-gradient(-45deg, #fdfcf0, #e8f5e9, #fce4ec, #fff3e0);
  background-size: 400% 400%;
  animation: meshGradient 15s ease infinite;
  padding-top: 40px; 
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a7c33' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.menu-category { margin-bottom: 100px; }

.cat-header {
  text-align: center;
  padding: 0;
  margin: 80px auto 48px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cat-icon { 
  font-size: 3rem; 
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
  margin-bottom: 8px;
  animation: float 4s ease-in-out infinite;
}
.cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; 
  font-weight: 900;
  color: var(--green-dark); 
  letter-spacing: 1px;
  margin: 0;
  position: relative;
  display: inline-block;
  text-shadow: 0 4px 12px rgba(255,255,255,0.8);
}
/* Beautiful wavy lines */
.cat-title::before, .cat-title::after {
  content: '〰';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
}
.cat-title::before { right: 100%; margin-right: 24px; }
.cat-title::after { left: 100%; margin-left: 24px; }

.cat-desc { 
  font-size: 1.05rem; 
  color: var(--text-mid); 
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  max-width: 600px;
  margin: 8px auto 0;
}
.cat-header .badge { display: none; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.menu-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,1);
  border-radius: 36px;
  padding: 40px 32px;
  display: flex; 
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03), inset 0 0 0 1px rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 150px;
}
.menu-item::after {
  content: '';
  position: absolute; 
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 10;
  pointer-events: none;
}
.menu-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(26,124,51,0.08), inset 0 0 0 2px rgba(255,255,255,1);
}
.menu-item:hover::after {
  left: 200%;
}

.item-emoji { 
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 5rem; 
  line-height: 1;
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  transform: rotate(-10deg);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
}
.menu-item:hover .item-emoji {
  transform: scale(1.15) rotate(5deg) translateY(-8px);
}

.item-info { flex: none; width: 100%; position: relative; z-index: 2; }
.item-info h4 { 
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; 
  font-weight: 900; 
  color: var(--green-dark); 
  margin-bottom: 0; 
  line-height: 1.2;
  text-shadow: 0 0 16px rgba(255,255,255,1), 0 0 8px rgba(255,255,255,0.8);
}
.item-info p  { font-size: 0.85rem; color: var(--text-soft); line-height: 1.4; margin-top: 8px; }

.item-badge { 
  display: inline-block;
  font-size: 0.65rem; font-weight: 900; padding: 4px 10px; border-radius: 6px; 
  background: rgba(230,168,0,0.1); 
  color: #c99300; border: 1px solid rgba(230,168,0,0.3);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.item-price { 
  display: none; /* Removed as requested */
  font-size: 1.3rem; 
  font-weight: 800; 
  color: var(--text-dark); 
  font-family: 'Nunito', sans-serif;
  margin-top: auto;
  padding-top: 24px;
  background: transparent;
  text-shadow: 0 0 12px rgba(255,255,255,1);
}

.special-item {
  background: linear-gradient(135deg, rgba(255,252,240,0.9) 0%, rgba(255,255,255,0.9) 100%);
  box-shadow: 0 10px 40px rgba(230,168,0,0.08), inset 0 0 0 2px rgba(230,168,0,0.2);
}
.special-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 36px;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold), rgba(255,255,255,0), var(--gold-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}
.special-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(230,168,0,0.15), inset 0 0 0 2px rgba(230,168,0,0.4);
}
.special-item:hover::before { opacity: 1; }
.special-item .item-info h4 {
  color: #a67900;
}
.special-item .item-badge {
  background: linear-gradient(135deg, var(--gold), #ffda47);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(230,168,0,0.4);
  padding: 6px 14px;
}
.special-item .item-price {
  color: #a67900;
  text-shadow: 0 0 12px rgba(255,255,255,1);
}

.allergen-note {
  display: none;
}

@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cat-header { padding: 24px; flex-direction: column; text-align: center; gap: 12px; }
  .cat-header .badge { margin: 0 auto; }
}
@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-filter-bar { top: 72px; padding: 12px 16px; justify-content: flex-start; }
  .filter-tabs { border-radius: 0; box-shadow: none; border: none; background: transparent; padding: 0; }
  .filter-tab { background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
}
