<%- include('partials/header', { 
    metaTitle: metaTitle, 
    metaDescription: metaDescription, 
    metaKeywords: metaKeywords 
}); -%>

<main class="main">

    <!--Hero 2 Section for 404 page -->
    <%- include('components/hero-2', { 
        heroImage: '/img/hero-bg-2.jpg',
        heroTitle: '404 Error',
        heroSubtitle: 'Page Not Found',
        heroButtonLink: '/',
        heroButtonText: 'Back to Home'
    }); -%>

</main>

<%- include('partials/footer', { 
    homeLink: '/',
    siteName: 'Casa Familia Hotel',
    siteDescription: 'Where comfort meets luxury, a true paradise to live, love, and have fun together.',
    socialLinks: [
        { url: 'https://twitter.com', icon: 'bi bi-twitter' },
        { url: 'https://facebook.com', icon: 'bi bi-facebook' },
        { url: 'https://instagram.com', icon: 'bi bi-instagram' },
        { url: 'https://linkedin.com', icon: 'bi bi-linkedin' }
    ],
    usefulLinks: [
        { url: '/', text: 'Home' },
        { url: '/about', text: 'About us' },
        { url: '/services', text: 'Services' },
        { url: '/terms', text: 'Terms of service' },
        { url: '/privacy', text: 'Privacy policy' }
    ],
    servicesLinks: [
        { url: '/rooms', text: 'Rooms & Suites' },
        { url: '/dining', text: 'Dining' },
        { url: '/amenities', text: 'Amenities' },
        { url: '/offers', text: 'Special Offers' },
        { url: '/events', text: 'Events & Meeting' }
    ],
    contact: {
        addressLine1: 'National Highway',
        addressLine2: 'San Pedro-San Pablo',
        city: 'Aurora, Isabela',
        country: 'Philippines 3316',
        phone: '+63 956 388 4934',
        email: 'casafamiliahotel@gmail.com'
    },
    paymentMethods: [
        { imgSrc: '/img/we-accept/american-express.png', alt: 'American Express' },
        { imgSrc: '/img/we-accept/master-card.png', alt: 'MasterCard' },
        { imgSrc: '/img/we-accept/jcb.png', alt: 'JCB' },
        { imgSrc: '/img/we-accept/visa-electron.png', alt: 'Visa Electron' }
    ],
    currentYear: new Date().getFullYear()
}); -%>