// ====== EDIT THESE DETAILS ======
const PHONE_NUMBER = "+91XXXXXXXXXX";     // Put your real phone number here
const WHATSAPP_NUMBER = "91XXXXXXXXXX";   // country code + number, no +, no spaces

const WHATSAPP_MESSAGE =
  "Hi Elroi Homestay! I want to book a room. Please share availability, price, and check-in details.";

// ================================
const waUrl =
  "https://wa.me/" + WHATSAPP_NUMBER + "?text=" + encodeURIComponent(WHATSAPP_MESSAGE);

document.getElementById("whatsappTop").href = waUrl;
document.getElementById("whatsappBottom").href = waUrl;

document.getElementById("year").textContent = new Date().getFullYear();

// Update call button automatically
const callBtn = document.querySelector('a[href^="tel:"]');
if (callBtn) callBtn.href = "tel:" + PHONE_NUMBER.replace(/\s/g, "");
