Help Centre
Frequently Asked Questions
Everything you need to know about booking Dubai beach clubs — from dress codes and minimum spend to group bookings and cancellation policies.
// Mobile menu toggle
(function(){
var btn = document.getElementById('hamBtn');
var nav = document.getElementById('mobNav');
if (!btn || !nav) return;
function toggle(){
var open = nav.classList.toggle('open');
btn.classList.toggle('open', open);
btn.setAttribute('aria-expanded', open);
document.body.style.overflow = open ? 'hidden' : '';
}
btn.addEventListener('click', toggle);
// Close on link click
nav.querySelectorAll('a').forEach(function(a){
a.addEventListener('click', function(){
nav.classList.remove('open');
btn.classList.remove('open');
btn.setAttribute('aria-expanded', 'false');
document.body.style.overflow = '';
});
});
// Close on Escape
document.addEventListener('keydown', function(e){
if (e.key === 'Escape' && nav.classList.contains('open')) toggle();
});
})();