-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1980 lines (1730 loc) · 75.5 KB
/
Copy pathindex.html
File metadata and controls
1980 lines (1730 loc) · 75.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="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🤍민우🤵와 👰채은이🎀의 💍결혼식에🍾 🥂초대합니다🎊</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<meta name="format-detection" content="telephone=no">
<style>
/* --- 폰트 정의 --- */
@font-face {
font-family: 'DarrelAllura';
src: url('fonts/DarrelAllura.ttf') format('truetype');
}
@font-face {
font-family: 'Aston';
src: url('fonts/Aston.ttf') format('truetype');
}
@font-face {
font-family: 'Noracle';
src: url('fonts/Noracle.otf') format('truetype');
}
@font-face {
font-family: 'Mermaid';
src: url('fonts/Mermaid.ttf') format('truetype');
}
@font-face {
font-family: 'Hello Bride Script';
src: url('fonts/Hello Bride Script.ttf') format('truetype');
}
@font-face {
font-family: 'BookkMyungjo-Bd';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/BookkMyungjo-Bd.woff2') format('woff2');
font-weight: 700;
font-style: normal;
}
:root {
--sea-deep-blue: #015871;
--coral-pink: #F1948A;
--text-dark: #2C3E50;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'BookkMyungjo-Bd', sans-serif;
color: var(--text-dark);
background: linear-gradient(180deg, #e0f7fa 0%, #b2bbf2 100%);
touch-action: manipulation;
}
body {
font-size: clamp(13px, 2.5vw, 16px);
}
/* 각 섹션의 제목 (Invitation, Our Moments 등) */
.title {
font-size: clamp(2.2rem, 7vw, 2.8rem);
}
/* 초대글의 신랑/신부 이름 */
.names {
font-size: clamp(1rem, 3vw, 1.1rem);
}
.names strong {
font-size: 1.1em; /* 부모 크기에 비례해서 커지도록 설정 */
}
/* 마음 전하기의 계좌 정보 제목 */
#contact .account-info h4 {
font-size: clamp(1.1rem, 3.5vw, 1.2rem);
}
/* 맨 아래쪽 푸터(바닥글) */
footer {
font-size: clamp(0.8rem, 2vw, 0.9rem);
}
.container {
max-width: 600px;
margin: 0 auto;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
overflow: hidden;
position: relative;
}
.content-wrapper {
position: relative;
z-index: 2;
background: linear-gradient(180deg, rgba(252, 255, 254, 0.88) 0%, rgb(248, 253, 255) 100%);
}
/* --- 인트로 --- */
#intro {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column; /* 콘텐츠 세로 정렬 */
justify-content: center;
align-items: center;
z-index: 101;
opacity: 1;
transition: opacity 1s ease-out, visibility 1s linear 1s; /* fade-out 트랜지션 */
visibility: visible;
overflow: hidden;
background: linear-gradient(to bottom, oklch(60% 0.2 230), oklch(0.761 0.113 248.784));
cursor: pointer;
}
#intro.fade-out {
opacity: 0;
visibility: hidden;
}
/* --- Underwater Background --- */
#underwater-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
--ratioW: 1;
}
#underwater-background * {
box-sizing: border-box;
}
#underwater-background *::before, #underwater-background *::after {
box-sizing: border-box;
}
#underwater-background #surface {
mix-blend-mode: overlay;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
#underwater-background #surface::before, #underwater-background #surface::after {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100vw;
height: 100vh;
background-image: url("images/wave.jpeg");
background-repeat: repeat-x;
--duration: 8s;
--lowHeight: 30vh;
--highHeight: 70vh;
--layerNum: 2;
--index: 0;
--opacity: 0.4;
animation: surface var(--duration) linear infinite;
animation-delay: calc((var(--duration) / var(--layerNum)) * var(--index) * -1);
opacity: 0;
mask-image: linear-gradient(to top, white, transparent var(--lowHeight));
}
#underwater-background #surface::before {
--index: 0;
transform: scale3d(1, -1, 1);
}
#underwater-background #surface::after {
--index: 1;
transform: scale3d(-1, -1, 1);
}
#underwater-background #caustics {
position: fixed;
bottom: 0;
top: 0;
width: 100vw;
height: 100vh;
}
#underwater-background #caustics::before, #underwater-background #caustics::after {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100vw;
height: 100vh;
background-image: url("images/surface.jpeg");
background-repeat: repeat;
--duration: 10s;
--gapY: 0px;
background-size: calc(100vw / var(--ratioW)) 30vh;
animation: caustics calc(var(--duration) * (var(--ratioW))) linear infinite;
opacity: 0.3;
mask-image: linear-gradient(to top, white, transparent, transparent, transparent);
}
#underwater-background #caustics::after {
--duration: 11s;
--gapY: 10vh;
animation-delay: -2s;
transform: scale3d(-1, 1, 1);
}
#underwater-background #sun {
mix-blend-mode: overlay;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
#underwater-background #sun div {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
transform-origin: 50vw 0;
animation: sun 7s ease infinite alternate;
mask-image: linear-gradient(to bottom, transparent 15%, white 50%, white 55%, transparent 80%);
}
#underwater-background #sun #sun_layer1 {
background: linear-gradient(to right, transparent 39%, white 40%, transparent 41%, transparent 48.5%, white 50%, transparent 51.5%, transparent 53%, white 54%, transparent 55%, transparent 70%, white 71%, transparent 72%);
}
#underwater-background #sun #sun_layer2 {
animation-delay: -2s;
animation-duration: 7.8s;
animation-direction: alternate-reverse;
background: linear-gradient(to right, transparent 32%, white 33%, transparent 34%, transparent 38%, white 39%, transparent 40%, transparent 53%, white 54%, transparent 55%, transparent 63.5%, white 65%, transparent 66.5%);
}
#underwater-background #sun #sun_layer3 {
animation-delay: -5s;
animation-duration: 8.5s;
background: linear-gradient(to right, transparent 38.5%, white 40%, transparent 41.5%, transparent 47%, white 48%, transparent 49%, transparent 52%, white 53%, transparent 54%, transparent 60%, white 61%, transparent 62%);
}
@keyframes surface {
0% {
opacity: 0;
background-position: center bottom;
background-size: 100% var(--highHeight);
}
20% {
opacity: var(--opacity);
}
100% {
opacity: 0;
background-position: center bottom calc(-1 * var(--lowHeight));
background-size: 100% var(--lowHeight);
}
}
@keyframes caustics {
0% {
background-position: bottom var(--gapY) left;
}
100% {
background-position: bottom var(--gapY) left -100vw;
}
}
@keyframes sun {
0% {
opacity: 0.1;
transform: skew(5deg) scale3d(3, 1.5, 1);
}
50% {
opacity: 0.08;
transform: skew(0deg) scale3d(1.5, 1, 1);
}
100% {
opacity: 0.1;
transform: skew(-5deg) scale3d(3, 1, 1);
}
}
@media (orientation: portrait) {
#underwater-background {
--ratioW: 1;
}
}
@media (min-aspect-ratio: 1/1) {
#underwater-background {
--ratioW: 1;
}
}
@media (min-aspect-ratio: 2/1) {
#underwater-background {
--ratioW: 2;
}
}
@media (min-aspect-ratio: 3/1) {
#underwater-background {
--ratioW: 3;
}
}
@media (min-aspect-ratio: 4/1) {
#underwater-background {
--ratioW: 4;
}
}
@media (min-aspect-ratio: 5/1) {
#underwater-background {
--ratioW: 5;
}
}
/* --- 물거품 효과 --- */
#bubble-wrapper {
position: fixed; /* Changed from absolute to fixed to persist across page */
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 120; /* Above underwater background, below content */
pointer-events: none;
}
.bubble {
pointer-events: auto;
position: absolute;
bottom: -30px;
border-radius: 50%;
opacity: 10;
border: 2.5px solid transparent;
animation: rise 6s infinite ease-in;
z-index: 1001;
/* --- 수정된 부분 --- */
/* 첫 번째 배경(물거품 내부)을 transparent(투명)로 변경합니다. */
background: linear-gradient(transparent, transparent),
radial-gradient(circle at top left, #e0c8c8, #b9d6f8, #efefbf);
/* --- 나머지 코드는 동일 --- */
background-origin: border-box;
background-clip: padding-box, border-box;
mix-blend-mode: multiply;
}
/* --- 수정: CSS에서 고정된 지연값 제거하고 JS에서 동적으로 제어 --- */
@keyframes rise {
0% {
transform: translateY(0) translateX(0);
opacity: 0.7; /* Start visible */
}
90% {
opacity: 0.7;
}
100% {
transform: translateY(-120vh) translateX(30px);
opacity: 0;
}
}
@keyframes pop {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.3); /* 살짝 커지면서 */
opacity: 0.8;
}
100% {
transform: scale(0.9); /* 약간 작아지며 희미해짐 */
opacity: 0;
}
}
.bubble-fragment {
background: white;
width: 10px;
height: 10px;
border-radius: 50%;
position: fixed;
z-index: 121; /* 비눗방울보다 위에 표시 */
}
/* --- 물거품 효과 끝 --- */
/* --- 인트로 콘텐츠 --- */
#intro-content {
position: relative;
z-index: 1; /* 비눗방울보다 위에 오도록 설정 */
text-align: center;
line-height: 1.3;
color: #fff;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
font-family: 'Hello Bride Script', cursive;
font-size: 6.8rem;
}
body.no-scroll {
overflow: hidden;
}
.fade-in-text {
font-family: 'Hello Bride Script', cursive;
font-size: clamp(5rem, 10vw, 9rem); /* PC에서 최대 크기를 9rem으로 대폭 줄임 */
line-height: 1.3;
color: #fff;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
/* 텍스트 각 한 줄에 대한 스타일 (이제 애니메이션 없음) */
.fade-in-text .line {
/* 1. 초기 텍스트를 투명하게 만들어 숨깁니다 */
color: transparent;
}
/* ★ 새로 추가: JavaScript로 생성될 한 글자(span)에 대한 스타일 */
.fade-in-text .line span {
opacity: 0; /* 시작 전에는 투명 */
/* 2. JS로 생성된 span 태그의 글자색은 다시 흰색으로 되돌립니다 */
color: #fff;
display: inline-block; /* 한 글자씩 공간을 차지하도록 */
animation: fadeIn-inplace 0.8s ease-out forwards; /* '제자리' fadeIn 애니메이션 적용 */
}
/* ★ 새로 추가: 이동 없이 제자리에서 나타나는 애니메이션 키프레임 */
@keyframes fadeIn-inplace {
to {
opacity: 1;
transform: none; /* 이동 효과 제거 */
}
}
/* --- 메인 (이하 기존과 동일) --- */
#main-photo {
width: 100%;
height: auto;
display: block;
border-radius: 8px; /* 사진 모서리를 부드럽게 */
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* 입체감 있는 그림자 */
margin-top: -30px
}
#main-title-area {
text-align: center;
margin-top: 40px; /* 사진과 제목 사이 여백 */
}
/* 기존 제목 스타일은 그대로 활용합니다 */
#main-title-area .location {
font-family: 'Noracle', sans-serif;
font-size: 2em;
color: var(--sea-deep-blue);
font-weight: 600;
}
#main-title-area .small-text {
font-size: 0.8em;
font-weight: 10;
}
#main-title-area h1 {
font-family: 'DarrelAllura', cursive;
color: var(--sea-deep-blue);
text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
white-space: nowrap;
font-size: clamp(2.8rem, 12vw, 4.5rem);
font-weight: normal;
}
.invitation-text-wrapper {
position: relative;
padding: 40px 20px;
margin-top: 20px;
background-color: rgba(255, 255, 255, 0.6);
border-radius: 10px;
border-top: 2px solid rgba(241, 148, 138, 0.3); /* 상단에 연한 코랄색 포인트 */
border-bottom: 2px solid rgba(241, 148, 138, 0.3); /* 하단에 연한 코랄색 포인트 */
}
/* 텍스트와 이름 사이의 장식 구분선 */
.divider {
width: 140px;
height: 2px;
background-color: rgba(241, 148, 138, 0.4); /* 연한 코랄색 */
margin: 40px auto;
}
/* 기존 names 스타일과 조화롭게 여백 조정 */
#invitation .names {
margin-top: 10px; /* divider와 여백이 있으므로 상단 마진 제거 */
}
.content-section {
padding: 80px 30px;
}
.title {
font-family: 'Aston', cursive;
font-size: 2.5rem;
font-weight: normal;
color: var(--sea-deep-blue);
margin-bottom: 25px;
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}
.title-icon {
width: 26px; /* 아이콘 너비 (이미지 크기에 맞게 조절) */
height: 26px; /* 아이콘 높이 (이미지 크기에 맞게 조절) */
vertical-align: middle; /* 텍스트와 세로 중앙 정렬 */
margin: 0 8px; /* 텍스트와의 좌우 여백 */
transform: translateY(-3px); /* 세로 위치 미세 조정 */
filter: saturate(88%) brightness(156%) contrast(100%) hue-rotate(360deg);
}
#invitation p,
#invitation .names,
#location p {
line-height: 1.8;
text-align: center;
}
.names {
margin-top: 40px;
font-size: 1.1rem;
}
.names strong {
font-size: 1.2rem;
font-weight: 700;
}
/*--- 🎨 오시는 길 안내 (고급형) 🎨 ---*/
.guidance-container {
margin-top: 50px; /* 버튼과의 여백 */
text-align: left;
}
.guidance-section {
background-color: rgba(248, 250, 252, 0.7); /* 살짝 비치는 하얀 배경 */
border: 1px solid #e8e8e8;
border-radius: 15px;
padding: 30px;
margin-bottom: 25px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
backdrop-filter: blur(5px); /* 배경 블러 효과 (지원 브라우저) */
}
.guidance-section h3 {
font-size: 1.25em;
color: var(--sea-deep-blue);
margin: -30px -30px 25px -30px; /* 제목을 카드 상단에 붙이기 */
padding: 20px 30px;
background-color: rgba(255, 255, 255, 0.5);
border-bottom: 1px solid #e8e8e8;
border-radius: 15px 15px 0 0;
display: flex;
align-items: center;
}
/* 아이콘 스타일 */
.guidance-section h3::before {
font-family: 'Aston', cursive;
font-size: 1.2em;
color: var(--coral-pink);
margin-right: 14px;
font-weight: bold;
}
/*--- 📅 캘린더 섹션 스타일 (통합형) 📅 ---*/
.calendar-container {
position: relative; /* 시계 아이콘 위치 기준점 */
margin-top: 30px;
padding: 30px 25px;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.calendar-header {
text-align: center;
margin-bottom: 25px;
}
.calendar-header h3 {
/* 본문과 통일감 있는 명조체로 변경 */
font-family: 'BookkMyungjo-Bd', serif;
font-size: 1.6em;
color: var(--text-dark);
font-weight: 700;
letter-spacing: 1px;
}
.calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 8px;
text-align: center;
}
.day-name {
font-size: 0.85em;
font-weight: 700;
color: #999;
padding-bottom: 10px;
}
.day {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 60px; /* 날짜 칸 높이 */
font-size: 1em;
border-radius: 50%; /* 동그랗게 변경 */
transition: all 0.2s ease;
font-weight: 600;
}
/* 9월 날짜는 연한 회색으로 표시 */
.day.other-month {
color: #ccc;
}
/* 토요일, 일요일 색상 */
.day-name.sun, .day.sun {
color: #E74C3C;
}
.day-name.sat, .day.sat {
color: #3498DB;
}
.day.sat.other-month {
color: #a9d4ee;
}
/* 9월 토요일 색상 */
/* 웨딩데이 특별 스타일 */
.day.special-day {
background-color: var(--coral-pink);
color: white !important; /* 다른 색상 규칙보다 우선 적용 */
font-weight: 700;
transform: scale(1.05);
box-shadow: 3px 4px 12px rgba(241, 148, 138, 0.6);
width: 38px;
height: 42px;
}
.special-day .day-number {
font-size: 1.25em;
line-height: 1;
}
.special-day .day-label {
font-size: 0.6em;
margin-top: 4px;
opacity: 0.9;
font-weight: normal;
}
/* ★★★ 새로 추가된 시계 아이콘 스타일 ★★★ */
.clock-overlay {
position: absolute;
bottom: -20px;
right: -10px;
width: 175px;
height: 175px;
background-color: rgba(255, 255, 255, 0.9);
border: 3px solid var(--coral-pink);
border-radius: 50%;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
z-index: 10;
/* 숫자를 위한 폰트 설정 (청첩장 다른 부분과 통일) */
font-family: 'Noracle', sans-serif;
}
/* 새로 추가된 숫자 스타일 */
.clock-overlay .num {
position: absolute;
color: var(--text-dark); /* 눈에 잘 띄는 어두운 색상 */
font-size: 26px;
font-weight: 600;
/* 숫자를 각 위치의 정중앙에 배치하기 위한 설정 */
transform: translate(-50%, -50%);
}
.clock-overlay .num12 {
top: 18px;
left: 50%;
}
.clock-overlay .num3 {
top: 50%;
right: 10px;
transform: translate(0, -50%);
}
.clock-overlay .num6 {
bottom: -10px;
left: 50%;
}
.clock-overlay .num9 {
top: 50%;
left: 10px;
transform: translate(0, -50%);
}
/* 시침, 분침의 기본 스타일 */
.clock-overlay::before,
.clock-overlay::after {
content: '';
position: absolute;
transform-origin: bottom center;
border-radius: 2px;
}
/* 시침 (짧은 바늘) 스타일 */
.clock-overlay::before {
top: 50%;
left: 50%;
width: 2px;
height: 30px;
background: var(--coral-pink);
transform: translate(-50%, -100%) rotate(0deg);
z-index: 12;
}
/* 분침 (긴 바늘) 스타일 */
.clock-overlay::after {
top: 50%;
left: 50%;
width: 2px;
height: 65px;
background-color: #5D6D7E; /* 차콜 그레이 색상 적용 */
transform: translate(-50%, -100%) rotate(0deg);
z-index: 11;
}
/* 주차 아이콘 (P) */
.parking-info h3::before {
content: 'Park';
}
/* 대중교통 아이콘 (T) */
.transport-info h3::before {
content: 'Trans';
}
.guidance-section ul {
list-style: none;
padding-left: 0;
}
.guidance-section li {
padding-left: 22px;
position: relative;
margin-bottom: 18px;
line-height: 1.7;
}
.guidance-section li:last-child {
margin-bottom: 0;
}
/* 커스텀 목록 아이콘 (작은 점) */
.guidance-section li::before {
content: '•';
position: absolute;
left: 0;
top: 0;
font-size: 1.4em;
color: var(--coral-pink);
line-height: 1;
}
/* 대중교통 안내 세부 내용 */
.guidance-section li p {
margin: 5px 0 0 0;
font-size: 0.95em;
color: #555;
}
/* 강조 텍스트 스타일 */
.guidance-section .highlight {
color: #3154f6;
font-weight: 700;
}
.guidance-section .highlight-alt {
color: #008080; /* Teal */
font-weight: 700;
}
/* 주의사항 텍스트 */
.guidance-section .notice-text {
color: #E74C3C;
font-weight: 700;
margin-top: 15px;
line-height: 1.8;
}
#gallery {
padding-bottom: 50px;
}
.swiper {
width: 100%;
padding-top: 20px;
padding-bottom: 50px;
}
.swiper-slide {
background-position: center;
background-size: cover;
width: 75%;
aspect-ratio: 3 / 4;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
cursor: pointer;
}
.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
}
#lightbox {
position: fixed;
z-index: 1001;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
display: none;
justify-content: center;
align-items: center;
cursor: pointer;
}
.lightbox-content {
max-width: 90vw;
max-height: 90vh;
object-fit: contain;
}
.lightbox-close {
display: none;
}
#location .map-container {
width: 100%;
margin-top: 30px;
border-radius: 12px;
overflow: hidden;
}
.root_daum_roughmap.root_daum_roughmap_landing {
width: 100% !important;
}
.btn-group {
/* Flexbox 레이아웃을 적용합니다. */
display: flex;
/* 버튼들을 수평 중앙에 정렬합니다. */
justify-content: center;
/* 버튼 사이의 간격을 줍니다. */
flex-wrap: nowrap; /* 버튼들이 줄바꿈되지 않도록 설정 */
}
.btn {
display: inline-flex;
padding: 12px 25px;
margin: 15px 5px 0 5px;
border: none;
background-color: var(--coral-pink);
color: white;
text-decoration: none;
border-radius: 30px;
font-weight: 700;
transition: all 0.3s;
box-shadow: 0 4px 6px rgba(241, 148, 138, 0.4);
white-space: nowrap; /* 버튼 안의 텍스트가 줄바꿈되지 않도록 설정 */
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(241, 148, 138, 0.5);
}
#contact .account-info {
border: 1px solid #E0E0E0;
background: rgba(255, 255, 255, 0.7);
border-radius: 12px;
padding: 25px;
margin-top: 20px;
}
#contact .account-info h4 {
color: var(--sea-deep-blue);
font-size: 1.2rem;
margin-bottom: 20px; /* 제목과 첫 계좌 사이 간격 조정 */
}
.account-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px; /* 계좌 정보 간 간격 조정 */
}
.account-row:last-child {
margin-bottom: 0;
}
.account-row span {
line-height: 1.6;
word-break: keep-all; /* 이름과 계좌번호가 같이 내려가도록 */
}
footer {
padding: 80px 30px;
text-align: center;
color: #fff; /* 글자색은 흰색으로 유지 */
position: relative; /* z-index 적용을 위해 추가 */
overflow: hidden; /* 이미지가 튀어나가지 않도록 */
}
footer::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* ★★★ 여기에 올바른 이미지 경로를 입력하세요 ★★★ */
background-image: url('images/banner.png');
background-size: cover;
background-position: center;
/* 투명도 조절 (0.5는 50% 투명, 값을 조절하여 원하는 밝기로) */
opacity: 0.7;
z-index: -1; /* 글씨보다 뒤에 위치하도록 설정 */
}
footer p {
font-size: 1.1rem; /* 글씨 크기 (원하는 대로 조절) */
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* 검은색 그림자 (가로, 세로, 흐림, 색상) */
position: relative; /* 그라데이션보다 위에 텍스트가 오도록 */
z-index: 1;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3px;