Thực đơn

Khách Đoàn (Tour)

Thực đơn đa dạng, thiết kế tối ưu cho các đoàn khách du lịch lớn với hương vị đặc trưng Đồng Nội.

Danh Mục Món Ăn

Khách đoàn 1
Khách đoàn 2
Khách đoàn 3
Khách đoàn 4
Khách đoàn 5
observer.observe(s)); // Smooth reveal on scroll const cards = document.querySelectorAll('.highlight-card, .cat-card, .dish-card, .exp-card, .why-item'); const revealObserver = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.style.opacity = '1'; entry.target.style.transform = entry.target.style.transform.replace('translateY(20px)', 'translateY(0)'); revealObserver.unobserve(entry.target); } }); }, { threshold: 0.1 }); cards.forEach(card => { card.style.opacity = '0'; card.style.transform = 'translateY(20px)'; card.style.transition = 'opacity 0.5s ease, transform 0.5s ease'; revealObserver.observe(card); });