-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
637 lines (592 loc) · 34.3 KB
/
landing.html
File metadata and controls
637 lines (592 loc) · 34.3 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="theme-color" content="#c084fc">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="무지개나라">
<link rel="manifest" href="./manifest.json">
<link rel="apple-touch-icon" href="./icon-192.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>무지개나라 — 무지개다리 건넌 반려동물의 공간</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;400;600;700&family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans KR', sans-serif; background: #fdfcff; color: #1e1b2e; overflow-x: hidden; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes shimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes drift { 0%{transform:translateX(0) translateY(0)} 33%{transform:translateX(30px) translateY(-20px)} 66%{transform:translateX(-20px) translateY(10px)} 100%{transform:translateX(0) translateY(0)} }
@keyframes pulse-soft { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:.8;transform:scale(1.1)} }
@keyframes rainbow-move { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.scroll-reveal { opacity:0; transform:translateY(50px); transition:opacity .8s ease,transform .8s ease; }
.scroll-reveal.visible { opacity:1; transform:translateY(0); }
/* NAV */
nav {
position: fixed; top:0; left:0; right:0; z-index:100;
padding: 18px 40px;
display: flex; justify-content: space-between; align-items: center;
background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo {
font-family: 'Noto Serif KR', serif; font-size: 1.4rem; font-weight: 700;
background: linear-gradient(135deg,#ec4899,#8b5cf6,#3b82f6);
-webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.nav-links { display:flex; gap:28px; align-items:center; }
.nav-links a { text-decoration:none; color:#6b7280; font-size:.9rem; font-weight:500; transition:color .2s; }
.nav-links a:hover { color:#8b5cf6; }
.nav-cta {
background: linear-gradient(135deg,#ec4899,#8b5cf6);
color: white !important; padding: 10px 22px; border-radius: 100px; font-weight:700 !important;
transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform:scale(1.05); box-shadow:0 8px 24px rgba(139,92,246,.3); }
/* HERO */
.hero {
min-height: 100vh; display:flex; flex-direction:column; align-items:center;
justify-content:center; text-align:center; padding:120px 24px 80px;
position:relative; overflow:hidden;
background: linear-gradient(180deg,#f0f9ff 0%,#fdf4ff 50%,#fff1f2 100%);
}
.blob { position:absolute; border-radius:50%; filter:blur(80px); opacity:.35; }
.blob-1 { width:500px;height:500px; background:#c4b5fd; top:-100px;left:-150px; animation:drift 15s ease-in-out infinite; }
.blob-2 { width:400px;height:400px; background:#fbcfe8; top:100px;right:-100px; animation:drift 18s ease-in-out infinite reverse; }
.blob-3 { width:350px;height:350px; background:#bae6fd; bottom:50px;left:100px; animation:drift 12s ease-in-out 3s infinite; }
.rainbow-arch { width:260px;height:130px;overflow:hidden;margin-bottom:40px;animation:float 4s ease-in-out infinite; }
.rainbow-arch-inner {
width:260px;height:260px;border-radius:50%;border:13px solid #f87171;
box-shadow:inset 0 0 0 13px #fb923c,inset 0 0 0 26px #fbbf24,inset 0 0 0 39px #4ade80,inset 0 0 0 52px #60a5fa,inset 0 0 0 65px #818cf8,inset 0 0 0 78px #c084fc;
filter:drop-shadow(0 8px 32px rgba(139,92,246,.3));
}
.hero-eyebrow {
font-size:.85rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;margin-bottom:20px;
background:linear-gradient(135deg,#ec4899,#8b5cf6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
animation: fadeUp .9s ease .1s both;
}
.hero-title {
font-family:'Noto Serif KR',serif; font-size:clamp(2.6rem,6vw,4.8rem); font-weight:700;
line-height:1.2; margin-bottom:24px; animation: fadeUp .9s ease .2s both;
}
.hero-title .highlight {
background:linear-gradient(135deg,#ec4899 0%,#8b5cf6 50%,#3b82f6 100%); background-size:200% auto;
-webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
animation:shimmer 4s linear infinite;
}
.hero-sub { font-size:1.1rem;color:#6b7280;line-height:1.9;max-width:520px;margin-bottom:48px;font-weight:300; animation: fadeUp .9s ease .3s both; }
.hero-sub strong { color:#1e1b2e;font-weight:600; }
.hero-btns { display:flex;gap:16px;flex-wrap:wrap;justify-content:center; animation: fadeUp .9s ease .4s both; }
.btn-primary {
padding:18px 40px; background:linear-gradient(135deg,#ec4899,#8b5cf6); color:white;
font-size:1rem;font-weight:700;border:none;border-radius:100px;cursor:pointer;text-decoration:none;
display:inline-flex;align-items:center;gap:8px; transition:transform .2s,box-shadow .2s;
box-shadow:0 8px 32px rgba(139,92,246,.3);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 16px 48px rgba(139,92,246,.4); }
.btn-secondary {
padding:18px 40px;background:white;color:#1e1b2e;font-size:1rem;font-weight:600;
border:2px solid #e5e7eb;border-radius:100px;cursor:pointer;text-decoration:none;
display:inline-flex;align-items:center;gap:8px;transition:transform .2s,border-color .2s;
}
.btn-secondary:hover { transform:translateY(-3px);border-color:#c4b5fd; }
.hero-stats {
display:flex;gap:48px;margin-top:60px;padding-top:40px;
border-top:1px solid rgba(0,0,0,.06); animation: fadeUp .9s ease .5s both;
}
.stat { text-align:center; }
.stat-num {
font-family:'Noto Serif KR',serif;font-size:2rem;font-weight:700;
background:linear-gradient(135deg,#ec4899,#8b5cf6);
-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.stat-label { font-size:.8rem;color:#9ca3af;margin-top:4px; }
.rainbow-divider { height:4px;background:linear-gradient(90deg,#f87171,#fb923c,#fbbf24,#4ade80,#60a5fa,#818cf8,#c084fc);background-size:200% auto;animation:rainbow-move 3s linear infinite; }
/* STORY */
.story-section { padding:100px 24px;background:linear-gradient(180deg,#fffbeb,#fff7ed); }
.story-inner { max-width:820px;margin:0 auto; }
.section-tag { display:inline-block;padding:6px 16px;border-radius:100px;font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:20px; }
.section-tag.amber { background:rgba(245,158,11,.1);color:#d97706; }
.section-tag.purple { background:rgba(139,92,246,.1);color:#8b5cf6; }
.section-tag.pink { background:rgba(236,72,153,.1);color:#db2777; }
.section-title { font-family:'Noto Serif KR',serif;font-size:clamp(1.8rem,4vw,2.8rem);font-weight:700;line-height:1.3;margin-bottom:20px; }
.story-quote {
background:white;border-left:4px solid #fbbf24;border-radius:0 20px 20px 0;
padding:28px 32px;margin:40px 0;box-shadow:0 4px 24px rgba(0,0,0,.06);
}
.story-quote p { font-family:'Noto Serif KR',serif;font-size:1.15rem;line-height:1.9;color:#92400e;font-style:italic; }
.story-body { font-size:1.05rem;line-height:2;color:#4b5563;font-weight:300; }
.story-body strong { color:#1e1b2e;font-weight:600; }
.osuni-card { display:flex;align-items:center;gap:20px;background:white;border-radius:24px;padding:24px;margin-top:40px;box-shadow:0 4px 24px rgba(0,0,0,.06); }
.osuni-avatar { width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,#fde68a,#fca5a5);display:flex;align-items:center;justify-content:center;font-size:2rem;flex-shrink:0; }
/* 오순이 영상 */
.video-section { padding:100px 24px;background:white; }
.video-inner { max-width:1000px;margin:0 auto; }
.video-header { text-align:center;margin-bottom:56px; }
.video-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px; }
.video-card {
border-radius:24px;overflow:hidden;background:#f9fafb;
box-shadow:0 4px 24px rgba(0,0,0,.08);transition:transform .3s,box-shadow .3s;
}
.video-card:hover { transform:translateY(-8px);box-shadow:0 20px 60px rgba(0,0,0,.12); }
.video-card iframe { width:100%;aspect-ratio:16/9;display:block;border:none; }
.video-card-info { padding:20px; }
.video-card-title { font-weight:700;font-size:.95rem;color:#1e1b2e;margin-bottom:6px; }
.video-card-sub { font-size:.82rem;color:#9ca3af; }
/* 블로그 */
.blog-section { padding:80px 24px;background:linear-gradient(180deg,#f0f9ff,#fdf4ff); }
.blog-inner { max-width:800px;margin:0 auto; }
.blog-header { text-align:center;margin-bottom:48px; }
.blog-cards { display:flex;flex-direction:column;gap:20px; }
.blog-card {
display:flex;align-items:center;gap:24px;background:white;border-radius:24px;
padding:28px;box-shadow:0 4px 24px rgba(0,0,0,.06);text-decoration:none;
transition:transform .3s,box-shadow .3s;border:2px solid transparent;
}
.blog-card:hover { transform:translateY(-4px);box-shadow:0 16px 48px rgba(0,0,0,.1);border-color:#e9d5ff; }
.blog-icon { width:60px;height:60px;border-radius:18px;background:linear-gradient(135deg,#fde68a,#fca5a5);display:flex;align-items:center;justify-content:center;font-size:1.8rem;flex-shrink:0; }
.blog-info { flex:1; }
.blog-title { font-weight:700;font-size:1rem;color:#1e1b2e;margin-bottom:6px;line-height:1.4; }
.blog-meta { font-size:.82rem;color:#9ca3af; }
.blog-arrow { font-size:1.4rem;color:#c4b5fd;flex-shrink:0; }
/* FEATURES */
.features-section { padding:100px 24px;background:#fdfcff; }
.features-inner { max-width:1000px;margin:0 auto; }
.features-header { text-align:center;margin-bottom:64px; }
.features-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px; }
.feature-card {
background:linear-gradient(135deg,#fdf4ff,#f0f9ff);border-radius:28px;padding:36px 32px;
border:1px solid rgba(0,0,0,.05);transition:transform .3s,box-shadow .3s;position:relative;overflow:hidden;
}
.feature-card::before { content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#ec4899,#8b5cf6,#3b82f6); }
.feature-card:hover { transform:translateY(-8px);box-shadow:0 24px 64px rgba(0,0,0,.1); }
.feature-icon { font-size:2.5rem;margin-bottom:20px;display:block; }
.feature-title { font-size:1.1rem;font-weight:700;margin-bottom:12px; }
.feature-desc { font-size:.9rem;color:#6b7280;line-height:1.7;font-weight:300; }
/* MEMORIES */
.memo-section { padding:100px 24px;background:linear-gradient(180deg,#f0f9ff,#fdf4ff); }
.memo-inner { max-width:900px;margin:0 auto; }
.memo-header { text-align:center;margin-bottom:64px; }
.memo-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px; }
.memo-card { background:white;border-radius:24px;padding:28px;box-shadow:0 4px 24px rgba(0,0,0,.06);transition:transform .3s; }
.memo-card:hover { transform:translateY(-4px); }
.memo-pet { display:flex;align-items:center;gap:12px;margin-bottom:16px; }
.memo-pet-avatar { width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,#fce7f3,#e0e7ff);display:flex;align-items:center;justify-content:center;font-size:1.5rem; }
.memo-pet-name { font-weight:700;font-size:.95rem; }
.memo-pet-date { color:#9ca3af;font-size:.8rem;margin-top:2px; }
.memo-text { color:#6b7280;font-size:.9rem;line-height:1.7;font-weight:300;font-style:italic; }
.memo-rainbow { height:3px;border-radius:100px;background:linear-gradient(90deg,#f87171,#fbbf24,#4ade80,#60a5fa,#c084fc);margin-top:16px; }
/* DONATION */
.donation-section {
padding:100px 24px;
background:linear-gradient(135deg,#1e1b2e 0%,#2d1b4e 50%,#1a2a4e 100%);
position:relative;overflow:hidden;text-align:center;
}
.donation-inner { max-width:720px;margin:0 auto;position:relative;z-index:2; }
.donation-star { position:absolute;border-radius:50%;background:white;animation:pulse-soft 3s ease-in-out infinite; }
.donation-title { font-family:'Noto Serif KR',serif;font-size:clamp(2rem,4vw,3rem);font-weight:700;color:white;margin-bottom:24px;line-height:1.3; }
.donation-sub { font-size:1rem;color:rgba(255,255,255,.7);line-height:1.9;margin-bottom:48px;font-weight:300; }
.donation-use-list { display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-bottom:48px;text-align:left; }
.donation-use-item { background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:20px;backdrop-filter:blur(10px); }
.donation-use-item .icon { font-size:1.5rem;margin-bottom:10px;display:block; }
.donation-use-item .title { color:white;font-weight:600;font-size:.9rem;margin-bottom:6px; }
.donation-use-item .desc { color:rgba(255,255,255,.55);font-size:.82rem;line-height:1.5;font-weight:300; }
.donation-btn {
padding:20px 56px;background:linear-gradient(135deg,#ec4899,#8b5cf6,#3b82f6);background-size:200% auto;
color:white;font-size:1.1rem;font-weight:700;border:none;border-radius:100px;cursor:pointer;
text-decoration:none;display:inline-flex;align-items:center;gap:10px;
transition:transform .2s,box-shadow .2s;box-shadow:0 8px 32px rgba(139,92,246,.5);
animation:shimmer 3s linear infinite;
}
.donation-btn:hover { transform:translateY(-4px) scale(1.02);box-shadow:0 16px 48px rgba(139,92,246,.6); }
/* FOOTER */
footer { background:#0f0d1a;padding:60px 24px;text-align:center; }
.footer-rainbow { height:2px;background:linear-gradient(90deg,#f87171,#fbbf24,#4ade80,#60a5fa,#c084fc);margin-bottom:40px; }
.footer-logo { font-family:'Noto Serif KR',serif;font-size:1.6rem;font-weight:700;background:linear-gradient(135deg,#ec4899,#8b5cf6,#3b82f6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:12px; }
footer p { color:rgba(255,255,255,.3);font-size:.85rem;margin-bottom:6px; }
@media(max-width:768px){
nav{padding:16px 20px;}
.nav-links{display:none;}
.hero-stats{gap:24px;flex-wrap:wrap;justify-content:center;}
.donation-use-list{grid-template-columns:1fr;}
.hero{padding:100px 20px 60px;}
}
/* ── 후기 섹션 ── */
#reviews { background: linear-gradient(180deg, #0f0d1a 0%, #1a0a2e 100%); padding: 80px 24px; }
#reviews .section-label { color: #c084fc; font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; text-align: center; margin-bottom: 12px; }
#reviews h2 { font-family: 'Noto Serif KR', serif; font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 900; text-align: center; background: linear-gradient(135deg, #f9a8d4, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
#reviews .sub { color: rgba(255,255,255,.4); text-align: center; font-size: .9rem; margin-bottom: 50px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.review-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 24px; transition: transform .3s, border-color .3s; }
.review-card:hover { transform: translateY(-4px); border-color: rgba(192,132,252,.3); }
.review-card .stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card .text { color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.9; margin-bottom: 18px; }
.review-card .author { display: flex; align-items: center; gap: 10px; }
.review-card .avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #c084fc, #60a5fa); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 900; color: white; flex-shrink: 0; }
.review-card .author-info { font-size: .82rem; }
.review-card .author-name { color: rgba(255,255,255,.7); font-weight: 700; }
.review-card .author-pet { color: rgba(192,132,252,.6); font-size: .75rem; margin-top: 1px; }
.reviews-loading { text-align: center; color: rgba(255,255,255,.3); padding: 40px; }
.reviews-empty { text-align: center; color: rgba(255,255,255,.2); padding: 60px 24px; }
.reviews-cta { text-align: center; margin-top: 40px; }
.reviews-cta a { display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, #7c3aed, #ec4899); color: white; font-weight: 700; border-radius: 50px; text-decoration: none; font-size: .9rem; transition: transform .2s, opacity .2s; }
.reviews-cta a:hover { transform: scale(1.04); opacity: .9; }
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="nav-logo">무지개나라 🌈</div>
<div class="nav-links">
<a href="#story">오순이 이야기</a>
<a href="#videos">영상</a>
<a href="#features">기능</a>
<a href="#donation">후원하기</a>
<a href="./index.html" class="nav-cta">서비스 시작하기 →</a>
</div>
</nav>
<!-- HERO -->
<section class="hero">
<div class="blob blob-1"></div>
<div class="blob blob-2"></div>
<div class="blob blob-3"></div>
<div class="rainbow-arch"><div class="rainbow-arch-inner"></div></div>
<p class="hero-eyebrow">Rainbow Country • 무지개나라</p>
<h1 class="hero-title">
우리 아이는 지금<br>
<span class="highlight">무지개나라에서</span><br>
뛰어놀고 있어요
</h1>
<p class="hero-sub">
무지개다리를 건넌 반려동물을 위한 <strong>온라인 추모 공간</strong>.<br>
혼자 슬퍼하지 말고, 함께 기억해요.
</p>
<div class="hero-btns">
<a href="./index.html" class="btn-primary">🌈 추모공간 만들기</a>
<a href="#story" class="btn-secondary">🐔 오순이 이야기</a>
</div>
<div class="hero-stats">
<div class="stat"><div class="stat-num">89+</div><div class="stat-label">추모공간</div></div>
<div class="stat"><div class="stat-num">127+</div><div class="stat-label">함께하는 분들</div></div>
<div class="stat"><div class="stat-num">342</div><div class="stat-label">오늘 방문자</div></div>
</div>
</section>
<div class="rainbow-divider"></div>
<!-- STORY -->
<section class="story-section" id="story">
<div class="story-inner">
<div class="scroll-reveal">
<span class="section-tag amber">만든 이야기</span>
<h2 class="section-title">오순이가 떠난 날,<br>무지개나라가 시작됐어요</h2>
</div>
<div class="story-quote scroll-reveal">
<p>"닭이잖아요. 주변에 말하기도 어렵고,<br>혼자 슬퍼하는 게 외로웠어요.<br>누군가 함께 기억해줬으면 했는데."</p>
</div>
<p class="story-body scroll-reveal">
안녕하세요, 무지개나라를 만든 <strong>수민</strong>이에요.<br><br>
저는 <strong>오순이</strong>라는 닭을 10년간 키웠어요. 2024년 1월, 오순이가 무지개다리를 건넜을 때
저는 제대로 슬퍼할 곳이 없었어요. 반려동물을 잃은 슬픔은 사람마다 다르지만,
그 아픔은 똑같이 깊어요.<br><br>
그래서 만들었어요. <strong>다 같이 추억하고, 마지막을 기록할 수 있는 공간</strong>을.
어떤 동물이든, 어떤 이별이든 — 소중한 인연은 기억받을 자격이 있어요.
</p>
<div class="osuni-card scroll-reveal">
<div class="osuni-avatar">🐔</div>
<div>
<p style="font-weight:700;color:#92400e;">오순이 (2014 — 2024)</p>
<p style="color:#9ca3af;font-size:.85rem;margin-top:4px;">수민이의 첫 번째 무지개나라 친구 · 10년을 함께한 닭</p>
</div>
</div>
</div>
</section>
<div class="rainbow-divider"></div>
<!-- 오순이 영상 -->
<section class="video-section" id="videos">
<div class="video-inner">
<div class="video-header scroll-reveal">
<span class="section-tag purple">오순이 영상</span>
<h2 class="section-title" style="margin-top:12px;">오순이의 기억들 🎬</h2>
<p style="color:#6b7280;margin-top:12px;font-weight:300;">수민이가 직접 찍은 오순이의 일상들이에요</p>
</div>
<div class="video-grid">
<div class="video-card scroll-reveal">
<iframe src="https://www.youtube.com/embed/ugZzjKdKkrE" allowfullscreen loading="lazy"></iframe>
<div class="video-card-info">
<div class="video-card-title">Ep.3 Ossun's VLOG 🍎</div>
<div class="video-card-sub">🐔 오순이는 사과를 몇 분 안에 먹을까?</div>
</div>
</div>
<div class="video-card scroll-reveal">
<iframe src="https://www.youtube.com/embed/Xfu2D8YOHmo" allowfullscreen loading="lazy"></iframe>
<div class="video-card-info">
<div class="video-card-title">오순이 자기소개 VLOG</div>
<div class="video-card-sub">🐔 오순이 | 오골계 VLOG</div>
</div>
</div>
<div class="video-card scroll-reveal">
<iframe src="https://www.youtube.com/embed/Q6rD90NPuA4" allowfullscreen loading="lazy"></iframe>
<div class="video-card-info">
<div class="video-card-title">Ossun's vlog_1 💜 오골계 산책</div>
<div class="video-card-sub">🐔 오순이 브이로그</div>
</div>
</div>
<div class="video-card scroll-reveal">
<iframe src="https://www.youtube.com/embed/7OSsYaMjZWY" allowfullscreen loading="lazy"></iframe>
<div class="video-card-info">
<div class="video-card-title">오순이에게 핸드폰을 가까이 댄다면?</div>
<div class="video-card-sub">🐔 When I put my phone close to Ossun</div>
</div>
</div>
</div>
</div>
</section>
<!-- 블로그 -->
<section class="blog-section">
<div class="blog-inner">
<div class="blog-header scroll-reveal">
<span class="section-tag amber">오순이 블로그</span>
<h2 class="section-title" style="margin-top:12px;">오순이에 대한 기록들 📝</h2>
<p style="color:#6b7280;margin-top:12px;font-weight:300;">수민이가 직접 쓴 오순이 이야기</p>
</div>
<div class="blog-cards">
<a href="https://blog.naver.com/sumin8756/223181501819" target="_blank" class="blog-card scroll-reveal">
<div class="blog-icon">🐔</div>
<div class="blog-info">
<div class="blog-title">오순이 이야기 — 네이버 블로그</div>
<div class="blog-meta">blog.naver.com/sumin8756 · 수민이의 기록</div>
</div>
<div class="blog-arrow">→</div>
</a>
<a href="https://blog.naver.com/sumin8756/222637865556" target="_blank" class="blog-card scroll-reveal">
<div class="blog-icon">🌈</div>
<div class="blog-info">
<div class="blog-title">오순이와 함께한 날들 — 네이버 블로그</div>
<div class="blog-meta">blog.naver.com/sumin8756 · 수민이의 기록</div>
</div>
<div class="blog-arrow">→</div>
</a>
</div>
</div>
</section>
<div class="rainbow-divider"></div>
<!-- FEATURES -->
<section class="features-section" id="features">
<div class="features-inner">
<div class="features-header scroll-reveal">
<span class="section-tag purple">기능 소개</span>
<h2 class="section-title" style="margin-top:12px;">우리 아이만의 공간,<br>이렇게 만들어요</h2>
</div>
<div class="features-grid">
<div class="feature-card scroll-reveal">
<span class="feature-icon">🌈</span>
<div class="feature-title">추모공간 만들기</div>
<p class="feature-desc">이름, 사진, 함께한 시간, 전하고 싶은 말로 세상에 하나뿐인 추모공간을 만들어요. 고유 링크로 언제든 방문할 수 있어요.</p>
</div>
<div class="feature-card scroll-reveal">
<span class="feature-icon">✉️</span>
<div class="feature-title">추모글 남기기</div>
<p class="feature-desc">가족, 친구들이 직접 추모글을 남길 수 있어요. 혼자가 아니라 함께 기억하는 공간이에요.</p>
</div>
<div class="feature-card scroll-reveal">
<span class="feature-icon">🌸</span>
<div class="feature-title">부조금 전달</div>
<p class="feature-desc">카카오페이, 토스, 계좌이체로 마음을 전해요. 부조금은 100% 가족에게 전달돼요.</p>
</div>
<div class="feature-card scroll-reveal">
<span class="feature-icon">📸</span>
<div class="feature-title">앨범 & 추억</div>
<p class="feature-desc">소중한 사진들을 올리고, 함께한 추억을 영원히 기록해요.</p>
</div>
<div class="feature-card scroll-reveal">
<span class="feature-icon">📤</span>
<div class="feature-title">SNS 공유</div>
<p class="feature-desc">인스타그램, 카카오톡으로 추모공간을 공유하고 더 많은 분들이 함께 기억할 수 있어요.</p>
</div>
<div class="feature-card scroll-reveal">
<span class="feature-icon">💜</span>
<div class="feature-title">어떤 동물이든</div>
<p class="feature-desc">강아지, 고양이, 닭, 토끼, 물고기 — 어떤 반려동물이든 소중한 인연은 기억받을 자격이 있어요.</p>
</div>
</div>
</div>
</section>
<!-- MEMORIES -->
<section class="memo-section" id="memories">
<div class="memo-inner">
<div class="memo-header scroll-reveal">
<span class="section-tag pink">추모공간 미리보기</span>
<h2 class="section-title" style="margin-top:12px;">지금 이 순간에도<br>누군가 기억되고 있어요</h2>
</div>
<div class="memo-grid">
<div class="memo-card scroll-reveal">
<div class="memo-pet">
<div class="memo-pet-avatar">🐶</div>
<div><div class="memo-pet-name">뭉치</div><div class="memo-pet-date">2012 — 2024</div></div>
</div>
<p class="memo-text">"12년 동안 우리 가족의 햇살이었어. 어딜 가든 꼬리 흔들며 반겨줬던 너가 너무 그리워."</p>
<div class="memo-rainbow"></div>
</div>
<div class="memo-card scroll-reveal">
<div class="memo-pet">
<div class="memo-pet-avatar">🐱</div>
<div><div class="memo-pet-name">코코</div><div class="memo-pet-date">2015 — 2025</div></div>
</div>
<p class="memo-text">"새벽마다 이불 위에 올라와 골골거리던 목소리가 아직도 들리는 것 같아."</p>
<div class="memo-rainbow"></div>
</div>
<div class="memo-card scroll-reveal">
<div class="memo-pet">
<div class="memo-pet-avatar">🐔</div>
<div><div class="memo-pet-name">오순이</div><div class="memo-pet-date">2014 — 2024</div></div>
</div>
<p class="memo-text">"10년 동안 매일 아침 인사해줬던 너. 무지개나라에서도 나를 기억해줘."</p>
<div class="memo-rainbow"></div>
</div>
</div>
</div>
</section>
<div class="rainbow-divider"></div>
<!-- DONATION -->
<section class="donation-section" id="donation">
<div class="donation-star" style="width:4px;height:4px;top:15%;left:10%;animation-delay:0s;"></div>
<div class="donation-star" style="width:3px;height:3px;top:30%;right:15%;animation-delay:1s;"></div>
<div class="donation-star" style="width:5px;height:5px;top:60%;left:20%;animation-delay:2s;"></div>
<div class="donation-star" style="width:3px;height:3px;bottom:20%;right:25%;animation-delay:.5s;"></div>
<div class="donation-star" style="width:4px;height:4px;top:80%;left:60%;animation-delay:1.5s;"></div>
<div class="donation-inner">
<div class="scroll-reveal">
<p style="font-size:.85rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:#a78bfa;margin-bottom:20px;">후원하기</p>
<h2 class="donation-title">무지개나라를 후원하면<br>이런 일이 생겨요 ✨</h2>
<p class="donation-sub">
여러분의 후원으로 무지개나라가 더 좋은 서비스로 성장해요.<br>
더 많은 반려동물이 제대로 기억받을 수 있도록 도와주세요.
</p>
</div>
<div class="donation-use-list scroll-reveal">
<div class="donation-use-item">
<span class="icon">🌈</span>
<div class="title">서비스 유지 & 운영</div>
<div class="desc">서버 비용과 도메인 유지비로 무지개나라가 항상 열려있을 수 있어요</div>
</div>
<div class="donation-use-item">
<span class="icon">✨</span>
<div class="title">새 기능 개발</div>
<div class="desc">영상 추모, 음악 기능, 더 예쁜 추모공간 테마를 만들어요</div>
</div>
<div class="donation-use-item">
<span class="icon">🐾</span>
<div class="title">반려동물 단체 기부</div>
<div class="desc">후원금의 일부는 유기동물 보호 단체에 전달돼요</div>
</div>
<div class="donation-use-item">
<span class="icon">💜</span>
<div class="title">추모 문화 만들기</div>
<div class="desc">반려동물 상실 슬픔을 함께 나눌 수 있는 커뮤니티를 만들어요</div>
</div>
</div>
<a href="./index.html#support" class="donation-btn scroll-reveal">
⭐ 무지개나라 후원하기
</a>
</div>
</section>
<!-- REVIEWS -->
<section id="reviews" class="scroll-reveal">
<p class="section-label">Real Stories</p>
<h2>사용자 후기</h2>
<p class="sub">무지개나라를 사용해보신 분들의 이야기예요 🌈</p>
<div class="reviews-grid" id="reviewsGrid">
<div class="reviews-loading">후기를 불러오는 중이에요...</div>
</div>
<div class="reviews-cta">
<a href="./index.html">✍️ 후기 남기러 가기 →</a>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-rainbow"></div>
<div class="footer-logo">무지개나라 🌈</div>
<p>무지개다리 건넌 반려동물의 공간</p>
<p style="margin-top:8px;">오순이에게 바칩니다 🐔 (2014—2024)</p>
<p style="margin-top:24px;">© 2025 무지개나라 · Made with 💜 by 수민</p>
</footer>
<script>
// 스크롤 애니메이션
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' });
document.querySelectorAll('.scroll-reveal').forEach(el => observer.observe(el));
</script>
<!-- Firebase (후기 불러오기) -->
<script src="https://www.gstatic.com/firebasejs/10.7.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.7.1/firebase-firestore-compat.js"></script>
<script>
// Firebase 초기화 (index.html과 동일한 설정)
if (!firebase.apps.length) {
firebase.initializeApp({
apiKey: "AIzaSyA4R0lsICQzNVduEifDg6Dj04cc6iHMcLE",
authDomain: "mujigaenara-72d15.firebaseapp.com",
projectId: "mujigaenara-72d15",
storageBucket: "mujigaenara-72d15.firebasestorage.app",
messagingSenderId: "931068854532",
appId: "1:931068854532:web:4f6f40e7fe7009e940d051"
});
}
async function loadReviews() {
const grid = document.getElementById('reviewsGrid');
try {
const db = firebase.firestore();
const snap = await db.collection('reviews')
.where('approved', '==', true)
.orderBy('createdAt', 'desc')
.limit(12)
.get();
if (snap.empty) {
grid.innerHTML = '<div class="reviews-empty">🌈<br><br>아직 후기가 없어요.<br>첫 번째 후기를 남겨주세요!</div>';
return;
}
const colors = ['#c084fc','#60a5fa','#f9a8d4','#6ee7b7','#fbbf24'];
grid.innerHTML = snap.docs.map((doc, i) => {
const r = doc.data();
const initials = (r.name || '익명').slice(0,1);
const color = colors[i % colors.length];
return `
<div class="review-card">
<div class="stars">★★★★★</div>
<p class="text">"${r.text.replace(/"/g,'"')}"</p>
<div class="author">
<div class="avatar" style="background:linear-gradient(135deg,${color},#818cf8)">${initials}</div>
<div class="author-info">
<div class="author-name">${r.name || '익명'}</div>
${r.petName ? `<div class="author-pet">🐾 ${r.petName}의 보호자</div>` : ''}
</div>
</div>
</div>`;
}).join('');
} catch(e) {
grid.innerHTML = '<div class="reviews-empty">후기를 불러오지 못했어요 😢</div>';
console.error(e);
}
}
// 섹션이 뷰포트에 들어올 때 로드
const reviewSection = document.getElementById('reviews');
const reviewObserver = new IntersectionObserver((entries) => {
if (entries[0].isIntersecting) {
loadReviews();
reviewObserver.disconnect();
}
}, { threshold: 0.1 });
reviewObserver.observe(reviewSection);
</script>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('./service-worker.js');
}
</script>
</body>
</html>