<?php
header('Content-Type: application/xml; charset=UTF-8');
require_once 'includes/config.php';

echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc><?= SITE_URL ?>/</loc>
        <changefreq>weekly</changefreq>
        <priority>1.0</priority>
    </url>
    <url>
        <loc><?= SITE_URL ?>/tours/</loc>
        <changefreq>weekly</changefreq>
        <priority>0.9</priority>
    </url>
    <url>
        <loc><?= SITE_URL ?>/about/</loc>
        <changefreq>monthly</changefreq>
        <priority>0.7</priority>
    </url>
    <url>
        <loc><?= SITE_URL ?>/contact/</loc>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
<?php
$stmt = $pdo->query('SELECT slug, updated_at FROM tours WHERE is_active = 1 ORDER BY sort_order ASC');
while ($tour = $stmt->fetch()):
?>
    <url>
        <loc><?= SITE_URL ?>/tours/<?= htmlspecialchars($tour['slug']) ?>/</loc>
        <lastmod><?= date('Y-m-d', strtotime($tour['updated_at'])) ?></lastmod>
        <changefreq>weekly</changefreq>
        <priority>0.8</priority>
    </url>
<?php endwhile; ?>
</urlset>
