<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title><%= tour.name %> - Tour Details</title>
  <link rel="stylesheet" href="/css/styles.css">
</head>
<body>
  <header>
    <h1>Tour Details: <%= tour.name %></h1>
  </header>
  
  <section>
    <h2>รายละเอียดทัวร์</h2>
    <p><strong>ชื่อทัวร์:</strong> <%= tour.name %></p>
    <p><strong>คำอธิบาย:</strong> <%= tour.description %></p>
    <p><strong>ราคา:</strong> <%= tour.price %></p>
    <p><strong>ระยะเวลา:</strong> <%= tour.duration %></p>
    <p><strong>บริษัท:</strong> <%= tour.cname %></p>
    <a href="/" class="btn-edit">ย้อนกลับ</a>   
  </section>

  <footer>
    <p>&copy; 2025 Tour Website</p>
  </footer>
</body>
</html>