steake commited on
Commit
c11f162
Β·
verified Β·
1 Parent(s): 8fc15c1

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +427 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Goodmorningkampot
3
- emoji: πŸ“š
4
- colorFrom: green
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: goodmorningkampot
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,427 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Good Day Kampot - Boutique Guesthouse</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="preconnect" href="https://fonts.googleapis.com">
9
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
+ <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
11
+ <script>
12
+ tailwind.config = {
13
+ theme: {
14
+ extend: {
15
+ fontFamily: {
16
+ 'serif': ['Playfair Display', 'serif'],
17
+ 'sans': ['Poppins', 'sans-serif'],
18
+ },
19
+ colors: {
20
+ 'kampot-blue': '#3a7ca5',
21
+ 'kampot-sand': '#f4e9cd',
22
+ 'kampot-green': '#5b8c5a',
23
+ }
24
+ }
25
+ }
26
+ }
27
+ </script>
28
+ <style type="text/css">
29
+ .hero-image {
30
+ background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://i.imgur.com/Yn36fkR.jpg');
31
+ }
32
+ .room-card:hover .room-overlay {
33
+ opacity: 1;
34
+ }
35
+ .parallax {
36
+ background-attachment: fixed;
37
+ background-position: center;
38
+ background-repeat: no-repeat;
39
+ background-size: cover;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body class="font-sans text-gray-800 bg-kampot-sand">
44
+ <!-- Navigation -->
45
+ <nav class="bg-white shadow-md fixed w-full z-10">
46
+ <div class="container mx-auto px-4">
47
+ <div class="flex justify-between items-center py-4">
48
+ <div class="text-2xl font-serif text-kampot-blue">Good Day Kampot</div>
49
+ <div class="hidden md:flex space-x-8">
50
+ <a href="#home" class="hover:text-kampot-green transition">Home</a>
51
+ <a href="#rooms" class="hover:text-kampot-green transition">Rooms</a>
52
+ <a href="#about" class="hover:text-kampot-green transition">About</a>
53
+ <a href="#gallery" class="hover:text-kampot-green transition">Gallery</a>
54
+ <a href="#contact" class="hover:text-kampot-green transition">Contact</a>
55
+ </div>
56
+ <button class="md:hidden focus:outline-none" id="menu-toggle">
57
+ <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
58
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
59
+ </svg>
60
+ </button>
61
+ </div>
62
+ <!-- Mobile menu -->
63
+ <div class="md:hidden hidden py-4" id="mobile-menu">
64
+ <a href="#home" class="block py-2 hover:text-kampot-green transition">Home</a>
65
+ <a href="#rooms" class="block py-2 hover:text-kampot-green transition">Rooms</a>
66
+ <a href="#about" class="block py-2 hover:text-kampot-green transition">About</a>
67
+ <a href="#gallery" class="block py-2 hover:text-kampot-green transition">Gallery</a>
68
+ <a href="#contact" class="block py-2 hover:text-kampot-green transition">Contact</a>
69
+ </div>
70
+ </div>
71
+ </nav>
72
+
73
+ <!-- Hero Section -->
74
+ <section id="home" class="hero-image h-screen flex items-center justify-center text-white bg-cover bg-center">
75
+ <div class="text-center px-4">
76
+ <h1 class="text-4xl md:text-6xl font-serif mb-4">Welcome to Good Day Kampot</h1>
77
+ <p class="text-xl mb-8 max-w-2xl mx-auto">A tranquil retreat in the heart of Cambodia's most charming riverside town</p>
78
+ <a href="#rooms" class="bg-kampot-green hover:bg-opacity-90 text-white px-6 py-3 rounded-full transition">View Rooms</a>
79
+ </div>
80
+ </section>
81
+
82
+ <!-- Welcome Section -->
83
+ <section class="py-20 bg-white">
84
+ <div class="container mx-auto px-4">
85
+ <div class="flex flex-col md:flex-row items-center">
86
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
87
+ <h2 class="text-3xl font-serif text-kampot-blue mb-6">Experience Kampot's Charm</h2>
88
+ <p class="text-lg mb-4">Nestled along the tranquil riverside, Good Day Kampot offers a perfect blend of comfort and authentic Cambodian hospitality.</p>
89
+ <p class="text-lg mb-6">Our guesthouse features beautifully appointed rooms, a lush garden courtyard, and personalized service to make your stay unforgettable.</p>
90
+ <a href="#about" class="text-kampot-green hover:underline">Learn more about us β†’</a>
91
+ </div>
92
+ <div class="md:w-1/2">
93
+ <img src="https://images.unsplash.com/photo-1564501049412-61c2a3083791?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80" alt="Kampot riverside" class="rounded-lg shadow-xl w-full h-auto">
94
+ </div>
95
+ </div>
96
+ </div>
97
+ </section>
98
+
99
+ <!-- Rooms Section -->
100
+ <section id="rooms" class="py-20 bg-kampot-sand">
101
+ <div class="container mx-auto px-4">
102
+ <h2 class="text-3xl font-serif text-center text-kampot-blue mb-4">Our Rooms</h2>
103
+ <p class="text-center max-w-2xl mx-auto mb-12">Each of our rooms is thoughtfully designed to provide comfort and a sense of Cambodian tradition.</p>
104
+
105
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
106
+ <!-- Room 1 -->
107
+ <div class="room-card bg-white rounded-lg overflow-hidden shadow-lg relative">
108
+ <img src="https://i.imgur.com/jRfJO1e.jpg" alt="Deluxe Room" class="w-full h-64 object-cover">
109
+ <div class="p-6">
110
+ <h3 class="text-xl font-serif text-kampot-blue mb-2">Deluxe River View</h3>
111
+ <p class="text-gray-600 mb-4">Wake up to stunning views of the Kampot River from your private balcony.</p>
112
+ <div class="flex justify-between items-center">
113
+ <span class="text-kampot-green font-bold">$45/night</span>
114
+ <a href="#contact" class="text-kampot-blue hover:underline">Book Now</a>
115
+ </div>
116
+ </div>
117
+ <div class="room-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center opacity-0 transition-opacity duration-300">
118
+ <div class="text-white p-6 text-center">
119
+ <h3 class="text-xl font-serif mb-2">Deluxe River View</h3>
120
+ <ul class="text-left mb-4">
121
+ <li class="mb-1">β€’ King-size bed with premium linens</li>
122
+ <li class="mb-1">β€’ Private balcony with river view</li>
123
+ <li class="mb-1">β€’ Air conditioning & ceiling fan</li>
124
+ <li class="mb-1">β€’ Ensuite bathroom with rain shower</li>
125
+ <li class="mb-1">β€’ Complimentary breakfast</li>
126
+ </ul>
127
+ <a href="#contact" class="inline-block bg-kampot-green hover:bg-opacity-90 text-white px-4 py-2 rounded transition">Book This Room</a>
128
+ </div>
129
+ </div>
130
+ </div>
131
+
132
+ <!-- Room 2 -->
133
+ <div class="room-card bg-white rounded-lg overflow-hidden shadow-lg relative">
134
+ <img src="https://i.imgur.com/Yn36fkR.jpg" alt="Garden Room" class="w-full h-64 object-cover">
135
+ <div class="p-6">
136
+ <h3 class="text-xl font-serif text-kampot-blue mb-2">Garden Bungalow</h3>
137
+ <p class="text-gray-600 mb-4">A peaceful retreat surrounded by our lush tropical garden.</p>
138
+ <div class="flex justify-between items-center">
139
+ <span class="text-kampot-green font-bold">$35/night</span>
140
+ <a href="#contact" class="text-kampot-blue hover:underline">Book Now</a>
141
+ </div>
142
+ </div>
143
+ <div class="room-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center opacity-0 transition-opacity duration-300">
144
+ <div class="text-white p-6 text-center">
145
+ <h3 class="text-xl font-serif mb-2">Garden Bungalow</h3>
146
+ <ul class="text-left mb-4">
147
+ <li class="mb-1">β€’ Queen-size bed with mosquito net</li>
148
+ <li class="mb-1">β€’ Private terrace overlooking garden</li>
149
+ <li class="mb-1">β€’ Air conditioning & ceiling fan</li>
150
+ <li class="mb-1">β€’ Ensuite bathroom with hot water</li>
151
+ <li class="mb-1">β€’ Complimentary breakfast</li>
152
+ </ul>
153
+ <a href="#contact" class="inline-block bg-kampot-green hover:bg-opacity-90 text-white px-4 py-2 rounded transition">Book This Room</a>
154
+ </div>
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Room 3 -->
159
+ <div class="room-card bg-white rounded-lg overflow-hidden shadow-lg relative">
160
+ <img src="https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Standard Room" class="w-full h-64 object-cover">
161
+ <div class="p-6">
162
+ <h3 class="text-xl font-serif text-kampot-blue mb-2">Standard Double</h3>
163
+ <p class="text-gray-600 mb-4">Comfortable and affordable accommodation in the heart of Kampot.</p>
164
+ <div class="flex justify-between items-center">
165
+ <span class="text-kampot-green font-bold">$25/night</span>
166
+ <a href="#contact" class="text-kampot-blue hover:underline">Book Now</a>
167
+ </div>
168
+ </div>
169
+ <div class="room-overlay absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center opacity-0 transition-opacity duration-300">
170
+ <div class="text-white p-6 text-center">
171
+ <h3 class="text-xl font-serif mb-2">Standard Double</h3>
172
+ <ul class="text-left mb-4">
173
+ <li class="mb-1">β€’ Double bed with quality linens</li>
174
+ <li class="mb-1">β€’ Garden or street view window</li>
175
+ <li class="mb-1">β€’ Ceiling fan (AC available for $5 extra)</li>
176
+ <li class="mb-1">β€’ Shared bathroom with hot water</li>
177
+ <li class="mb-1">β€’ Breakfast available ($3 extra)</li>
178
+ </ul>
179
+ <a href="#contact" class="inline-block bg-kampot-green hover:bg-opacity-90 text-white px-4 py-2 rounded transition">Book This Room</a>
180
+ </div>
181
+ </div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+ </section>
186
+
187
+ <!-- Parallax Section -->
188
+ <section class="parallax py-32 bg-fixed" style="background-image: url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1587&q=80')">
189
+ <div class="container mx-auto px-4 text-center text-white">
190
+ <h2 class="text-3xl font-serif mb-6">Discover Kampot's Magic</h2>
191
+ <p class="text-xl max-w-2xl mx-auto mb-8">From river cruises at sunset to exploring pepper plantations, let us help you experience the best of Kampot.</p>
192
+ <a href="#contact" class="bg-kampot-green hover:bg-opacity-90 text-white px-6 py-3 rounded-full transition">Plan Your Stay</a>
193
+ </div>
194
+ </section>
195
+
196
+ <!-- About Section -->
197
+ <section id="about" class="py-20 bg-white">
198
+ <div class="container mx-auto px-4">
199
+ <div class="flex flex-col md:flex-row items-center">
200
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10 order-2 md:order-1">
201
+ <h2 class="text-3xl font-serif text-kampot-blue mb-6">Our Story</h2>
202
+ <p class="text-lg mb-4">Good Day Kampot was founded in 2015 by a Cambodian-French couple who fell in love with Kampot's laid-back charm and wanted to share it with travelers from around the world.</p>
203
+ <p class="text-lg mb-6">We've carefully restored this traditional Khmer house, preserving its character while adding modern comforts. Every detail reflects our commitment to sustainable tourism and authentic experiences.</p>
204
+ <div class="flex space-x-4">
205
+ <div class="bg-kampot-sand p-4 rounded-lg text-center">
206
+ <div class="text-2xl font-serif text-kampot-green">8</div>
207
+ <div>Rooms</div>
208
+ </div>
209
+ <div class="bg-kampot-sand p-4 rounded-lg text-center">
210
+ <div class="text-2xl font-serif text-kampot-green">100%</div>
211
+ <div>Local Staff</div>
212
+ </div>
213
+ <div class="bg-kampot-sand p-4 rounded-lg text-center">
214
+ <div class="text-2xl font-serif text-kampot-green">5β˜…</div>
215
+ <div>Reviews</div>
216
+ </div>
217
+ </div>
218
+ </div>
219
+ <div class="md:w-1/2 order-1 md:order-2">
220
+ <img src="https://images.unsplash.com/photo-1564501049412-61c2a3083791?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80" alt="Guesthouse exterior" class="rounded-lg shadow-xl w-full h-auto">
221
+ </div>
222
+ </div>
223
+ </div>
224
+ </section>
225
+
226
+ <!-- Gallery Section -->
227
+ <section id="gallery" class="py-20 bg-kampot-sand">
228
+ <div class="container mx-auto px-4">
229
+ <h2 class="text-3xl font-serif text-center text-kampot-blue mb-4">Gallery</h2>
230
+ <p class="text-center max-w-2xl mx-auto mb-12">Take a visual journey through our guesthouse and the beautiful surroundings of Kampot.</p>
231
+
232
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
233
+ <img src="https://images.unsplash.com/photo-1566669437685-b9d8c7b9e8a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Guesthouse room" class="w-full h-64 object-cover rounded-lg shadow hover:shadow-lg transition">
234
+ <img src="https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Guesthouse balcony" class="w-full h-64 object-cover rounded-lg shadow hover:shadow-lg transition">
235
+ <img src="https://images.unsplash.com/photo-1527631746610-bca00a040d60?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1587&q=80" alt="Kampot river" class="w-full h-64 object-cover rounded-lg shadow hover:shadow-lg transition">
236
+ <img src="https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Guesthouse garden" class="w-full h-64 object-cover rounded-lg shadow hover:shadow-lg transition">
237
+ <img src="https://images.unsplash.com/photo-1564501049412-61c2a3083791?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80" alt="Guesthouse common area" class="w-full h-64 object-cover rounded-lg shadow hover:shadow-lg transition">
238
+ <img src="https://images.unsplash.com/photo-1527631746610-bca00a040d60?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1587&q=80" alt="Kampot sunset" class="w-full h-64 object-cover rounded-lg shadow hover:shadow-lg transition">
239
+ </div>
240
+ </div>
241
+ </section>
242
+
243
+ <!-- Testimonials -->
244
+ <section class="py-20 bg-white">
245
+ <div class="container mx-auto px-4">
246
+ <h2 class="text-3xl font-serif text-center text-kampot-blue mb-12">What Our Guests Say</h2>
247
+
248
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
249
+ <!-- Testimonial 1 -->
250
+ <div class="bg-kampot-sand p-6 rounded-lg shadow">
251
+ <div class="flex items-center mb-4">
252
+ <div class="text-yellow-400 text-xl">β˜…β˜…β˜…β˜…β˜…</div>
253
+ </div>
254
+ <p class="mb-4">"Absolutely loved our stay at Good Day Kampot! The room was beautiful, the staff incredibly friendly, and the location perfect for exploring the town."</p>
255
+ <div class="flex items-center">
256
+ <div class="font-serif text-kampot-blue">Sarah M.</div>
257
+ </div>
258
+ </div>
259
+
260
+ <!-- Testimonial 2 -->
261
+ <div class="bg-kampot-sand p-6 rounded-lg shadow">
262
+ <div class="flex items-center mb-4">
263
+ <div class="text-yellow-400 text-xl">β˜…β˜…β˜…β˜…β˜…</div>
264
+ </div>
265
+ <p class="mb-4">"The garden bungalow was a peaceful oasis. Waking up to birds singing and enjoying coffee in the garden was the perfect start to each day."</p>
266
+ <div class="flex items-center">
267
+ <div class="font-serif text-kampot-blue">Thomas L.</div>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Testimonial 3 -->
272
+ <div class="bg-kampot-sand p-6 rounded-lg shadow">
273
+ <div class="flex items-center mb-4">
274
+ <div class="text-yellow-400 text-xl">β˜…β˜…β˜…β˜…β˜…</div>
275
+ </div>
276
+ <p class="mb-4">"The owners went above and beyond to make our stay special, even arranging a private boat tour at sunset. We'll definitely be back!"</p>
277
+ <div class="flex items-center">
278
+ <div class="font-serif text-kampot-blue">Emma & James</div>
279
+ </div>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </section>
284
+
285
+ <!-- Contact Section -->
286
+ <section id="contact" class="py-20 bg-kampot-blue text-white">
287
+ <div class="container mx-auto px-4">
288
+ <div class="flex flex-col md:flex-row">
289
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
290
+ <h2 class="text-3xl font-serif mb-6">Contact Us</h2>
291
+ <p class="mb-6">Ready to book your stay or have questions about our guesthouse? We'd love to hear from you!</p>
292
+
293
+ <div class="mb-6">
294
+ <h3 class="font-serif text-xl mb-2">Address</h3>
295
+ <p>123 Riverside Road, Kampot, Cambodia</p>
296
+ </div>
297
+
298
+ <div class="mb-6">
299
+ <h3 class="font-serif text-xl mb-2">Contact Information</h3>
300
+ <p>Phone: +855 12 345 678</p>
301
+ <p>Email: hello@gooddaykampot.com</p>
302
+ </div>
303
+
304
+ <div class="flex space-x-4">
305
+ <a href="#" class="bg-white text-kampot-blue p-2 rounded-full hover:bg-opacity-90 transition">
306
+ <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
307
+ <path d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"/>
308
+ </svg>
309
+ </a>
310
+ <a href="#" class="bg-white text-kampot-blue p-2 rounded-full hover:bg-opacity-90 transition">
311
+ <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
312
+ <path d="M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z"/>
313
+ </svg>
314
+ </a>
315
+ </div>
316
+ </div>
317
+
318
+ <div class="md:w-1/2">
319
+ <form class="bg-white text-gray-800 p-6 rounded-lg shadow-lg">
320
+ <div class="mb-4">
321
+ <label for="name" class="block text-gray-700 mb-2">Name</label>
322
+ <input type="text" id="name" class="w-full px-3 py-2 border border-gray-300 rounded focus:outline-none focus:border-kampot-green">
323
+ </div>
324
+ <div class="mb-4">
325
+ <label for="email" class="block text-gray-700 mb-2">Email</label>
326
+ <input type="email" id="email" class="w-full px-3 py-2 border border-gray-300 rounded focus:outline-none focus:border-kampot-green">
327
+ </div>
328
+ <div class="mb-4">
329
+ <label for="subject" class="block text-gray-700 mb-2">Subject</label>
330
+ <select id="subject" class="w-full px-3 py-2 border border-gray-300 rounded focus:outline-none focus:border-kampot-green">
331
+ <option>Booking Inquiry</option>
332
+ <option>General Question</option>
333
+ <option>Special Request</option>
334
+ </select>
335
+ </div>
336
+ <div class="mb-4">
337
+ <label for="message" class="block text-gray-700 mb-2">Message</label>
338
+ <textarea id="message" rows="4" class="w-full px-3 py-2 border border-gray-300 rounded focus:outline-none focus:border-kampot-green"></textarea>
339
+ </div>
340
+ <button type="submit" class="bg-kampot-green hover:bg-opacity-90 text-white px-6 py-2 rounded transition">Send Message</button>
341
+ </form>
342
+ </div>
343
+ </div>
344
+ </div>
345
+ </section>
346
+
347
+ <!-- Map Section -->
348
+ <div class="h-96 w-full">
349
+ <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3928.841835518457!2d104.1815093152619!3d10.60894039231931!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3108b5d7f0f9a3a7%3A0x10100b25fa4b4c0!2sKampot%2C%20Cambodia!5e0!3m2!1sen!2sus!4v1623456789012!5m2!1sen!2sus" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
350
+ </div>
351
+
352
+ <!-- Footer -->
353
+ <footer class="bg-gray-900 text-white py-10">
354
+ <div class="container mx-auto px-4">
355
+ <div class="flex flex-col md:flex-row justify-between">
356
+ <div class="mb-6 md:mb-0">
357
+ <div class="text-2xl font-serif text-kampot-blue mb-4">Good Day Kampot</div>
358
+ <p>Your home away from home in Cambodia's most charming riverside town.</p>
359
+ </div>
360
+ <div class="grid grid-cols-2 md:grid-cols-3 gap-8">
361
+ <div>
362
+ <h3 class="font-serif text-lg mb-4">Quick Links</h3>
363
+ <ul class="space-y-2">
364
+ <li><a href="#home" class="hover:text-kampot-sand transition">Home</a></li>
365
+ <li><a href="#rooms" class="hover:text-kampot-sand transition">Rooms</a></li>
366
+ <li><a href="#about" class="hover:text-kampot-sand transition">About</a></li>
367
+ <li><a href="#gallery" class="hover:text-kampot-sand transition">Gallery</a></li>
368
+ <li><a href="#contact" class="hover:text-kampot-sand transition">Contact</a></li>
369
+ </ul>
370
+ </div>
371
+ <div>
372
+ <h3 class="font-serif text-lg mb-4">Contact</h3>
373
+ <ul class="space-y-2">
374
+ <li>123 Riverside Road</li>
375
+ <li>Kampot, Cambodia</li>
376
+ <li>+855 12 345 678</li>
377
+ <li>hello@gooddaykampot.com</li>
378
+ </ul>
379
+ </div>
380
+ <div>
381
+ <h3 class="font-serif text-lg mb-4">Newsletter</h3>
382
+ <p class="mb-2">Subscribe for special offers and updates.</p>
383
+ <div class="flex max-w-xs">
384
+ <input type="email" placeholder="email" class="w-full px-3 py-2 text-gray-800 rounded-l focus:outline-none">
385
+ <button class="bg-kampot-green hover:bg-opacity-90 px-4 py-2 rounded-r whitespace-nowrap">Signup</button>
386
+ </div>
387
+ </div>
388
+ </div>
389
+ </div>
390
+ <div class="border-t border-gray-800 mt-10 pt-6 text-center md:text-left">
391
+ <p>&copy; 2023 Good Day Kampot. All rights reserved.</p>
392
+ </div>
393
+ </div>
394
+ </footer>
395
+
396
+ <script>
397
+ // Mobile menu toggle
398
+ document.getElementById('menu-toggle').addEventListener('click', function() {
399
+ const menu = document.getElementById('mobile-menu');
400
+ menu.classList.toggle('hidden');
401
+ });
402
+
403
+ // Smooth scrolling for anchor links
404
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
405
+ anchor.addEventListener('click', function (e) {
406
+ e.preventDefault();
407
+
408
+ const targetId = this.getAttribute('href');
409
+ const targetElement = document.querySelector(targetId);
410
+
411
+ if (targetElement) {
412
+ window.scrollTo({
413
+ top: targetElement.offsetTop - 80,
414
+ behavior: 'smooth'
415
+ });
416
+
417
+ // Close mobile menu if open
418
+ const mobileMenu = document.getElementById('mobile-menu');
419
+ if (!mobileMenu.classList.contains('hidden')) {
420
+ mobileMenu.classList.add('hidden');
421
+ }
422
+ }
423
+ });
424
+ });
425
+ </script>
426
+ <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=steake/goodmorningkampot" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
427
+ </html>