-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
473 lines (449 loc) · 26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Hawaiian Adventure Awaits!</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
background: linear-gradient(120deg, #e0f2f1 0%, #b2dfdb 100%);
min-height: 100vh;
}
.feature-list {
list-style-type: none;
padding-left: 0;
}
.feature-list li {
display: flex;
align-items: center;
margin-bottom: 0.5rem;
}
.feature-list li::before {
content: "🌺";
display: inline-block;
width: 1.5em;
margin-right: 0.5em;
font-size: 0.8em;
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-4px);
}
@media print {
.no-print {
display: none;
}
.page-break {
page-break-before: always;
}
body {
background: white;
}
}
</style>
</head>
<body class="min-h-screen">
<div class="container mx-auto px-4 py-8 max-w-5xl">
<div class="text-center mb-12 bg-white/80 rounded-lg shadow-lg p-6">
<img src="images/hawaii-sunset.jpg" alt="Hawaii Sunset" class="w-full h-64 object-cover rounded-lg shadow-lg mb-6"/>
<h1 class="text-4xl font-bold text-teal-800 mb-4">Your Hawaiian Adventure Awaits!</h1>
<div class="text-left">
<p class="text-xl text-teal-700">Dear Marjaneh,</p>
<p class="text-lg text-teal-600 mt-4">Surprise! We're going to the Big Island of Hawaii! Let's plan our perfect getaway together.</p>
<p class="text-lg text-teal-600 mt-4">Love, BooBoo John</p>
</div>
</div>
<!-- Travel Details -->
<div class="bg-white/90 rounded-lg shadow-lg p-6 mb-8">
<h2 class="text-2xl font-semibold text-teal-700 mb-4">Travel Details</h2>
<div class="space-y-4">
<div class="flex items-center">
<span class="font-medium w-32">Airline:</span>
<a href="https://www.alaskaair.com/hawaii" target="_blank" class="text-teal-600 hover:text-teal-800 hover:underline">Alaska Airlines</a>
</div>
<div class="flex items-center">
<span class="font-medium w-32">Trip Length:</span>
<select name="tripLength" class="rounded-md border-gray-300 shadow-sm">
<option value="5">5 nights</option>
<option value="6">6 nights</option>
<option value="7">7 nights</option>
</select>
</div>
<div class="flex items-center">
<span class="font-medium w-32">When:</span>
<span>February 2025</span>
</div>
</div>
</div>
<!-- Navigation Menu -->
<div class="bg-white/90 rounded-lg shadow-lg p-4 mb-8 sticky top-4 z-50">
<nav class="flex flex-wrap gap-4 justify-center">
<a href="#adventures" class="text-teal-600 hover:text-teal-800 hover:underline">Adventures</a>
<a href="#dining" class="text-teal-600 hover:text-teal-800 hover:underline">Dining</a>
<a href="#beaches" class="text-teal-600 hover:text-teal-800 hover:underline">Beaches</a>
<a href="#culture" class="text-teal-600 hover:text-teal-800 hover:underline">Cultural Activities</a>
<a href="#shopping" class="text-teal-600 hover:text-teal-800 hover:underline">Shopping</a>
</nav>
</div>
<!-- Adventures Section -->
<div class="bg-white/90 rounded-lg shadow-lg p-6 mb-8">
<h2 class="text-2xl font-semibold text-teal-700 mb-6 flex items-center">
Choose Your Adventures
<span class="ml-2 text-2xl">🌋</span>
</h2>
<div class="grid md:grid-cols-2 gap-6">
<!-- Volcano National Park -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/volcano-national-park.jpg" alt="Volcano National Park" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://www.nps.gov/havo/index.htm" target="_blank" class="hover:underline">Hawaii Volcanoes National Park</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>See active volcanoes</li>
<li>Crater Rim Drive</li>
<li>Thurston Lava Tube</li>
<li>Guided tours available</li>
</ul>
<p class="font-medium text-teal-700 mb-4">From $179/person</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="volcano_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Do!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
<!-- Manta Ray Night Snorkel -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/manta-night-snorkel.webp" alt="Manta Ray Night Snorkel" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://konaoceanadventures.com/snorkeling/afternoon-manta-snorkel-scuba" target="_blank" class="hover:underline">Manta Ray Snorkeling</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>Swim with gentle giants</li>
<li>All equipment provided</li>
<li>Professional guides</li>
<li>Unforgettable experience</li>
</ul>
<p class="font-medium text-teal-700 mb-4">$129/person</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="manta_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Do!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
<!-- Mauna Kea Summit -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/manuakea.webp" alt="Mauna Kea Summit" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://maunakea.com/" target="_blank" class="hover:underline">Mauna Kea Summit & Stars</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>World's best stargazing</li>
<li>Sunset above the clouds</li>
<li>Hot chocolate included</li>
<li>Professional telescope viewing</li>
</ul>
<p class="font-medium text-teal-700 mb-4">$219/person</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="mauna_kea_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Do!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
<!-- Helicopter Tour -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/helicopter-tour.png" alt="Helicopter Tour" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://www.bluehawaiian.com/en/bigisland/tours/big-island-spectacular" target="_blank" class="hover:underline">Circle Island Helicopter Tour</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>See active lava flows</li>
<li>Waterfall valleys</li>
<li>Stunning coastline views</li>
<li>Professional narration</li>
</ul>
<p class="font-medium text-teal-700 mb-4">$349/person</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="helicopter_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Do!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
</div>
<div class="mt-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Your Activity Notes & Preferences:</label>
<textarea name="activity_notes" class="w-full h-24 rounded-md border-gray-300 shadow-sm"></textarea>
</div>
</div>
<!-- Dining Section -->
<div id="dining" class="bg-white/90 rounded-lg shadow-lg p-6 mb-8">
<h2 class="text-2xl font-semibold text-teal-700 mb-6 flex items-center">
Local Flavors & Dining
<span class="ml-2 text-2xl">🍜</span>
</h2>
<div class="grid md:grid-cols-2 gap-6">
<!-- Beach Tree Restaurant -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/beach-tree-restaurant.jpg" alt="Beach Tree Restaurant" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://www.fourseasons.com/hualalai/dining/restaurants/beach_tree/" target="_blank" class="hover:underline">Beach Tree Restaurant</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>Open air dining</li>
<li>Italian cuisine</li>
<li>Sunset views</li>
<li>Resort attire required</li>
</ul>
<p class="font-medium text-teal-700 mb-4">$$ | Dinner only</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="browns_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Try!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
<!-- Canoe House Restaurant -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/canoehouse-image.jpg" alt="Umeke's Poke" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://aubergeresorts.com/maunalani/dine/canoe-house/" target="_blank" class="hover:underline">Canoe House</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>Rich island heritage</li>
<li>Local favorite spot</li>
<li>A variety of dishes</li>
<li>Casual atmosphere</li>
</ul>
<p class="font-medium text-teal-700 mb-4">$ | Lunch favorite</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="umekes_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Try!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
</div>
</div>
<!-- Beaches Section -->
<div id="beaches" class="bg-white/90 rounded-lg shadow-lg p-6 mb-8">
<h2 class="text-2xl font-semibold text-teal-700 mb-6 flex items-center">
Beautiful Beaches
<span class="ml-2 text-2xl">🏖️</span>
</h2>
<div class="grid md:grid-cols-2 gap-6">
<!-- Black Sand Beach -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/punaluu-beach-park.jpg" alt="Punalu'u Black Sand Beach" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://bigislandguide.com/visit-punaluu-black-sand-beach" target="_blank" class="hover:underline">Punalu'u Black Sand Beach</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>Unique black sand beach</li>
<li>Sea turtle sightings common</li>
<li>Great for photos</li>
<li>Palm tree lined coast</li>
</ul>
<p class="font-medium text-teal-700 mb-4">Free | Public beach</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="blacksand_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Visit!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
<!-- Hapuna Beach -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/hapuna-beach.jpg" alt="Hapuna Beach" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://bigislandguide.com/enjoy-a-day-on-hapuna-white-sand-beach" target="_blank" class="hover:underline">Hapuna Beach</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>White sand paradise</li>
<li>Perfect for swimming</li>
<li>Beach rentals available</li>
<li>Lifeguard on duty</li>
</ul>
<p class="font-medium text-teal-700 mb-4">$5 parking | Public beach</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="hapuna_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Visit!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
</div>
</div>
<!-- Cultural Activities -->
<div id="culture" class="bg-white/90 rounded-lg shadow-lg p-6 mb-8">
<h2 class="text-2xl font-semibold text-teal-700 mb-6 flex items-center">
Cultural Experiences
<span class="ml-2 text-2xl">🌺</span>
</h2>
<div class="grid md:grid-cols-2 gap-6">
<!-- Luau -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/fire-dance.webp" alt="Royal Kona Luau" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://www.royalkona.com/luau" target="_blank" class="hover:underline">Royal Kona Resort Luau</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>Traditional Hawaiian feast</li>
<li>Hula & fire dancers</li>
<li>Oceanfront setting</li>
<li>Shell lei greeting</li>
</ul>
<p class="font-medium text-teal-700 mb-4">$129/person includes dinner</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="luau_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Do!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
<!-- Lei Making -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/lei-making.webp" alt="Lei Making Class" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://www.hawaii.com/hawaii-culture-historic-info/immerse-yourself-in-hawaiian-culture-with-these-lei-making-classes" target="_blank" class="hover:underline">Traditional Lei Making</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>Learn from local experts</li>
<li>All materials included</li>
<li>Take home your creation</li>
<li>Cultural history shared</li>
</ul>
<p class="font-medium text-teal-700 mb-4">$59/person | 2 hours</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="lei_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Do!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
</div>
</div>
<!-- Shopping Section -->
<div id="shopping" class="bg-white/90 rounded-lg shadow-lg p-6 mb-8">
<h2 class="text-2xl font-semibold text-teal-700 mb-6 flex items-center">
Shopping & Markets
<span class="ml-2 text-2xl">🛍️</span>
</h2>
<div class="grid md:grid-cols-2 gap-6">
<!-- Farmers Market -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/farmers-market.webp" alt="Hilo Farmers Market" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://www.gohawaii.com/islands/hawaii-big-island/things-to-do/land-activities/farmers-markets" target="_blank" class="hover:underline">Farmer's Markets</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>Fresh tropical fruits</li>
<li>Local crafts & art</li>
<li>Wednesday & Saturday</li>
<li>Cash preferred</li>
</ul>
<p class="font-medium text-teal-700 mb-4">Free entry | Morning market</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="market_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Visit!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
<!-- Shopping Center -->
<div class="card-hover rounded-lg border border-teal-100 overflow-hidden bg-white shadow-md">
<img src="images/kings-shops.png" alt="Kings Shops" class="w-full h-48 object-cover"/>
<div class="p-4">
<h4 class="font-semibold text-lg mb-2 text-teal-800">
<a href="https://kingsshops.com" target="_blank" class="hover:underline">King's Shops</a>
</h4>
<ul class="feature-list text-gray-600 mb-4">
<li>Luxury boutiques</li>
<li>Local art galleries</li>
<li>Hawaiian jewelry</li>
<li>Free hula shows</li>
</ul>
<p class="font-medium text-teal-700 mb-4">Free entry | Open daily</p>
<div class="space-y-2">
<label class="block text-sm font-medium text-gray-700">Interest Level:</label>
<select name="shops_interest" class="w-full rounded-md border-gray-300 shadow-sm">
<option value="">Select interest</option>
<option value="high">Must Visit!</option>
<option value="medium">Interested</option>
<option value="low">Not Interested</option>
</select>
</div>
</div>
</div>
</div>
</div>
<!-- Print/Save Button -->
<div class="fixed bottom-4 right-4 no-print">
<button type="button" onclick="window.print()"
class="bg-teal-600 hover:bg-teal-700 text-white px-6 py-3 rounded-lg shadow-lg transition-colors">
Save/Print Preferences
</button>
</div>
</div>
</body>
</html>