-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1278 lines (980 loc) · 47.5 KB
/
index.html
File metadata and controls
1278 lines (980 loc) · 47.5 KB
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" >
<title>KiviBloom Insights</title>
<meta name="description" content="Explore thoughtful insights into Chinese history, and the complex culture. ">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" type="image/x-icon" href="/favicon.ico?v=1776860657999">
<link rel="shortcut icon" href="/favicon.ico?v=1776860657999">
<meta property="og:image" content="/images/avatar.png">
<link rel="preload" as="image" href="/images/avatar.png">
<!-- Google 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=Nunito:wght@400;500;600;700&family=Handlee&display=swap" rel="stylesheet">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome -->
<link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- AOS animation library -->
<link href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js"></script>
<!-- KaTeX for math -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.10.0/katex.min.css">
<link rel="stylesheet" href="/styles/main.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#4EA58A',
secondary: '#8FC8AE',
tertiary: '#c8e6da',
canopy: '#1F4C3B',
mist: '#F4FBF6',
wood: '#B98B5F',
dew: '#E2F4EA',
dusk: '#0f2c22'
},
fontFamily: {
sans: ['Nunito', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica', 'Arial', 'sans-serif'],
display: ['Handlee', 'Nunito', 'PingFang SC', 'sans-serif']
},
boxShadow: {
'card': '0 20px 35px rgba(31, 76, 59, 0.08)',
'card-hover': '0 30px 45px rgba(31, 76, 59, 0.14)'
},
borderRadius: {
'xl': '1rem',
'2xl': '1.5rem',
'3xl': '2rem'
}
}
}
}
</script>
<style type="text/tailwindcss">
@layer utilities {
.text-shadow {
text-shadow: 0 6px 24px rgba(15, 44, 34, 0.35);
}
.text-shadow-lg {
text-shadow: 0 12px 28px rgba(15, 44, 34, 0.45);
}
.bg-gradient-primary {
background: linear-gradient(135deg, #4ea58a 0%, #2a7056 100%);
}
.bg-gradient-secondary {
background: linear-gradient(135deg, #8fc8ae 0%, #4ea58a 100%);
}
.bg-gradient-tertiary {
background: linear-gradient(135deg, #fdf9f2 0%, #f0e2d1 100%);
}
}
</style>
<style>
:root {
--forest-primary: #4ea58a;
--forest-deep: #1f4c3b;
--forest-dark: #0f2c22;
--forest-mist: #f4fbf6;
--forest-wood: #b98b5f;
--forest-highlight: #8fc8ae;
--forest-dew: #e2f4ea;
}
body {
font-family: 'Nunito', 'PingFang SC', 'Microsoft YaHei', sans-serif;
font-size: 16px;
line-height: 1.7;
color: #1a2a23;
background:
radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 45%),
radial-gradient(circle at 80% 0%, rgba(163, 219, 187, 0.3), transparent 55%),
linear-gradient(180deg, #f7fcf9 0%, #e8f4ed 55%, #d9efe6 100%);
min-height: 100vh;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Handlee', 'Nunito', 'PingFang SC', sans-serif;
font-weight: 600;
color: var(--forest-deep);
letter-spacing: 0.5px;
}
.nav-link {
position: relative;
padding-bottom: 4px;
font-weight: 500;
color: rgba(15, 44, 34, 0.8);
transition: color 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
border-radius: 999px;
background: linear-gradient(90deg, var(--forest-primary), rgba(78, 165, 138, 0));
transform: scaleX(0);
transform-origin: left center;
transition: transform 0.3s ease;
}
.nav-link:hover {
color: var(--forest-primary);
}
.nav-link:hover::after {
transform: scaleX(1);
}
.article-card,
.forest-panel {
transition: transform 0.6s cubic-bezier(.19,1,.22,1), box-shadow 0.6s ease;
border-radius: 28px;
background: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(78, 165, 138, 0.12);
}
.article-card:hover,
.forest-panel:hover {
transform: translateY(-6px);
box-shadow: 0 35px 65px rgba(15, 44, 34, 0.12);
}
.tag {
transition: all 0.35s ease;
border-radius: 999px;
border: 1px solid transparent;
background: rgba(78, 165, 138, 0.08);
color: var(--forest-primary);
text-transform: capitalize;
}
.tag:hover {
border-color: var(--forest-primary);
background: var(--forest-primary);
color: #f6fffb;
transform: translateY(-2px);
}
.leaf-button {
position: relative;
display: inline-flex;
align-items: center;
gap: 0.6rem;
padding: 0.9rem 1.8rem;
border-radius: 999px;
border: none;
background: linear-gradient(120deg, #caa981 0%, #a37445 55%, #815737 100%);
color: #fff;
font-weight: 600;
letter-spacing: 0.5px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(129, 87, 55, 0.35);
transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.leaf-button::before,
.leaf-button::after {
content: '';
position: absolute;
width: 16px;
height: 16px;
background: rgba(255, 255, 255, 0.4);
border-radius: 50%;
animation: dew 4s linear infinite;
}
.leaf-button::before {
top: 8px;
left: 18px;
}
.leaf-button::after {
bottom: 10px;
right: 22px;
animation-delay: 1s;
}
.leaf-button:hover {
transform: translateY(-2px);
box-shadow: 0 20px 35px rgba(129, 87, 55, 0.35);
}
.hero-forest {
background: linear-gradient(180deg, rgba(15,44,34,0.9) 0%, rgba(31,76,59,0.8) 50%, rgba(79,136,108,0.85) 100%);
border-radius: 48px;
overflow: hidden;
position: relative;
}
.hero-forest::before,
.hero-forest::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle, rgba(143,200,174,0.25), transparent 55%);
mix-blend-mode: screen;
animation: pulse 12s ease-in-out infinite;
}
.hero-forest::after {
animation-delay: 6s;
}
.parallax-layer {
position: absolute;
inset: 0;
background-repeat: no-repeat;
pointer-events: none;
}
.parallax-layer.trees {
background-image:
radial-gradient(circle at 20% 100%, rgba(24,73,51,0.8) 0%, transparent 55%),
radial-gradient(circle at 80% 100%, rgba(35,97,69,0.8) 0%, transparent 50%);
}
.parallax-layer.mist {
background: linear-gradient(180deg, rgba(244,251,246,0.25), rgba(244,251,246,0));
}
.floating-leaf {
position: absolute;
width: 18px;
height: 36px;
border-radius: 40% 60% 40% 60%;
background: rgba(143,200,174,0.85);
box-shadow: 0 8px 16px rgba(15, 44, 34, 0.25);
animation: floatLeaf 10s ease-in-out infinite;
}
.scene-card {
border-radius: 32px;
padding: 2rem;
background: linear-gradient(160deg, rgba(255,255,255,0.92), rgba(226,244,234,0.92));
border: 1px solid rgba(78,165,138,0.15);
position: relative;
overflow: hidden;
backdrop-filter: blur(8px);
}
.scene-card::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at top right, rgba(143,200,174,0.25), transparent 45%);
pointer-events: none;
}
.audio-pill {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.4rem 0.9rem;
border-radius: 999px;
border: 1px solid rgba(78,165,138,0.2);
background: rgba(78,165,138,0.08);
color: var(--forest-dark);
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s ease;
}
.audio-pill.is-playing {
background: var(--forest-primary);
color: #f6fffb;
border-color: transparent;
box-shadow: 0 12px 20px rgba(78, 165, 138, 0.35);
}
.dew-hover {
position: relative;
overflow: hidden;
}
.dew-hover::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 45%);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
}
.dew-hover:hover::before {
opacity: 1;
}
@keyframes floatLeaf {
0% { transform: translateY(0) rotate(0deg); opacity: 0.9; }
50% { transform: translateY(-20px) rotate(6deg); opacity: 0.7; }
100% { transform: translateY(0) rotate(-3deg); opacity: 0.9; }
}
@keyframes dew {
0% { transform: translateY(0); opacity: 0.8; }
50% { transform: translateY(-6px); opacity: 0.4; }
100% { transform: translateY(0); opacity: 0.8; }
}
@keyframes pulse {
0%, 100% { opacity: 0.35; }
50% { opacity: 0.65; }
}
/* Scrollbars */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: rgba(226, 244, 234, 0.6);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #4ea58a, #2a7056);
border-radius: 999px;
}
* {
scrollbar-width: thin;
scrollbar-color: #4ea58a rgba(226, 244, 234, 0.6);
}
/* Hero Carousel Styles */
.hero-carousel-container {
position: relative;
}
.carousel-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}
.carousel-slide.active {
opacity: 1;
visibility: visible;
z-index: 1;
}
.carousel-indicators {
display: flex;
gap: 0.5rem;
}
.carousel-indicator {
width: 32px;
height: 4px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.4);
border: none;
cursor: pointer;
transition: all 0.3s ease;
}
.carousel-indicator.active,
.carousel-indicator:hover {
background: rgba(255, 255, 255, 0.9);
}
.carousel-prev,
.carousel-next {
opacity: 0.8;
}
.carousel-prev:hover,
.carousel-next:hover {
opacity: 1;
}
</style>
<script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.5.1/build/highlight.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8PCJJV7YX5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8PCJJV7YX5');
</script>
</head>
<body class="bg-light">
<header class="sticky top-0 z-50 backdrop-blur-xl bg-white/80 border-b border-white/60 shadow-lg shadow-green-900/5">
<div class="max-w-6xl mx-auto px-4">
<div class="flex items-center justify-between py-4">
<div class="flex items-center">
<a href="https://kivibloom.site" class="flex items-center">
<div class="h-12 w-12 rounded-2xl bg-gradient-primary flex items-center justify-center shadow-lg shadow-green-900/20 border border-white/30 mr-4 overflow-hidden">
<img src="https://kivibloom.site/images/avatar.png" alt="Logo" class="w-full h-full object-contain p-1" onerror="this.style.display='none'; this.parentElement.innerHTML='<span class=\\'text-2xl text-white\\'>K</span>';">
</div>
<div class="flex flex-col">
<span class="text-xl md:text-2xl font-bold text-canopy">KiviBloom Insights</span>
<span class="text-xs md:text-sm text-gray-600/90 hidden md:inline-block tracking-wide">Explore thoughtful insights into Chinese history, and the complex culture. </span>
</div>
</a>
</div>
<!-- Desktop navigation -->
<nav class="hidden md:flex items-center space-x-8">
<a href="/" class="nav-link">
Home
</a>
<a href="/archives" class="nav-link">
Archives
</a>
<a href="/tags" class="nav-link">
tags
</a>
<a href="/post/Volunteer" class="nav-link">
Volunteer
</a>
<a href="/post/about" class="nav-link">
About
</a>
</nav>
<!-- Mobile menu button -->
<div class="md:hidden">
<button id="menu-toggle" class="text-canopy focus:outline-none rounded-full p-2 border border-canopy/15">
<i class="fa fa-bars text-xl"></i>
</button>
</div>
</div>
<!-- Mobile navigation menu -->
<div id="mobile-menu" class="md:hidden hidden pb-4">
<nav class="flex flex-col space-y-4 pt-2">
<a href="/" class="nav-link text-base">
Home
</a>
<a href="/archives" class="nav-link text-base">
Archives
</a>
<a href="/tags" class="nav-link text-base">
tags
</a>
<a href="/post/Volunteer" class="nav-link text-base">
Volunteer
</a>
<a href="/post/about" class="nav-link text-base">
About
</a>
<a href="#scenes" class="leaf-button text-center justify-center">
Enter the grove
</a>
</nav>
</div>
</div>
</header>
<script>
document.addEventListener('DOMContentLoaded', function() {
const menuToggle = document.getElementById('menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
if (menuToggle && mobileMenu) {
menuToggle.addEventListener('click', function() {
mobileMenu.classList.toggle('hidden');
// Toggle icon
const icon = menuToggle.querySelector('i');
if (mobileMenu.classList.contains('hidden')) {
icon.classList.remove('fa-times');
icon.classList.add('fa-bars');
} else {
icon.classList.remove('fa-bars');
icon.classList.add('fa-times');
}
});
}
});
</script>
<main>
<!-- Immersive forest hero -->
<section class="hero-forest mx-4 md:mx-auto max-w-6xl mt-10 mb-14 min-h-[420px] md:min-h-[520px] px-6 md:px-12 py-10 md:py-16">
<div class="parallax-layer trees" data-depth="0.15"></div>
<div class="parallax-layer mist" data-depth="0.05"></div>
<span class="floating-leaf" style="top:20%;left:12%;" data-depth="-0.1"></span>
<span class="floating-leaf" style="top:65%;left:75%;" data-depth="0.2"></span>
<span class="floating-leaf" style="top:40%;left:50%;" data-depth="-0.05"></span>
<div class="relative z-10 grid md:grid-cols-2 gap-10 items-center h-full">
<div class="text-white space-y-6" data-aos="fade-right">
<p class="uppercase tracking-[0.4em] text-xs md:text-sm text-white/70">
</p>
<h1 class="text-3xl md:text-5xl leading-tight font-semibold">
China Culture Odyssey
</h1>
<p class="text-base md:text-lg text-white/80 max-w-xl">
Layered greens, raw wood textures, and shimmering ripples craft an immersive “nature therapy” mood.
Every scroll sways the canopy, wakes the dew, and carries creek-side white noise to rest your senses.
</p>
<a href="https://kivibloom.site/archives" class="leaf-button shadow-lg shadow-green-900/20">
Explore secrets of China
</a>
</div>
<div class="relative" data-aos="fade-left">
<!-- Article carousel container -->
<div class="hero-carousel-container w-full aspect-[4/3] rounded-[42px] bg-white/10 border border-white/20 backdrop-blur-sm overflow-hidden shadow-2xl shadow-green-900/30 relative">
<div class="carousel-slide active" data-index="0">
<a href="https://kivibloom.site/post/why-cant-parchment-genuinely-last-thousands-of-years/" class="block w-full h-full relative group">
<img src="https://kivibloom.site/post-images/why-cant-parchment-genuinely-last-thousands-of-years.png"
alt="Why can't parchment genuinely last thousands of years?"
class="w-full h-full object-cover mix-blend-lighten opacity-90 group-hover:opacity-100 transition-opacity duration-500"
onerror="this.src='https://kivibloom.site/images/banner.png';">
<div class="absolute bottom-0 left-0 right-0 p-6 text-white z-10">
<p class="text-xs uppercase tracking-wider text-white/70 mb-2">Handpicked Stories · Featured</p>
<h3 class="text-xl md:text-2xl font-bold mb-2 line-clamp-2">Why can't parchment genuinely last thousands of years?</h3>
<p class="text-sm text-white/80 line-clamp-2 mb-2"><p>In what state would parchment have turned if it had truly been left in natural conditions for a thousand years?</p>
</p>
<div class="flex items-center gap-3 text-xs text-white/60">
<span>2026-04-22</span>
<span>·</span>
<span class="px-2 py-1 bg-white/20 rounded-full">forgery</span>
<span class="px-2 py-1 bg-white/20 rounded-full">culture</span>
</div>
</div>
</a>
</div>
<div class="carousel-slide " data-index="1">
<a href="https://kivibloom.site/post/europes-so-called-millennium-old-parchment-is-a-forgery/" class="block w-full h-full relative group">
<img src="https://kivibloom.site/post-images/europes-so-called-millennium-old-parchment-is-a-forgery.webp"
alt="Europe's So-called 'Millennium-old Parchment' is a orgery"
class="w-full h-full object-cover mix-blend-lighten opacity-90 group-hover:opacity-100 transition-opacity duration-500"
onerror="this.src='https://kivibloom.site/images/banner.png';">
<div class="absolute bottom-0 left-0 right-0 p-6 text-white z-10">
<p class="text-xs uppercase tracking-wider text-white/70 mb-2">Handpicked Stories · Featured</p>
<h3 class="text-xl md:text-2xl font-bold mb-2 line-clamp-2">Europe's So-called 'Millennium-old Parchment' is a orgery</h3>
<p class="text-sm text-white/80 line-clamp-2 mb-2"><p>Can parchment, or rather sheepskin, last a thousand years?</p>
<p>It can in Dunhuang or Lop Nur.</p>
</p>
<div class="flex items-center gap-3 text-xs text-white/60">
<span>2026-04-11</span>
<span>·</span>
<span class="px-2 py-1 bg-white/20 rounded-full">society</span>
<span class="px-2 py-1 bg-white/20 rounded-full">culture</span>
</div>
</div>
</a>
</div>
<div class="carousel-slide " data-index="2">
<a href="https://kivibloom.site/post/debunking-western-history-exposing-the-fraud-of-the-millennium-vellum-ii/" class="block w-full h-full relative group">
<img src="https://kivibloom.site/post-images/debunking-western-history-exposing-the-fraud-of-the-millennium-vellum-ii.webp"
alt="Debunking the West’s Millennia-Old Parchment Lie"
class="w-full h-full object-cover mix-blend-lighten opacity-90 group-hover:opacity-100 transition-opacity duration-500"
onerror="this.src='https://kivibloom.site/images/banner.png';">
<div class="absolute bottom-0 left-0 right-0 p-6 text-white z-10">
<p class="text-xs uppercase tracking-wider text-white/70 mb-2">Handpicked Stories · Featured</p>
<h3 class="text-xl md:text-2xl font-bold mb-2 line-clamp-2">Debunking the West’s Millennia-Old Parchment Lie</h3>
<p class="text-sm text-white/80 line-clamp-2 mb-2"><p>When Westerners proudly talk about their Millennium Vellum, they never mention how expensive the climate-controlled chambers used to preserve it are.</p>
</p>
<div class="flex items-center gap-3 text-xs text-white/60">
<span>2026-04-10</span>
<span>·</span>
<span class="px-2 py-1 bg-white/20 rounded-full">society</span>
<span class="px-2 py-1 bg-white/20 rounded-full">culture</span>
</div>
</div>
</a>
</div>
<!-- Carousel indicators -->
<div class="carousel-indicators absolute bottom-4 left-1/2 transform -translate-x-1/2 flex gap-2 z-20">
<button class="carousel-indicator active" data-index="0"></button>
<button class="carousel-indicator " data-index="1"></button>
<button class="carousel-indicator " data-index="2"></button>
</div>
<!-- Carousel controls -->
<button class="carousel-prev absolute left-4 top-1/2 transform -translate-y-1/2 z-20 w-10 h-10 rounded-full bg-white/20 hover:bg-white/40 backdrop-blur-sm flex items-center justify-center text-white transition-all">
<i class="fa fa-angle-left text-xl"></i>
</button>
<button class="carousel-next absolute right-4 top-1/2 transform -translate-y-1/2 z-20 w-10 h-10 rounded-full bg-white/20 hover:bg-white/40 backdrop-blur-sm flex items-center justify-center text-white transition-all">
<i class="fa fa-angle-right text-xl"></i>
</button>
</div>
</div>
</div>
</section>
<!-- Forest journal -->
<section class="py-12 md:py-16 mx-4 md:mx-auto max-w-6xl">
<div class="bg-white/85 backdrop-blur-sm rounded-[40px] border border-canopy/10 min-h-[400px] p-6 md:p-10 shadow-card">
<div class="flex items-center justify-between mb-10 flex-wrap gap-4">
<div>
<p class="uppercase text-xs tracking-[0.4em] text-canopy/60">Journal</p>
<h2 class="text-3xl md:text-4xl font-bold text-canopy">
Trending picks
</h2>
</div>
<a href="https://kivibloom.site/archives" class="leaf-button text-xs">
Browse the full archive
</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<article class="article-card overflow-hidden h-full flex flex-col border border-canopy/10" data-aos="fade-up" data-aos-delay="0">
<div class="h-48 overflow-hidden relative group">
<img src="https://kivibloom.site/post-images/why-cant-parchment-genuinely-last-thousands-of-years.png"
alt="Why can't parchment genuinely last thousands of years?"
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110"
onerror="this.style.display='none';">
<div class="absolute inset-0 bg-gradient-to-t from-canopy/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500"></div>
</div>
<div class="p-6 flex flex-col flex-grow">
<div class="flex items-center mb-3 flex-wrap">
<a href="https://kivibloom.site/tag/forgery/" class="tag text-xs font-medium px-3 py-1 rounded-full bg-primary/10 text-primary mr-2 mb-2">
forgery
</a>
<a href="https://kivibloom.site/tag/culture/" class="tag text-xs font-medium px-3 py-1 rounded-full bg-secondary/10 text-canopy mr-2 mb-2">
culture
</a>
<a href="https://kivibloom.site/tag/history/" class="tag text-xs font-medium px-3 py-1 rounded-full bg-tertiary text-canopy mr-2 mb-2">
history
</a>
<span class="text-gray-500 text-sm ml-auto">2026-04-22</span>
</div>
<h2 class="text-xl md:text-2xl font-bold mb-3 text-canopy hover:text-primary transition-colors">
<a href="https://kivibloom.site/post/why-cant-parchment-genuinely-last-thousands-of-years/">Why can't parchment genuinely last thousands of years?</a>
</h2>
<p class="text-gray-600 mb-4 line-clamp-3 flex-grow">
<p>In what state would parchment have turned if it had truly been left in natural conditions for a thousand years?</p>
</p>
<div class="flex items-center justify-between mt-auto">
<a href="https://kivibloom.site/post/why-cant-parchment-genuinely-last-thousands-of-years/" class="text-canopy hover:text-primary font-medium flex items-center transition-colors">
Read more
<i class="fa fa-angle-right ml-2"></i>
</a>
</div>
</div>
</article>
<article class="article-card overflow-hidden h-full flex flex-col border border-canopy/10" data-aos="fade-up" data-aos-delay="120">
<div class="h-48 overflow-hidden relative group">
<img src="https://kivibloom.site/post-images/europes-so-called-millennium-old-parchment-is-a-forgery.webp"
alt="Europe's So-called 'Millennium-old Parchment' is a orgery"
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110"
onerror="this.style.display='none';">
<div class="absolute inset-0 bg-gradient-to-t from-canopy/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500"></div>
</div>
<div class="p-6 flex flex-col flex-grow">
<div class="flex items-center mb-3 flex-wrap">
<a href="https://kivibloom.site/tag/society/" class="tag text-xs font-medium px-3 py-1 rounded-full bg-primary/10 text-primary mr-2 mb-2">
society
</a>
<a href="https://kivibloom.site/tag/culture/" class="tag text-xs font-medium px-3 py-1 rounded-full bg-secondary/10 text-canopy mr-2 mb-2">
culture
</a>
<a href="https://kivibloom.site/tag/history/" class="tag text-xs font-medium px-3 py-1 rounded-full bg-tertiary text-canopy mr-2 mb-2">
history
</a>
<span class="text-gray-500 text-sm ml-auto">2026-04-11</span>
</div>
<h2 class="text-xl md:text-2xl font-bold mb-3 text-canopy hover:text-primary transition-colors">
<a href="https://kivibloom.site/post/europes-so-called-millennium-old-parchment-is-a-forgery/">Europe's So-called 'Millennium-old Parchment' is a orgery</a>
</h2>
<p class="text-gray-600 mb-4 line-clamp-3 flex-grow">
<p>Can parchment, or rather sheepskin, last a thousand years?</p>
<p>It can in Dunhuang or Lop Nur.</p>
</p>
<div class="flex items-center justify-between mt-auto">
<a href="https://kivibloom.site/post/europes-so-called-millennium-old-parchment-is-a-forgery/" class="text-canopy hover:text-primary font-medium flex items-center transition-colors">
Read more
<i class="fa fa-angle-right ml-2"></i>
</a>
</div>
</div>
</article>
<article class="article-card overflow-hidden h-full flex flex-col border border-canopy/10" data-aos="fade-up" data-aos-delay="240">
<div class="h-48 overflow-hidden relative group">
<img src="https://kivibloom.site/post-images/debunking-western-history-exposing-the-fraud-of-the-millennium-vellum-ii.webp"
alt="Debunking the West’s Millennia-Old Parchment Lie"
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110"
onerror="this.style.display='none';">
<div class="absolute inset-0 bg-gradient-to-t from-canopy/60 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500"></div>
</div>
<div class="p-6 flex flex-col flex-grow">
<div class="flex items-center mb-3 flex-wrap">
<a href="https://kivibloom.site/tag/society/" class="tag text-xs font-medium px-3 py-1 rounded-full bg-primary/10 text-primary mr-2 mb-2">
society
</a>
<a href="https://kivibloom.site/tag/culture/" class="tag text-xs font-medium px-3 py-1 rounded-full bg-secondary/10 text-canopy mr-2 mb-2">
culture
</a>
<a href="https://kivibloom.site/tag/history/" class="tag text-xs font-medium px-3 py-1 rounded-full bg-tertiary text-canopy mr-2 mb-2">
history
</a>
<span class="text-gray-500 text-sm ml-auto">2026-04-10</span>
</div>
<h2 class="text-xl md:text-2xl font-bold mb-3 text-canopy hover:text-primary transition-colors">
<a href="https://kivibloom.site/post/debunking-western-history-exposing-the-fraud-of-the-millennium-vellum-ii/">Debunking the West’s Millennia-Old Parchment Lie</a>
</h2>
<p class="text-gray-600 mb-4 line-clamp-3 flex-grow">
<p>When Westerners proudly talk about their Millennium Vellum, they never mention how expensive the climate-controlled chambers used to preserve it are.</p>
</p>
<div class="flex items-center justify-between mt-auto">
<a href="https://kivibloom.site/post/debunking-western-history-exposing-the-fraud-of-the-millennium-vellum-ii/" class="text-canopy hover:text-primary font-medium flex items-center transition-colors">
Read more
<i class="fa fa-angle-right ml-2"></i>
</a>
</div>
</div>
</article>
</div>
</div>
</section>
</main>
<!-- Audio test panel (dev only) -->
<div id="audio-test" style="display: none; position: fixed; bottom: 20px; right: 20px; background: rgba(0,0,0,0.8); color: white; padding: 10px; border-radius: 8px; z-index: 9999;">
<div style="font-size: 12px; margin-bottom: 8px;">Forest audio debug</div>
<button onclick="console.log('Audio paths:', {water: 'https://kivibloom.site' + '/audio/water.wav', birds: 'https://kivibloom.site' + '/audio/birds.wav', wind: 'https://kivibloom.site' + '/audio/wind.wav'})" style="font-size: 11px; margin-right: 5px;">Show paths</button>
<button onclick="document.getElementById('audio-test').style.display='none'" style="font-size: 11px;">Hide panel</button>
</div>
<script>
// Toggle audio test panel (dev helper)
if (window.location.search.includes('debug=audio')) {
document.getElementById('audio-test').style.display = 'block';
}
</script>
<footer class="mt-16 bg-gradient-to-b from-mist to-dew text-canopy border-t border-white/40">
<div class="max-w-6xl mx-auto px-4 py-12">
<div class="grid grid-cols-1 md:grid-cols-3 gap-10">
<div>
<p class="uppercase text-xs tracking-[0.4em] text-canopy/60 mb-3">About</p>
<h3 class="text-2xl font-bold mb-3">KiviBloom Insights</h3>
<p class="text-gray-600 leading-relaxed mb-4">Explore thoughtful insights into Chinese history, and the complex culture. </p>
<div class="flex space-x-4">
</div>
</div>
<div>
<p class="uppercase text-xs tracking-[0.4em] text-canopy/60 mb-3">Navigate</p>
<ul class="space-y-3 text-gray-600">
<li>
<a href="/" class="nav-link text-base">Home</a>
</li>
<li>
<a href="/archives" class="nav-link text-base">Archives</a>
</li>
<li>
<a href="/tags" class="nav-link text-base">tags</a>
</li>
<li>
<a href="/post/Volunteer" class="nav-link text-base">Volunteer</a>
</li>
<li>
<a href="/post/about" class="nav-link text-base">About</a>
</li>
</ul>
</div>
<div>
<p class="uppercase text-xs tracking-[0.4em] text-canopy/60 mb-3">Tags</p>
<div class="flex flex-wrap gap-2">
<a href="https://kivibloom.site/tag/forgery/" class="tag px-4 py-2 text-sm">forgery</a>
<a href="https://kivibloom.site/tag/culture/" class="tag px-4 py-2 text-sm">culture</a>
<a href="https://kivibloom.site/tag/history/" class="tag px-4 py-2 text-sm">history</a>
<a href="https://kivibloom.site/tag/society/" class="tag px-4 py-2 text-sm">society</a>
<a href="https://kivibloom.site/tag/costume/" class="tag px-4 py-2 text-sm">costume</a>
</div>
</div>
</div>
<div class="border-t border-canopy/10 mt-10 pt-6 text-sm text-gray-600 text-center">
<p class="mb-1">Powered by <a href="https://github.com/getgridea/gridea" target="_blank">Gridea</a></p>
<p>© 2026 KiviBloom Insights · All Rights Reserved.</p>
</div>
</div>