-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubud.html
1521 lines (1485 loc) · 61.7 KB
/
ubud.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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ubud Art Village | Loka Bali</title>
<!-- favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="ico/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="ico/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="ico/favicon-16x16.png"
/>
<link rel="manifest" href="ico/site.webmanifest" />
<!-- end favicon -->
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Kaushan+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- styles -->
<link rel="stylesheet" href="./src/css/style.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"
/>
<!-- alphine js -->
<script src="https://unpkg.com/alpinejs"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"
/>
<!-- icon -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
/>
<!-- aos -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<link rel="stylesheet" href="src/js/script.js" />
</head>
<body class="bg-white custom-scrollbar relative font-body overflow-x-hidden">
<!-- navbar start-->
<div
class="navbar fixed w-full top-0 z-[999] transition-all duration-1000 ease-in-out"
>
<nav
@scroll.window="onScroll = true"
x-data="{
isDestinationOpen: false,
onScroll: false,
isItenaryOpen: false,
isTipsOpen: false,
isLangOpen: false,
isSearchOpen: false,
isNavMobOpen: false,
destinations: {
'Denpasar\:': 'Gateway to Bali',
'Ubud\:': 'Art Village',
'Kuta\:': 'Bali\'s Beach Playground',
'Seminyak\:': 'Trendy Coastal Retreat',
'Canggu\:': 'Bohemian Surf Town',
'Jimbaran\:': 'Seafood Haven',
'Sanur\:': 'Serene Seaside Escape',
'Lovina\:': 'North Bali\'s Coastal Gem',
'Amed\:': 'Bali\'s Diving Paradise'
},
itineraries: {
'Bali\'s Hidden Gems': ': A Journey Through Nature\'s Secrets',
'Cultural Marvels of Bali': ': Exploring Traditions and Temples',
'Bali Eco-Adventure': ': Discovering the Island\'s Natural Wonders',
'Bali Bliss': ': A Day of Relaxation and Exploration',
'Spiritual Sanctuary': ': Pilgrimage to Bali\'s Sacred Sites',
'Flavors of Bali': ': A Culinary Journey Through Local Delights',
'Mountain Majesty': ': Trekking Through Bali\'s Volcanic Landscapes',
'Underwater Wonderland': ': Exploring Bali\'s Coral Gardens'
},
tips: {
'Travel Tips': ': Essential Information for Your Bali Trip',
'Find Hidden Gems': ': Discovering Bali\'s Off-the-Beaten-Path',
'Find the Best Guides': ': Connecting with Bali\'s Local Experts',
'Todays Ceremony and Festivals': ': Joining Bali\'s Cultural Celebrations',
'Bali\'s Nightlife': ': The Island\'s Best Nightlife Spots',
'Bali\'s Shopping': ': Where to Find the Best Souvenirs',
'Bali\'s Wellness': ': The Island\'s Best Spas and Yoga Studios',
'Bali\'s Adventure': ': The Island\'s Best Outdoor Activities',
}
}"
@mouseover.away="isDestinationOpen = false; isItenaryOpen = false; isTipsOpen = false; isLangOpen = false;"
x-transition.duration.300ms
:class="isSearchOpen || isNavMobOpen ||onScroll ? 'nav-active bg-transparent py-4 border-b-2 border md:px-12 px-4 transition-all duration-300 ease-in-out hover:bg-white text-white hover:text-black' : 'bg-transparent py-5 md:px-12 px-4 transition-all duration-300 ease-in-out hover:bg-white text-white hover:text-black'"
>
<div class="flex justify-between items-center">
<!-- brand -->
<div class="">
<a href="index.html">
<h1 class="font-title text-3xl">Loka Bali</h1>
</a>
</div>
<!-- main menu -->
<ul
class="gap-x-7 text-lg font-semibold font-subtitle hidden lg:flex"
>
<li>
<a
@mouseover="isDestinationOpen = true; isItenaryOpen = false; isTipsOpen = false;"
@mouseleave="isDestinationOpen = false"
@click.prevent="isDestinationOpen = true"
href=""
class="hover:underline hover:decoration-primary hover:underline-offset-8 hover:font-extrabold"
>Loka Destinations</a
>
</li>
<li>
<a
@mouseover="isItenaryOpen = true; isDestinationOpen = false; isTipsOpen = false;"
@mouseleave="isItenaryOpen = false"
@click.prevent="isItenaryOpen = true"
href=""
class="hover:underline decoration-primary hover:decoration-primary hover:underline-offset-8 hover:font-extrabold"
>Loka Itineraries</a
>
</li>
<li>
<a
@mouseover="isTipsOpen = true; isItenaryOpen = false; isDestinationOpen = false;"
@mouseleave="isTipsOpen = false"
@click.prevent="isTipsOpen = true"
href=""
class="hover:underline hover:decoration-primary hover:underline-offset-8 hover:font-extrabold"
>Loka Tips</a
>
</li>
</ul>
<!-- nav-icon -->
<ul class="gap-x-5 md:gap-x-7 text-lg font-subtitle flex">
<li>
<button
@click="isSearchOpen = !isSearchOpen; isNavMobOpen = false"
class="hover:text-primary transition-color"
id="search-button"
>
<template x-if="isSearchOpen">
<i class="bi bi-x-lg text-primary"></i>
</template>
<template x-if="!isSearchOpen">
<i class="bi bi-search"></i>
</template>
</button>
</li>
<li class="relative">
<a
@mouseover="isLangOpen = true"
@mouseleave="isLangOpen = false"
@click.prevent="isLangOpen = true"
class="hover:underline hover:decoration-primary hover:underline-offset-8"
>EN <i class="bi bi-globe2"></i
></a>
<div
@mouseover="isLangOpen = true"
x-show="isLangOpen"
x-transition.origin.top.duration.300ms
x-transition:leave="transition duration-300 ease-in-out"
class="absolute w-24 -left-4 bg-white text-black rounded-lg z-[100] shadow-lg"
>
<ul
class="flex flex-col gap-y-2 py-3 mx-2 text-sm font-body font-medium text-center cursor-pointer"
>
<li
class="hover:text-emerald-600 hover:font-semibold hover:underline hover:decoration-primary hover:underline-offset-8"
>
English
</li>
<li
class="hover:text-emerald-600 hover:font-semibold hover:underline hover:decoration-primary hover:underline-offset-8"
>
Indonesia
</li>
<li
class="hover:text-emerald-600 hover:font-semibold hover:underline hover:decoration-primary hover:underline-offset-8"
>
Français
</li>
<li
class="hover:text-emerald-600 hover:font-semibold hover:underline hover:decoration-primary hover:underline-offset-8"
>
Deutsch
</li>
<li
class="hover:text-emerald-600 hover:font-semibold hover:underline hover:decoration-primary hover:underline-offset-8"
>
日本語
</li>
<li
class="hover:text-emerald-600 hover:font-semibold hover:underline hover:decoration-primary hover:underline-offset-8"
>
हिंदी
</li>
</ul>
</div>
</li>
<li class="block lg:hidden">
<button
class="hover:text-primary transition-color text-xl"
@click="isNavMobOpen = !isNavMobOpen; isSearchOpen = false"
>
<template x-if="!isNavMobOpen">
<i class="bi bi-list"></i>
</template>
<template x-if="isNavMobOpen">
<i class="bi bi-x-lg text-primary"></i>
</template>
</button>
</li>
</ul>
</div>
<!-- nav extend -->
<div
@mouseover="isDestinationOpen = true; isItenaryOpen = false; isTipsOpen = false"
x-show="isDestinationOpen"
x-transition.origin.top.duration.300ms
x-transition:leave="transition duration-300 ease-in-out"
id="destination"
class="px-20 pt-8 flex justify-between items-center"
>
<ul class="font-subtitle flex flex-col gap-y-1 text-lg">
<template x-for="(description, name) in destinations">
<li>
<a
href="ubud.html"
class="flex group items-center transition-all duration-200 hover:text-emerald-600"
>
<span class="font-bold" x-text="name"></span>
<span class="ml-1" x-text="description"> ></span>
<i
class="bi bi-arrow-right-short text-2xl ml-1 text-primary group-hover:ml-2 transition-all duration-200"
></i>
</a>
</li>
</template>
</ul>
<div class="w-1/4">
<img
src="/src/img/cliff.jpg"
loading="lazy"
class="w-full rounded-xl shadow-md"
alt=""
/>
<h3 class="font-body text-sm text-body mt-2">
Discover hidden gems and the beauty of nature, uncover
destinations unknown to most tourists.
</h3>
</div>
</div>
<div
@mouseover="isItenaryOpen = true; isDestinationOpen = false; isTipsOpen = false;"
x-show="isItenaryOpen"
x-transition.origin.top.duration.300ms
x-transition:leave="transition duration-300 ease-in-out"
id="itineraries"
class="px-20 pt-8 flex justify-between items-center"
>
<ul class="font-subtitle flex flex-col gap-y-1 text-lg">
<template x-for="(description, name) in itineraries">
<li>
<a
href="itinerary.html"
class="flex group items-center transition-all duration-200 hover:text-emerald-600"
>
<span class="font-bold" x-text="name"></span>
<span x-text="description"> ></span>
<i
class="bi bi-arrow-right-short text-2xl ml-1 text-primary group-hover:ml-2 transition-all duration-200"
></i>
</a>
</li>
</template>
</ul>
<div class="w-1/4">
<img
src="/src/img/tips.jpg"
loading="lazy"
class="w-full rounded-xl shadow-md object-cover object-center"
alt=""
/>
<h3 class="font-body text-sm text-body mt-2">
Recomendation of itineraries to explore Bali, from cultural to eco
adventure.
</h3>
</div>
</div>
<div
@mouseover="isTipsOpen = true; isItenaryOpen = false; isDestinationOpen = false;"
x-show="isTipsOpen"
x-transition.origin.top.duration.300ms
x-transition:leave="transition duration-300 ease-in-out"
id="tips"
class="px-20 pt-8 flex justify-between items-center"
>
<ul class="font-subtitle flex flex-col gap-y-1 text-lg">
<template x-for="(description, name) in tips">
<li>
<a
href="blog.html"
class="flex group items-center transition-all duration-200 hover:text-emerald-600"
>
<span class="font-bold" x-text="name"></span>
<span x-text="description"> ></span>
<i
class="bi bi-arrow-right-short text-2xl ml-1 text-primary group-hover:ml-2 transition-all duration-200"
></i>
</a>
</li>
</template>
</ul>
<div class="w-1/4">
<img
src="/src/img/people.jpg"
loading="lazy"
class="w-full rounded-xl shadow-md h-48 object-cover object-center"
alt=""
/>
<h3 class="font-body text-sm text-body mt-2">
Find the best tips and recommendation to explore Bali, from travel
tips to hidden gems.
</h3>
</div>
</div>
<div
x-show="isSearchOpen"
x.transition
@click.away="isSearchOpen = false"
@keydown.escape.window="isSearchOpen = false"
x-data="{
search: '',
items: {
'Finding Hidden Gems Beach': [
'Offering unparalleled natural beauty. With pristine white sands, majestic cliffs, and crystal-clear waters, snorkeling, or simply unwinding in peace.',
'../src/img/cliff.jpg'
],
'See Todays Ceremony': [
'Bali is a land of ceremonies and festivals. The Balinese calendar is full of festivals and celebrations, and you can find one happening almost every day.',
'../src/img/local.jpg'
],
'How to Speak to the local': [
'The Balinese people are known for their warm hospitality and friendliness. Learn a few phrases in Bahasa Indonesia to make your trip more enjoyable.',
'../src/img/people.jpg'
],
},
get filteredItems() {
return Object.keys(this.items).filter(key =>
key.toLowerCase().includes(this.search.toLowerCase())
);
}
}"
class="px-2 md:px-20 pt-8 flex flex-col items-start bg-white"
>
<form
action=""
class="flex items-center justify-center"
name="searchBar"
id="searchBar"
>
<i class="bi bi-search mr-3 text-gray-500 text-base md:text-lg"></i>
<input
x-model="search"
type="text"
name="keyword"
id=""
class="bg-transparent outline-none w-80 md:w-96 placeholder:text-base md:placeholder:text-xl placeholder:font-subtitle placeholder:font-semibold placeholder:text-gray-500 text-base md:text-xl font-semibold focus:outline-none focus:ring-0"
autofocus
autocomplete="off"
placeholder="Search for destination, itineraries, tips..."
/>
</form>
<div class="w-full border-strong border-t-4 rounded-full my-1"></div>
<ul class="mt-5">
<template x-for="item in filteredItems" :key="item">
<a href="blog.html">
<li
class="flex transition-all duration-300 hover:bg-secondary/20 p-3 rounded-lg cursor-pointer"
>
<img
:src="items[item][1]"
alt=""
class="w-2/5 md:w-1/3 lg:w-1/5 rounded-lg shadow-lg lg:h-32 object-center"
/>
<div class="ml-3">
<h3
class="font-subtitle text-xl md:text-2xl font-semibold"
x-text="item"
></h3>
<p
class="hidden md:block text-body font-body text-sm"
x-text="items[item][0]"
></p>
</div>
</li>
</a>
</template>
</ul>
</div>
<!-- mobile nav -->
<div
x-show="isNavMobOpen"
@click.away="isNavMobOpen = false"
x-data="{
isDestinationOpen: true,
isItenaryOpen: false,
isTipsOpen: false,
}"
class="flex lg:hidden flex-col mt-8 gap-y-3"
>
<button
class="flex justify-between"
@click="isDestinationOpen = !isDestinationOpen; isItenaryOpen = false; isTipsOpen = false;"
>
<span class="text-xl font-semibold font-subtitle"
>Loka Destinations</span
>
<i
x-show="!isDestinationOpen"
class="bi bi-chevron-down text-2xl"
></i>
<i
x-show="isDestinationOpen"
class="bi bi-chevron-up text-2xl text-primary"
></i>
</button>
<ul x-show="isDestinationOpen" class="px-4">
<template x-for="(description, name) in destinations">
<li>
<a
href="ubud.html"
class="flex group items-center transition-all duration-200 hover:text-emerald-600"
>
<span class="font-bold" x-text="name"></span>
<span class="ml-1" x-text="description"> ></span>
<i
class="bi bi-arrow-right-short text-2xl ml-1 text-primary group-hover:ml-2 transition-all duration-200"
></i>
</a>
</li>
</template>
</ul>
<button
class="flex justify-between"
@click="isItenaryOpen = !isItenaryOpen; isDestinationOpen = false; isTipsOpen = false;"
>
<span class="text-xl font-semibold font-subtitle"
>Loka Itineraries</span
>
<i x-show="!isItenaryOpen" class="bi bi-chevron-down text-2xl"></i>
<i
x-show="isItenaryOpen"
class="bi bi-chevron-up text-2xl text-primary"
></i>
</button>
<ul x-show="isItenaryOpen" class="px-4">
<template x-for="(description, name) in itineraries">
<li>
<a
href="ubud.html"
class="flex group items-center transition-all duration-200 hover:text-emerald-600"
>
<span class="font-semibold" x-text="name"></span>
<span class="ml-1 hidden md:block" x-text="description">
></span
>
<i
class="bi bi-arrow-right-short text-2xl ml-1 text-primary group-hover:ml-2 transition-all duration-200"
></i>
</a>
</li>
</template>
</ul>
<button
class="flex justify-between"
@click="isTipsOpen = !isTipsOpen; isDestinationOpen = false; isItenaryOpen = false;"
>
<span class="text-xl font-semibold font-subtitle">Loka Tips</span>
<i x-show="!isTipsOpen" class="bi bi-chevron-down text-2xl"></i>
<i
x-show="isTipsOpen"
class="bi bi-chevron-up text-2xl text-primary"
></i>
</button>
<ul x-show="isTipsOpen" class="px-4">
<template x-for="(description, name) in tips">
<li>
<a
href="ubud.html"
class="flex group items-center transition-all duration-200 hover:text-emerald-600"
>
<span class="font-semibold" x-text="name"></span>
<span class="ml-1 hidden md:block" x-text="description">
></span
>
<i
class="bi bi-arrow-right-short text-2xl ml-1 text-primary group-hover:ml-2 transition-all duration-200"
></i>
</a>
</li>
</template>
</ul>
</div>
</nav>
</div>
<!-- navbar end -->
<!-- Jumbotron -->
<div
class="bg-[url('/src/img/ubud-bg.jpg')] min-w-screen h-screen bg-cover bg-no-repeat bg-fixed bg-left lg:bg-center relative flex items-center justify-center flex-col after:content-[''] after:block after:w-full after:h-screen after:absolute after:top-0 after:bg-black/35 -z-10"
>
<div class="container mx-auto z-50 text-center">
<p
class="text-white text-xl md:text-2xl font-subtitle -mt-10 mb-10"
data-aos="fade-up"
data-aos-duration="1500"
>
explore
</p>
<h1
class="text-5xl md:text-6xl text-white leading-relaxed font-title"
data-aos="fade-up"
data-aos-duration="2000"
>
Ubud Art Village
</h1>
<div
class="line-pattern mx-auto mt-1 md:mt-3"
data-aos="fade-up"
data-aos-duration="2900"
></div>
<a
href=""
class="absolute bottom-10 text-white text-base font-body left-4 md:left-14"
><i class="bi bi-geo-alt"></i> Puri Agung Ubud</a
>
<div class="scroll-downs bottom-1 right-3 hidden lg:block">
<div class="mousey">
<div class="scroller"></div>
</div>
</div>
</div>
</div>
<!-- Jumbotron End -->
<!-- Content start -->
<div
class="flex flex-col md:flex-row justify-center items-center py-14 md:py-24 -mt-5 lg:mt-0 rounded-2xl lg:rounded-none px-4 md:px-12 bg-white overflow-x-hidden"
>
<div class="line-pattern -mt-10 mb-10 block md:hidden"></div>
<div
class="mb-5 w-full md:w-3/5"
data-aos="fade-right"
data-aos-duration="1000"
>
<div
class="font-subtitle mb-2 text-xl font-semibold md:text-2xl lg:text-3xl lg:mb-4"
>
Explore: The iconic art village Ubud
</div>
<div
class="font-body text-xs font-extralight lg:text-base"
data-aos-delay="100"
>
Ubud is an iconic art village located in Bali, Indonesia. Renowned for
its breathtaking natural beauty, Ubud also serves as a hub for arts,
culture, and spirituality in Bali. The village is filled with art
galleries, handicraft studios, and traditional performance venues such
as Balinese dance and gamelan music.
</div>
</div>
<div
class="flex justify-center items-center w-full md:w-2/5"
data-aos="fade-left"
data-aos-duration="1000"
>
<div class="w-52 h-52 lg:w-80 lg:h-80 mySwiperCard">
<div class="swiper-wrapper">
<div class="swiper-slide rounded-xl">
<img src="src/img/image1.jpg" alt="" />
</div>
<div class="swiper-slide rounded-xl">
<img src="src/img/image2.jpg" alt="" />
</div>
<div class="swiper-slide rounded-xl">
<img src="src/img/image4.jpg" alt="" />
</div>
</div>
</div>
</div>
</div>
<!-- Content end -->
<!-- Hiddden gems start -->
<div
class="bg-emerald-50 px-7 py-7 relative overflow-hidden md:px-10 md:py-10 lg:px-16 lg:py-16 xl:px-20 xl:py-20"
>
<div class="flex justify-start">
<div
class="font-subtitle text-xl font-semibold md:text-2xl mb-1 md:mb-2 lg:text-3xl xl:text-4xl"
data-aos="fade-right"
data-aos-duration="800"
>
Hidden Gems
<div class="line-pattern mx-auto mt-1 md:mt-3"></div>
</div>
</div>
<div class="grid grid-cols-12 grid-rows-12 gap-5 h-screen my-7 z-30">
<a
href="blog.html"
class="col-span-12 row-span-4 md:row-span-4 md:col-span-6 lg:col-span-4 lg:row-span-5 rounded-xl overflow-hidden relative group"
data-aos="fade-up"
data-aos-duration="1000"
>
<div
class="absolute w-full h-1/2 bottom-0 bg-gradient-to-t from-black opacity-80 z-10"
></div>
<div
class="absolute text-white bottom-2 font-subtitle md:text-lg lg:text-xl font-semibold z-10 w-full flex justify-between px-3 items-center"
>
<span>Semar Kuning Artist</span>
<i
class="fa-solid fa-arrow-right mr-3 group-hover:mr-0 transition-all duration-200 ease-in-out"
></i>
</div>
<img
src="/src/img/semar-kuning.jpg"
alt=""
loading="lazy"
class="object-cover h-full w-full group-hover:scale-105 transition-all duration-300 ease-in-out"
/>
</a>
<a
href="blog.html"
class="col-span-12 row-span-4 md:row-span-8 md:col-span-6 lg:col-span-4 rounded-xl overflow-hidden relative group"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-delay="150"
>
<div
class="absolute w-full h-1/2 bottom-0 bg-gradient-to-t from-black opacity-80 z-10"
></div>
<div
class="absolute text-white bottom-2 font-subtitle md:text-lg lg:text-xl font-semibold z-10 w-full flex justify-between px-3 items-center"
>
<span>Bangkiang Djaran</span>
<i
class="fa-solid fa-arrow-right mr-3 group-hover:mr-0 transition-all duration-200 ease-in-out"
></i>
</div>
<img
src="/src/img/bangkiang-djaran.jpeg"
alt=""
loading="lazy"
class="object-cover h-full w-full group-hover:scale-105 transition-all duration-300 ease-in-out"
/>
</a>
<a
href="blog.html"
class="col-span-12 row-span-4 md:row-span-4 lg:row-span-5 md:col-span-6 lg:col-span-4 rounded-xl overflow-hidden hidden md:block relative group"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-delay="300"
>
<div
class="absolute w-full h-1/2 bottom-0 bg-gradient-to-t from-black opacity-80 z-10"
></div>
<div
class="absolute text-white bottom-2 font-subtitle md:text-lg lg:text-xl font-semibold z-10 w-full flex justify-between px-3 items-center"
>
<span>Gunung Kawi Temple</span>
<i
class="fa-solid fa-arrow-right mr-3 group-hover:mr-0 transition-all duration-200 ease-in-out"
></i>
</div>
<img
src="src/img/gunung-kawi.jpg"
alt=""
loading="lazy"
class="object-fill h-full w-full group-hover:scale-105 transition-all duration-300 ease-in-out"
/>
</a>
<a
href="blog.html"
class="col-span-12 row-span-4 md:row-span-8 md:col-span-6 lg:row-span-7 lg:col-span-4 rounded-xl overflow-hidden hidden md:block relative group"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-delay="450"
>
<div
class="absolute w-full h-1/2 bottom-0 bg-gradient-to-t from-black opacity-80 z-10"
></div>
<div
class="absolute text-white bottom-2 font-subtitle md:text-lg lg:text-xl font-semibold z-10 w-full flex justify-between px-3 items-center"
>
<span>Tangkup Waterfall</span>
<i
class="fa-solid fa-arrow-right mr-3 group-hover:mr-0 transition-all duration-200 ease-in-out"
></i>
</div>
<img
src="src/img/tangkup-waterfall.jpeg"
alt=""
loading="lazy"
class="object-cover h-full w-full group-hover:scale-105 transition-all duration-300 ease-in-out"
/>
</a>
<a
href="blog.html"
class="col-span-12 row-span-4 md:row-span-4 lg:row-span-7 md:col-span-6 lg:col-span-4 rounded-xl overflow-hidden hidden md:block relative group"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-delay="1000"
>
<div
class="absolute w-full h-1/2 bottom-0 bg-gradient-to-t from-black opacity-80 z-10"
></div>
<div
class="absolute text-white bottom-2 font-subtitle md:text-lg lg:text-xl font-semibold z-10 w-full flex justify-between px-3 items-center"
>
<span>Tegalalang Rice Terrace</span>
<i
class="fa-solid fa-arrow-right mr-3 group-hover:mr-0 transition-all duration-200 ease-in-out"
></i>
</div>
<img
src="src/img/image2.jpg"
alt=""
loading="lazy"
class="object-cover h-full w-full group-hover:scale-105 transition-all duration-300 ease-in-out"
/>
</a>
<a
href="blog.html"
class="col-span-12 row-span-4 md:row-span-4 md:col-span-6 lg:col-span-4 rounded-xl overflow-hidden relative group"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-delay="100"
>
<div
class="absolute w-full h-1/2 bottom-0 bg-gradient-to-t from-black opacity-80 z-10"
></div>
<div
class="absolute text-white bottom-2 font-subtitle md:text-lg lg:text-xl font-semibold z-10 w-full flex justify-between px-3 items-center"
>
<span>Campuan Ridge Walk</span>
<i
class="fa-solid fa-arrow-right mr-3 group-hover:mr-0 transition-all duration-200 ease-in-out"
></i>
</div>
<img
src="src/img/campuhan-ridge-walk.webp"
alt=""
loading="lazy"
class="object-cover h-full w-full group-hover:scale-105 transition-all duration-300 ease-in-out"
/>
</a>
</div>
<div class="w-full flex justify-end items-center">
<a href="" class="text-strong text-sm font-semibold"
>Find More Hidden Gems <i class="fa-solid fa-arrow-right"></i
></a>
</div>
<img
src="src/img/Frame.png"
alt=""
class="opacity-45 absolute -bottom-16 -left-36 rotate-45 -z-20 md:-bottom-36 md:-left-64 lg:-bottom-64 lg:-left-80"
/>
<img
src="src/img/Frame.png"
alt=""
class="opacity-45 absolute -top-16 -right-36 rotate-45 -z-10 md:-top-36 md:-right-64 lg:-top-64 lg:-right-80"
/>
</div>
<!-- Hidden gems end -->
<!-- Local flavors start -->
<div x-data="{open: false}" class="p-7 lg:p-10 xl:p-20 relative">
<!-- modal body -->
<div
x-show="open"
@keydown.escape.window="open = false"
class="fixed inset-0 z-[999] flex items-end md:items-center justify-center bg-black/40 backdrop-blur-md transito"
>
<div
x-show="open"
x-transition:enter="transition-all duration-700 ease-in-out delay-75"
x-transition:enter-start="-mb-[100%] lg:opacity-0 lg:scale-95"
x-transition:enter-end="mb-0 lg:opacity-100 lg:scale-100"
@click.away="open = false"
class="md:w-full md:mx-3 lg:w-3/5 lg:h-3/5 bg-white mx-auto drop-shadow-2xl flex flex-col md:flex-row rounded-b-none rounded-2xl md:rounded-b-2xl overflow-hidden"
>
<button
x-on:click="open = false"
class="absolute right-2 lg:right-auto lg:left-2 top-2 text-gray-800 rounded-full bg-gray-100/50 backdrop-blur-lg px-3 py-1"
>
<i class="fa-solid fa-x"></i>
</button>
<div class="w-full md:w-3/5">
<img
src="https://lh3.googleusercontent.com/p/AF1QipN0DNI73ajv9wsdIomcum9lxt8aZVOhkEW-3kID=s1360-w1360-h1020"
class="h-full object-cover"
loading="eager"
alt=""
/>
</div>
<div class="w-full md:w-2/5 relative">
<div
class="flex justify-between items-center bg-white border-b-2 px-3 py-2"
>
<span class="font-subtitle font-semibold text-xl"
>Warung Makan Bu Rus</span
>
<span class="text-sm font-semibold text-strong"
><i class="bi bi-star-fill"></i> 4.6</span
>
</div>
<div class="p-3 flex justify-between items-center">
<div class="text-sm text-strong font-semibold text-left">
<i class="fa-solid fa-clock"></i> 11:00-21:30
</div>
<div class="text-sm text-left text-strong font-semibold">
Rp. 15k-125K
</div>
</div>
<div class="px-3 text-sm mt-3">
<p>
Traditional Balinese food in a simple restaurant with a
luxurious terrace and large garden.
</p>
<p class="mt-2">
<span class="font-semibold">Service options:</span> Provides
outdoor seating · Serves vegetarian dishes
</p>
<p class="mt-2">
<span class="font-semibold">Top Menu:</span> Nasi Campur, Ayam
Betutu, Bebek, Ikan Bakar, Sate Lilit.
</p>
</div>
<div
class="static mt-10 md:mt-0 md:absolute bottom-0 w-full border-t-2 flex justify-between items-center bg-white drop-shadow-md px-3 py-3"
>
<a
href="https://g.co/kgs/AE55edE"
target="_blank"
class="px-3 py-2 rounded-full border-2 border-strong text-strong font-medium"
><i class="fa-solid fa-map"></i> Google Maps</a
>
<a
href="https://wa.me/6281234567890?text=Hi%2C%20I%20want%20to%20reserve%20a%20table%20for%20tonight%20at%20Warung%20Makan%20Bu%20Rus"
target="_blank"
class="px-3 py-2 rounded-full border-2 border-strong bg-strong text-white font-medium"
><i class="bi bi-telephone-fill"></i> Reserve</a
>
</div>
</div>
</div>
</div>
<!-- modal body end -->
<div class="flex justify-start">
<div class="flex justify-between relative w-full">
<div class="flex justify-start">
<div
class="font-subtitle text-xl font-semibold md:text-2xl mb-1 md:mb-2 lg:text-3xl xl:text-4xl"
data-aos="fade-right"
data-aos-duration="800"
>
Lokal Flavors
<div class="line-pattern mx-auto mt-1 md:mt-3"></div>
</div>
</div>
<div class="w-24 justify-between items-center hidden md:flex">
<div
class="swiper-button-prev !static bg-secondary/20 px-5 rounded-md"
></div>
<div
class="swiper-button-next !static bg-secondary/20 px-5 rounded-md swiper-button-disabled"
></div>
</div>
</div>
</div>
<div
class="swiper mySwiperGrab mt-10"
x-data="{ eats: [
{id: 1, title: 'Warung Makan Bu Rus', img: 'https://lh3.googleusercontent.com/p/AF1QipN0DNI73ajv9wsdIomcum9lxt8aZVOhkEW-3kID=s1360-w1360-h1020', price: 'Rp. 10k-75k', clock: '<i class="fa-solid fa-clock mt-1"></i> 11:00-21:30', maps: 'https://g.co/kgs/AE55edE', dur: 1000},
{id: 2, title: 'Kedaton Rumah Makan', img: 'https://lh3.googleusercontent.com/p/AF1QipPLh6Uni0eFtJmPKrdXXr_0K7MkZds2AMA14J0I=s1360-w1360-h1020', price: 'Rp. 7k-45K', clock: '<i class="fa-solid fa-clock mt-1"></i> 08:00-22:00', maps: 'https://g.co/kgs/6XFuaCw', dur: 1400},
{id: 3, title: 'Bebek Bengil', img: 'https://lh3.googleusercontent.com/p/AF1QipNwappCoMeEuY4QdCYe66FT-bG4IizU-FO2R2ti=s1360-w1360-h1020', price: 'Rp. 15k-125K', clock: '<i class="fa-solid fa-clock mt-1"></i> 10:00-22:00', maps: 'https://g.co/kgs/qh981ED', dur: 1800},
{id: 4, title: 'Ubud Waroeng (Vegan)', img: 'https://lh3.googleusercontent.com/p/AF1QipPBoEwf43dTgiSOUyw0c6Cluf1M0red8JFeSt_H=s1360-w1360-h1020', price: 'Rp. 25k-75k', clock: '<i class="fa-solid fa-clock mt-1"></i> 08:00-23:00', maps: 'https://g.co/kgs/gucvtA1', dur: 2200},
] }"
>
<div class="swiper-wrapper">
<template x-for="eat in eats" :key="eat.id">
<!-- button modal -->
<button
x-on:click="open = !open"
class="swiper-slide cursor-pointer mb-10 group rounded-lg overflow-hidden"
>
<div
data-aos="fade-up"
:data-aos-duration="eat.dur"
data-aos-delay="500"
>
<img
:src="eat.img"
alt=""
class="rounded-t-lg w-full group-hover:scale-105 transition-all duration-300 ease-in-out"
/>
<div
class="px-3 pt-3 pb-5 xl:py-4 xl:pt-4 xl:pb-7 rounded-b-lg border-2 border-t-0"
>
<div
class="text-sm text-strong font-semibold text-left"
x-html="eat.clock"
></div>
<div class="flex justify-between items-center my-1">
<div
class="font-subtitle font-semibold text-base text-left xl:text-xl"
x-text="eat.title"
></div>
<a
:href="eat.maps"
target="_blank"
class="text-strong w-10 h-10 flex items-center justify-center rounded-full hover:text-strong hover:bg-secondary/20 transition-all duration-100 ease-in-out"
>
<i class="fa-regular fa-map xl:text-xl"></i>
</a>
</div>
<div
class="text-xs text-left text-slate-500 xl:text-sm -mt-2 md:-mt-3"
x-text="eat.price"
></div>
</div>
</div>
</button>
</template>
</div>
<div
class="swiper-pagination flex justify-start items-center pt-10 md:hidden"
></div>
</div>
</div>
<!-- Local flavors end -->
<!-- Local adventure start -->
<div x-data="{open: false}" class="relative overflow-hidden">
<!-- modal body -->
<div
x-show="open"
@keydown.escape.window="open = false"
class="fixed inset-0 z-[999] flex items-end md:items-center justify-center bg-black/40 backdrop-blur-md transito"
>
<div
x-show="open"
x-transition:enter="transition-all duration-700 ease-in-out delay-75"
x-transition:enter-start="-mb-[100%] lg:opacity-0 lg:scale-95"
x-transition:enter-end="mb-0 lg:opacity-100 lg:scale-100"
@click.away="open = false"
class="md:w-full md:mx-3 lg:w-3/5 lg:h-3/5 bg-white mx-auto drop-shadow-2xl flex flex-col md:flex-row rounded-b-none rounded-2xl md:rounded-b-2xl overflow-hidden"