tailand / index.html
clarkchan's picture
请将网站内容翻译成中文 - Initial Deployment
8380159 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>泰国亲子游 | 曼谷与芭提雅</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1528181304800-259b08848526?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
background-size: cover;
background-position: center;
}
.safety-banner {
background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.day-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.attraction-card {
transition: all 0.3s ease;
}
.attraction-card:hover {
transform: scale(1.03);
}
.map-container {
height: 400px;
border-radius: 1rem;
overflow: hidden;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-umbrella-beach text-2xl text-blue-500"></i>
<span class="text-xl font-bold text-gray-800">泰国亲子之旅</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#itinerary" class="text-gray-700 hover:text-blue-500 transition">行程安排</a>
<a href="#safety" class="text-gray-700 hover:text-blue-500 transition">安全信息</a>
<a href="#attractions" class="text-gray-700 hover:text-blue-500 transition">景点推荐</a>
<a href="#tips" class="text-gray-700 hover:text-blue-500 transition">旅行贴士</a>
</div>
<button class="md:hidden text-gray-700" id="menu-toggle">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-white w-full px-4 py-2" id="mobile-menu">
<a href="#itinerary" class="block py-2 text-gray-700 hover:text-blue-500">Itinerary</a>
<a href="#safety" class="block py-2 text-gray-700 hover:text-blue-500">Safety</a>
<a href="#attractions" class="block py-2 text-gray-700 hover:text-blue-500">Attractions</a>
<a href="#tips" class="block py-2 text-gray-700 hover:text-blue-500">Travel Tips</a>
</div>
</nav>
<!-- Hero Section -->
<section class="hero text-white py-20 md:py-32">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">泰国亲子探险之旅</h1>
<p class="text-xl md:text-2xl mb-8">为您全家精心设计的5天安全有趣行程,探索曼谷与芭提雅</p>
<div class="flex flex-col md:flex-row justify-center items-center space-y-4 md:space-y-0 md:space-x-6">
<div class="bg-white bg-opacity-20 rounded-lg p-4 backdrop-blur-sm">
<i class="fas fa-users text-2xl mb-2"></i>
<p>2位成人 + 1位儿童</p>
</div>
<div class="bg-white bg-opacity-20 rounded-lg p-4 backdrop-blur-sm">
<i class="fas fa-plane-departure text-2xl mb-2"></i>
<p>广州出发至泰国</p>
</div>
<div class="bg-white bg-opacity-20 rounded-lg p-4 backdrop-blur-sm">
<i class="fas fa-calendar-alt text-2xl mb-2"></i>
<p>4-5天行程</p>
</div>
</div>
</div>
</section>
<!-- Safety Banner -->
<section id="safety" class="safety-banner text-white py-6">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="flex items-center mb-4 md:mb-0">
<i class="fas fa-shield-alt text-3xl mr-4"></i>
<h2 class="text-2xl font-bold">泰国旅行安全更新</h2>
</div>
<p class="text-sm md:text-base text-center md:text-right">
实时监控当前局势。避开抗议区域。亲子友好区域保持安全。
</p>
</div>
</div>
</section>
<!-- Main Content -->
<main class="container mx-auto px-4 py-12">
<!-- Itinerary Section -->
<section id="itinerary" class="mb-20">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">5天亲子行程</h2>
<p class="text-gray-600 max-w-2xl mx-auto">精心规划的活动,平衡文化体验、娱乐性和家庭安全</p>
</div>
<!-- Day Tabs -->
<div class="flex overflow-x-auto pb-2 mb-8 scrollbar-hide">
<button class="day-tab-btn active px-6 py-3 rounded-t-lg font-medium bg-blue-500 text-white" data-day="day1">Day 1</button>
<button class="day-tab-btn px-6 py-3 rounded-t-lg font-medium bg-gray-200 text-gray-700" data-day="day2">Day 2</button>
<button class="day-tab-btn px-6 py-3 rounded-t-lg font-medium bg-gray-200 text-gray-700" data-day="day3">Day 3</button>
<button class="day-tab-btn px-6 py-3 rounded-t-lg font-medium bg-gray-200 text-gray-700" data-day="day4">Day 4</button>
<button class="day-tab-btn px-6 py-3 rounded-t-lg font-medium bg-gray-200 text-gray-700" data-day="day5">Day 5</button>
</div>
<!-- Day Contents -->
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<!-- Day 1 -->
<div id="day1" class="tab-content active p-6 md:p-8">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-6 md:mb-0 md:pr-6">
<h3 class="text-2xl font-bold text-blue-600 mb-4">抵达曼谷及亲子探索</h3>
<ul class="space-y-4">
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">1</span>
<span><strong>上午:</strong> 抵达素万那普机场(BKK),专车接送至素坤逸区酒店(亲子友好社区)</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">2</span>
<span><strong>下午:</strong> The Commons美食广场午餐(儿童友好),随后参观KidZania曼谷体验互动角色扮演乐趣</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">3</span>
<span><strong>晚上:</strong> The Never Ending Summer河畔餐厅晚餐(亲子友好),早休息调整时差</span>
</li>
</ul>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 rounded-lg overflow-hidden h-full">
<img src="https://images.unsplash.com/photo-1527631746610-bca00a040d60?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="KidZania Bangkok" class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
<!-- Day 2 -->
<div id="day2" class="tab-content p-6 md:p-8">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-6 md:mb-0 md:pr-6">
<h3 class="text-2xl font-bold text-blue-600 mb-4">Bangkok Cultural Highlights</h3>
<ul class="space-y-4">
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">1</span>
<span><strong>Morning:</strong> Visit Grand Palace & Wat Pho (early to avoid crowds), focus on child-friendly aspects of Thai culture</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">2</span>
<span><strong>Afternoon:</strong> Lunch at Thipsamai (famous pad thai), then Bangkok Art & Culture Centre with interactive children's area</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">3</span>
<span><strong>Evening:</strong> Asiatique The Riverfront (safe night market) with carousel rides and family shopping</span>
</li>
</ul>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 rounded-lg overflow-hidden h-full">
<img src="https://images.unsplash.com/photo-1589394815804-964ed0be74eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Grand Palace" class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
<!-- Day 3 -->
<div id="day3" class="tab-content p-6 md:p-8">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-6 md:mb-0 md:pr-6">
<h3 class="text-2xl font-bold text-blue-600 mb-4">Transfer to Pattaya & Beach Day</h3>
<ul class="space-y-4">
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">1</span>
<span><strong>Morning:</strong> Private transfer to Pattaya (2 hours), check into Centara Grand Mirage Beach Resort (family-friendly with water park)</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">2</span>
<span><strong>Afternoon:</strong> Relax at resort beach, enjoy water slides and kids club activities</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">3</span>
<span><strong>Evening:</strong> Dinner at Glass House Beachfront Restaurant with sand play area for kids</span>
</li>
</ul>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 rounded-lg overflow-hidden h-full">
<img src="https://images.unsplash.com/photo-1505228395891-9a51e7e86bf6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1473&q=80" alt="Pattaya Beach" class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
<!-- Day 4 -->
<div id="day4" class="tab-content p-6 md:p-8">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-6 md:mb-0 md:pr-6">
<h3 class="text-2xl font-bold text-blue-600 mb-4">Pattaya Adventures</h3>
<ul class="space-y-4">
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">1</span>
<span><strong>Morning:</strong> Visit Cartoon Network Amazone Waterpark (perfect for 8-year-old)</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">2</span>
<span><strong>Afternoon:</strong> Lunch at The Sky Gallery, then visit Sanctuary of Truth (child-friendly cultural experience)</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">3</span>
<span><strong>Evening:</strong> Dinner at Rimpa Lapin with sunset views, early night at resort</span>
</li>
</ul>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 rounded-lg overflow-hidden h-full">
<img src="https://images.unsplash.com/photo-1579033462043-0f11a7862f7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Cartoon Network Waterpark" class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
<!-- Day 5 -->
<div id="day5" class="tab-content p-6 md:p-8">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-6 md:mb-0 md:pr-6">
<h3 class="text-2xl font-bold text-blue-600 mb-4">Return to Bangkok & Departure</h3>
<ul class="space-y-4">
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">1</span>
<span><strong>Morning:</strong> Private transfer back to Bangkok, visit Siam Paragon (kid-friendly mall with aquarium)</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">2</span>
<span><strong>Afternoon:</strong> Lunch at Din Tai Fung (child-friendly dumplings), last-minute shopping</span>
</li>
<li class="flex items-start">
<span class="bg-blue-100 text-blue-600 rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">3</span>
<span><strong>Evening:</strong> Transfer to airport for return flight to Guangzhou</span>
</li>
</ul>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 rounded-lg overflow-hidden h-full">
<img src="https://images.unsplash.com/photo-1527631746610-bca00a040d60?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Siam Paragon" class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Safety Details -->
<section class="mb-20 bg-white rounded-lg shadow-lg overflow-hidden">
<div class="p-8">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Safety Considerations</h2>
<div class="grid md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-semibold text-red-600 mb-4 flex items-center">
<i class="fas fa-exclamation-triangle mr-3"></i> Areas to Avoid
</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-times-circle text-red-500 mt-1 mr-2"></i>
<span>Government buildings and protest sites in Bangkok (monitor local news)</span>
</li>
<li class="flex items-start">
<i class="fas fa-times-circle text-red-500 mt-1 mr-2"></i>
<span>Walking Street in Pattaya at night (not child-appropriate)</span>
</li>
<li class="flex items-start">
<i class="fas fa-times-circle text-red-500 mt-1 mr-2"></i>
<span>Unlicensed taxis or tuk-tuks without meters</span>
</li>
</ul>
</div>
<div>
<h3 class="text-xl font-semibold text-green-600 mb-4 flex items-center">
<i class="fas fa-shield-alt mr-3"></i> Safety Measures
</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>All hotels selected are in safe, tourist-friendly areas with good security</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Pre-booked private transfers to avoid public transport risks</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Emergency contacts programmed into phones: Tourist Police 1155</span>
</li>
</ul>
</div>
</div>
<div class="mt-8 bg-blue-50 p-6 rounded-lg">
<h3 class="text-xl font-semibold text-blue-700 mb-3 flex items-center">
<i class="fas fa-info-circle mr-3"></i> Current Situation
</h3>
<p class="text-gray-700">
As of our latest update, most tourist areas in Bangkok and Pattaya remain safe for visitors.
We've designed this itinerary to avoid any potential protest areas. All suggested activities
are in secure locations with good infrastructure for families. We recommend checking
<a href="https://www.gov.uk/foreign-travel-advice/thailand" class="text-blue-600 underline" target="_blank">your government's travel advice</a>
before departure for the latest updates.
</p>
</div>
</div>
</section>
<!-- Top Attractions -->
<section id="attractions" class="mb-20">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Family-Friendly Highlights</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Our carefully selected attractions perfect for your 8-year-old</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Attraction 1 -->
<div class="attraction-card bg-white rounded-xl shadow-md overflow-hidden">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1589394815804-964ed0be74eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Grand Palace" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-blue-100 text-blue-600 text-xs font-semibold px-3 py-1 rounded-full">Cultural</span>
<span class="ml-2 text-yellow-500">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Grand Palace & Wat Pho</h3>
<p class="text-gray-600 mb-4">Stunning architecture with child-friendly guides available. Early morning visits recommended to avoid crowds.</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-child mr-1 text-blue-500"></i>
<span class="mr-4">Great for kids</span>
<i class="fas fa-clock mr-1 text-blue-500"></i>
<span>2-3 hours</span>
</div>
</div>
</div>
<!-- Attraction 2 -->
<div class="attraction-card bg-white rounded-xl shadow-md overflow-hidden">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1579033462043-0f11a7862f7d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Cartoon Network Amazone" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-green-100 text-green-600 text-xs font-semibold px-3 py-1 rounded-full">Waterpark</span>
<span class="ml-2 text-yellow-500">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Cartoon Network Amazone</h3>
<p class="text-gray-600 mb-4">Thailand's first international theme waterpark featuring favorite Cartoon Network characters. Perfect for an 8-year-old!</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-child mr-1 text-blue-500"></i>
<span class="mr-4">Perfect for kids</span>
<i class="fas fa-clock mr-1 text-blue-500"></i>
<span>Full day</span>
</div>
</div>
</div>
<!-- Attraction 3 -->
<div class="attraction-card bg-white rounded-xl shadow-md overflow-hidden">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1505228395891-9a51e7e86bf6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1473&q=80" alt="Pattaya Beach" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-yellow-100 text-yellow-600 text-xs font-semibold px-3 py-1 rounded-full">Beach</span>
<span class="ml-2 text-yellow-500">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Centara Mirage Waterpark</h3>
<p class="text-gray-600 mb-4">Resort with private beach and amazing waterpark facilities included for guests. Safe environment for family fun.</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-child mr-1 text-blue-500"></i>
<span class="mr-4">Ideal for families</span>
<i class="fas fa-clock mr-1 text-blue-500"></i>
<span>All day</span>
</div>
</div>
</div>
<!-- Attraction 4 -->
<div class="attraction-card bg-white rounded-xl shadow-md overflow-hidden">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1527631746610-bca00a040d60?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="KidZania" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-purple-100 text-purple-600 text-xs font-semibold px-3 py-1 rounded-full">Interactive</span>
<span class="ml-2 text-yellow-500">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">KidZania Bangkok</h3>
<p class="text-gray-600 mb-4">Interactive city where kids can try different professions in a safe, educational environment. Great for rainy days.</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-child mr-1 text-blue-500"></i>
<span class="mr-4">Designed for kids</span>
<i class="fas fa-clock mr-1 text-blue-500"></i>
<span>3-4 hours</span>
</div>
</div>
</div>
<!-- Attraction 5 -->
<div class="attraction-card bg-white rounded-xl shadow-md overflow-hidden">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1552465011-bf9c0f8ba5d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Sanctuary of Truth" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-blue-100 text-blue-600 text-xs font-semibold px-3 py-1 rounded-full">Cultural</span>
<span class="ml-2 text-yellow-500">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Sanctuary of Truth</h3>
<p class="text-gray-600 mb-4">Magnificent wooden temple by the sea with cultural shows. Kids enjoy the elephant rides and craft demonstrations.</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-child mr-1 text-blue-500"></i>
<span class="mr-4">Child-friendly</span>
<i class="fas fa-clock mr-1 text-blue-500"></i>
<span>2 hours</span>
</div>
</div>
</div>
<!-- Attraction 6 -->
<div class="attraction-card bg-white rounded-xl shadow-md overflow-hidden">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1587825140708-8b3a41a47671?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Siam Paragon" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex items-center mb-3">
<span class="bg-pink-100 text-pink-600 text-xs font-semibold px-3 py-1 rounded-full">Shopping</span>
<span class="ml-2 text-yellow-500">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Siam Paragon & SEA LIFE</h3>
<p class="text-gray-600 mb-4">Luxury mall with amazing aquarium perfect for kids. Many family dining options and air-conditioned comfort.</p>
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-child mr-1 text-blue-500"></i>
<span class="mr-4">Great for families</span>
<i class="fas fa-clock mr-1 text-blue-500"></i>
<span>2-4 hours</span>
</div>
</div>
</div>
</div>
</section>
<!-- Travel Tips -->
<section id="tips" class="bg-white rounded-lg shadow-lg overflow-hidden p-8 mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Essential Family Travel Tips</h2>
<div class="grid md:grid-cols-2 gap-8">
<div>
<div class="flex items-start mb-6">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-suitcase-rolling text-blue-600 text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Packing Essentials</h3>
<ul class="list-disc pl-5 text-gray-600 space-y-1">
<li>Lightweight, modest clothing (shoulders/knees covered for temples)</li>
<li>Child's swimwear x2 (quick-dry recommended)</li>
<li>Sun protection: hats, child-safe sunscreen, sunglasses</li>
<li>Small first-aid kit with child medications</li>
<li>Reusable water bottles (filtered water available everywhere)</li>
</ul>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-bus text-green-600 text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Transportation</h3>
<ul class="list-disc pl-5 text-gray-600 space-y-1">
<li>Pre-book private transfers (we can arrange)</li>
<li>Use Grab app (SEA Uber) for safe taxis</li>
<li>BTS Skytrain in Bangkok is safe and efficient</li>
<li>Always have hotel address in Thai on your phone</li>
</ul>
</div>
</div>
</div>
<div>
<div class="flex items-start mb-6">
<div class="bg-yellow-100 p-3 rounded-full mr-4">
<i class="fas fa-utensils text-yellow-600 text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Food & Dining</h3>
<ul class="list-disc pl-5 text-gray-600 space-y-1">
<li>Stick to busy restaurants with high turnover</li>
<li>Great child-friendly options: pad thai, fried rice, mango sticky rice</li>
<li>Bottled drinks only, no ice unless at reputable places</li>
<li>7-Eleven has safe snacks and drinks for kids</li>
</ul>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-child text-purple-600 text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">For Your 8-Year-Old</h3>
<ul class="list-disc pl-5 text-gray-600 space-y-1">
<li>Carry a photo of your child and your contact info</li>
<li>Establish meeting points in crowded areas</li>
<li>Pack small toys/tablet for downtime</li>
<li>Many attractions offer child discounts (bring passport copy)</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Map Section -->
<section class="mb-20">
<h2 class="text-3xl font-bold text-gray-800 mb-8 text-center">Trip Map Overview</h2>
<div class="map-container bg-gray-200 relative">
<div class="absolute inset-0 flex items-center justify-center">
<div class="text-center p-6 bg-white bg-opacity-90 rounded-lg shadow-lg max-w-md">
<i class="fas fa-map-marked-alt text-4xl text-blue-500 mb-4"></i>
<h3 class="text-2xl font-bold text-gray-800 mb-2">Interactive Trip Map</h3>
<p class="text-gray-600 mb-4">This would display an interactive map showing all locations in the itinerary with safety zones highlighted.</p>
<button class="bg-blue-500 hover:bg-blue-600 text-white px-6 py-2 rounded-lg transition">
View Full Map
</button>
</div>
</div>
</div>
</section>
<!-- Emergency Info -->
<section class="bg-red-50 rounded-lg p-8 mb-12">
<h2 class="text-2xl font-bold text-red-700 mb-6 flex items-center">
<i class="fas fa-exclamation-circle mr-3"></i> Emergency Information
</h2>
<div class="grid md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="font-semibold text-red-600 mb-3 flex items-center">
<i class="fas fa-phone-alt mr-2"></i> Important Numbers
</h3>
<ul class="space-y-2">
<li><strong>Tourist Police:</strong> 1155 (English speaking)</li>
<li><strong>Medical Emergency:</strong> 1669</li>
<li><strong>Fire:</strong> 199</li>
<li><strong>China Embassy:</strong> +66 2 245 7044</li>
</ul>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="font-semibold text-red-600 mb-3 flex items-center">
<i class="fas fa-hospital mr-2"></i> Recommended Hospitals
</h3>
<ul class="space-y-2">
<li><strong>Bangkok:</strong> Bumrungrad International Hospital</li>
<li><strong>Pattaya:</strong> Bangkok Hospital Pattaya</li>
<li>Both have international departments and Chinese-speaking staff</li>
</ul>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="font-semibold text-red-600 mb-3 flex items-center">
<i class="fas fa-shield-alt mr-2"></i> Insurance
</h3>
<p>Ensure your travel insurance covers:</p>
<ul class="list-disc pl-5 mt-2 space-y-1">
<li>Medical evacuation</li>
<li>Political unrest coverage</li>
<li>Child-specific medical needs</li>
</ul>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-umbrella-beach mr-2"></i> Family Thailand Trip
</h3>
<p class="text-gray-300">A carefully crafted 5-day itinerary for your family's safe and enjoyable vacation in Bangkok and Pattaya.</p>
</div>
<div>
<h4 class="font-semibold text-lg mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#itinerary" class="text-gray-300 hover:text-white transition">Itinerary</a></li>
<li><a href="#safety" class="text-gray-300 hover:text-white transition">Safety Info</a></li>
<li><a href="#attractions" class="text-gray-300 hover:text-white transition">Attractions</a></li>
<li><a href="#tips" class="text-gray-300 hover:text-white transition">Travel Tips</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold text-lg mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="https://www.tourismthailand.org/" class="text-gray-300 hover:text-white transition" target="_blank">Tourism Thailand</a></li>
<li><a href="https://www.gov.uk/foreign-travel-advice/thailand" class="text-gray-300 hover:text-white transition" target="_blank">Travel Advice</a></li>
<li><a href="https://thaiembassy.cn/" class="text-gray-300 hover:text-white transition" target="_blank">Thai Embassy China</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold text-lg mb-4">Contact</h4>
<div class="space-y-3">
<div class="flex items-center">
<i class="fas fa-envelope mr-3 text-blue-300"></i>
<span>familytravel@example.com</span>
</div>
<div class="flex items-center">
<i class="fas fa-phone-alt mr-3 text-blue-300"></i>
<span>+66 2 123 4567</span>
</div>
<div class="flex items-center">
<i class="fas fa-map-marker-alt mr-3 text-blue-300"></i>
<span>Bangkok, Thailand</span>
</div>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 Family Thailand Trip. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Day itinerary tabs
const tabButtons = document.querySelectorAll('.day-tab-btn');
const tabContents = document.querySelectorAll('.tab-content');
tabButtons.forEach(button => {
button.addEventListener('click', () => {
// Remove active class from all buttons and contents
tabButtons.forEach(btn => {
btn.classList.remove('active', 'bg-blue-500', 'text-white');
btn.classList.add('bg-gray-200', 'text-gray-700');
});
tabContents.forEach(content => {
content.classList.remove('active');
});
// Add active class to clicked button and corresponding content
button.classList.add('active', 'bg-blue-500', 'text-white');
button.classList.remove('bg-gray-200', 'text-gray-700');
const day = button.getAttribute('data-day');
document.getElementById(day).classList.add('active');
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=clarkchan/tailand" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>