-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreference-original.html
More file actions
990 lines (933 loc) · 47.6 KB
/
Copy pathreference-original.html
File metadata and controls
990 lines (933 loc) · 47.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chicago United Volleyball</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<style>
:root {
--blue: #0F1E3C;
--red: #C9973A;
--ink: #111111;
--body: #444;
--muted: #9A9080;
--warm: #FAF8F3;
--white: #FFFFFF;
--border: #E8E2D8;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', sans-serif;
color: var(--ink); background: var(--white);
font-size: 15px; line-height: 1.7;
}
/* ── NAV ── */
nav {
background: var(--white); border-bottom: 1px solid var(--border);
position: sticky; top: 0; z-index: 100;
}
.nav-inner {
max-width: 1100px; margin: 0 auto; padding: 0 48px;
height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
display: flex; align-items: center; text-decoration: none;
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
color: var(--body); text-decoration: none;
font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
content: ''; position: absolute; left: 0; bottom: 0;
width: 0; height: 1.5px; background: var(--red); transition: width 0.25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-join {
font-size: 12px !important; font-weight: 600 !important;
color: var(--white) !important; background: var(--red);
padding: 8px 20px; letter-spacing: 0.05em !important;
text-transform: uppercase;
}
.nav-join::after { display: none !important; }
.nav-join:hover { opacity: 0.88; }
/* ── BUTTONS ── */
.btn-red {
display: inline-block; background: var(--red); color: white;
padding: 13px 30px; font-size: 13px; font-weight: 600;
letter-spacing: 0.05em; text-transform: uppercase;
text-decoration: none; transition: opacity 0.2s;
}
.btn-red:hover { opacity: 0.86; }
.btn-outline {
display: inline-block; background: transparent; color: white;
padding: 12px 30px; font-size: 13px; font-weight: 600;
letter-spacing: 0.05em; text-transform: uppercase;
text-decoration: none; border: 1.5px solid rgba(255,255,255,0.45);
transition: border-color 0.2s;
}
.btn-outline:hover { border-color: white; }
.btn-ink {
display: inline-block; background: transparent; color: var(--ink);
padding: 11px 28px; font-size: 13px; font-weight: 600;
letter-spacing: 0.05em; text-transform: uppercase;
text-decoration: none; border: 1.5px solid var(--ink);
transition: all 0.2s;
}
.btn-ink:hover { background: var(--ink); color: white; }
.btn-red-o {
display: inline-block; background: transparent; color: white;
padding: 12px 30px; font-size: 13px; font-weight: 600;
letter-spacing: 0.05em; text-transform: uppercase;
text-decoration: none; border: 1.5px solid rgba(255,255,255,0.5);
transition: all 0.2s;
}
.btn-red-o:hover { border-color: white; }
/* ── SECTION COMMONS ── */
section { padding: 88px 0; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.sec-eyebrow {
font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.sec-head {
font-family: 'Noto Serif SC', serif;
font-size: 38px; font-weight: 700; line-height: 1.15;
color: var(--ink); margin-bottom: 20px;
}
.sec-rule {
width: 32px; height: 2px; background: var(--red); margin-bottom: 28px;
}
.sec-lead {
font-size: 15px; color: var(--body); line-height: 1.85; max-width: 560px;
}
/* ══════════════════════════════════
HERO
══════════════════════════════════ */
.hero {
position: relative; min-height: 95vh;
display: flex; align-items: flex-end;
overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.hero-veil {
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(to top, rgba(15,30,60,0.93) 30%, rgba(15,30,60,0.38) 80%, rgba(15,30,60,0.1));
}
.hero-content {
position: relative; z-index: 2;
max-width: 1100px; width: 100%;
margin: 0 auto; padding: 0 48px 72px;
}
.hero-chin {
font-family: 'Noto Serif SC', serif;
font-size: 13px; letter-spacing: 0.22em; color: rgba(255,255,255,0.5);
margin-bottom: 18px; text-transform: uppercase;
}
.hero-chin span { color: #E8B84B; }
.hero h1 {
font-family: 'Noto Serif SC', serif;
font-size: 68px; font-weight: 900; color: white;
line-height: 1.05; margin-bottom: 24px; max-width: 660px;
}
.hero h1 em { font-style: italic; color: #E8B84B; }
.hero-desc {
font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.82;
max-width: 500px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; }
.hero-bottom {
margin-top: 60px; padding-top: 36px;
border-top: 1px solid rgba(255,255,255,0.12);
display: flex; gap: 56px;
}
.hb-item { }
.hb-num {
font-family: 'Noto Serif SC', serif;
font-size: 32px; font-weight: 900; color: white;
}
.hb-label { font-size: 11px; color: rgba(255,255,255,0.42); letter-spacing: 0.1em; text-transform: uppercase; }
/* ══════════════════════════════════
HISTORY
══════════════════════════════════ */
.history { background: var(--white); position: relative; overflow: hidden; }
.history-watermark {
position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
font-family: 'Noto Serif SC', serif;
font-size: 160px; font-weight: 900; color: rgba(0,0,0,0.035);
pointer-events: none; line-height: 1; letter-spacing: -4px;
}
.history-layout {
display: grid; grid-template-columns: 1fr 1fr;
gap: 72px; align-items: center; position: relative; z-index: 1;
}
.history-text .sec-rule { }
.history-text p { font-size: 14.5px; color: var(--body); line-height: 1.92; margin-bottom: 18px; }
.history-text a { color: var(--red); font-weight: 600; text-decoration: none; font-size: 13px; }
.history-text a:hover { text-decoration: underline; }
.history-photo { position: relative; }
.history-photo img { width: 100%; height: 420px; object-fit: cover; display: block; }
.history-photo::before {
content: ''; position: absolute; inset: -10px -10px 10px 10px;
border: 2px solid var(--red); z-index: -1;
}
/* ══════════════════════════════════
ABOUT
══════════════════════════════════ */
.about { background: var(--warm); }
.about-intro {
display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
margin-bottom: 60px; align-items: start;
}
.about-intro p { font-size: 14.5px; color: var(--body); line-height: 1.9; margin-bottom: 14px; }
.about-intro a { color: var(--red); font-weight: 600; font-size: 13px; text-decoration: none; }
.about-intro a:hover { text-decoration: underline; }
/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 28px; }
.team-cell { background: var(--white); padding: 36px 28px; text-align: center; }
.tc-label { font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.tc-name {
font-family: 'Noto Serif SC', serif;
font-size: 32px; font-weight: 900; color: var(--blue);
}
.tc-tier { font-size: 12px; color: var(--muted); margin-top: 4px; }
.tc-sub { font-size: 11px; font-weight: 600; color: var(--red); letter-spacing: 0.04em; margin-top: 6px; }
/* Shared stats */
.shared-row { display: flex; border: 1px solid var(--border); }
.shared-stat { flex: 1; padding: 20px 28px; border-right: 1px solid var(--border); }
.shared-stat:last-child { border-right: none; }
.ss-k { font-size: 9.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.ss-v { font-size: 14px; font-weight: 600; color: var(--ink); }
/* Achievement strip */
.ach-strip {
background: var(--blue); color: white;
padding: 32px 40px; margin-top: 28px;
display: flex; align-items: center; gap: 48px;
}
.ach-ch {
font-family: 'Noto Serif SC', serif;
font-size: 52px; font-weight: 900; line-height: 1;
color: rgba(255,255,255,0.15); min-width: 60px;
}
.ach-main { flex: 1; }
.ach-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.ach-text { font-family: 'Noto Serif SC', serif; font-size: 18px; font-weight: 600; line-height: 1.4; }
.ach-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; }
.ach-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.12); }
/* ══════════════════════════════════
QUOTE BANNER
══════════════════════════════════ */
.quote-banner {
background: var(--blue); padding: 60px 0; text-align: center;
position: relative; overflow: hidden;
}
.quote-banner::before {
content: ''; position: absolute; inset: 0; pointer-events: none;
background: url('083025_1933_Original.jpg') center 30%/cover no-repeat;
opacity: 0.13;
}
.quote-mark {
font-family: 'Noto Serif SC', serif;
font-size: 80px; line-height: 0.6; color: rgba(201,151,58,0.35);
margin-bottom: 12px; display: block;
}
.quote-text {
font-family: 'Noto Serif SC', serif;
font-size: 26px; font-weight: 600; color: white;
max-width: 680px; margin: 0 auto 14px; line-height: 1.45;
}
.quote-attr {
font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
color: rgba(255,255,255,0.55);
}
/* ══════════════════════════════════
CULTURE
══════════════════════════════════ */
.culture { background: var(--warm); position: relative; overflow: hidden; }
.culture-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 52px; }
.value-rows { display: flex; flex-direction: column; counter-reset: col-counter; }
.exp-head {
font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
text-transform: uppercase; color: var(--red);
padding-bottom: 14px; border-bottom: 2px solid var(--red);
margin-bottom: 0;
}
.val-row {
padding: 20px 0; border-bottom: 1px solid var(--border);
display: flex; gap: 18px; align-items: flex-start;
counter-increment: col-counter;
}
.val-row::before {
content: counter(col-counter, decimal-leading-zero);
font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
color: var(--red); opacity: 0.45;
min-width: 22px; flex-shrink: 0;
padding-top: 4px;
}
.val-body { flex: 1; min-width: 0; }
.val-title { font-family: 'Noto Serif SC', serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.val-desc { font-size: 13px; color: var(--body); line-height: 1.8; }
.exp-mark { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; min-width: 14px; margin-top: 4px; }
.exp-txt { font-size: 13.5px; color: var(--body); line-height: 1.7; }
/* ══════════════════════════════════
JUNIORS
══════════════════════════════════ */
.juniors { background: var(--white); }
.juniors-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 52px; align-items: start; }
.gao-block { }
.gao-img-wrap { position: relative; margin-bottom: 0; }
.gao-img-wrap img { width: 100%; height: 320px; object-fit: cover; display: block; }
.gao-overlay-text {
background: var(--blue); color: white; padding: 24px 28px;
}
.gao-ch {
font-family: 'Noto Serif SC', serif;
font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
color: rgba(255,255,255,0.42); margin-bottom: 6px;
}
.gao-name-big {
font-family: 'Noto Serif SC', serif;
font-size: 24px; font-weight: 900; margin-bottom: 2px;
}
.gao-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.gao-details { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 16px; }
.gao-detail { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 12.5px; }
.gao-detail:last-child { border-bottom: none; }
.gao-dk { color: rgba(255,255,255,0.45); }
.gao-dv { font-weight: 600; }
.juniors-text h3 { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.juniors-text p { font-size: 14px; color: var(--body); line-height: 1.88; margin-bottom: 16px; }
.ben-row { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--border); }
.ben-row:last-of-type { border-bottom: none; margin-bottom: 28px; }
.ben-dash { color: var(--red); font-weight: 700; min-width: 12px; }
.ben-t { font-size: 13.5px; color: var(--body); line-height: 1.7; }
.j-photo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 44px; }
.j-ph img { width: 100%; height: 150px; object-fit: cover; display: block; }
/* ══════════════════════════════════
GALLERY
══════════════════════════════════ */
.gallery { background: var(--warm); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 44px; }
.g-photo { overflow: hidden; aspect-ratio: 4/3; }
.g-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.g-photo:hover img { transform: scale(1.04); }
.g-feature {
background: var(--blue); padding: clamp(12px, 9cqi, 32px); aspect-ratio: 4/3;
display: flex; flex-direction: column; justify-content: center;
overflow: hidden; container-type: inline-size;
}
.gf-ch {
font-family: 'Noto Serif SC', serif;
font-size: clamp(8px, 3cqi, 10px); letter-spacing: 0.2em; text-transform: uppercase;
color: rgba(255,255,255,0.35); margin-bottom: clamp(6px, 4cqi, 14px);
}
.g-feature h3 {
font-family: 'Noto Serif SC', serif;
font-size: clamp(12px, 5.5cqi, 18px); font-weight: 700; color: white;
margin-bottom: clamp(4px, 3cqi, 10px); line-height: 1.35;
}
.g-feature p {
font-size: clamp(10px, 4cqi, 13px); color: rgba(255,255,255,0.55);
line-height: 1.72; margin-bottom: clamp(10px, 6cqi, 22px);
}
.g-feature a {
display: inline-block; color: white; font-size: clamp(10px, 3.7cqi, 12px); font-weight: 600;
letter-spacing: 0.05em; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.35);
padding-bottom: 2px; transition: border-color 0.2s;
}
.g-feature a:hover { border-color: white; }
/* ══════════════════════════════════
CONTACT
══════════════════════════════════ */
.contact { background: var(--white); }
.contact-intro { font-size: 14px; color: var(--body); line-height: 1.8; max-width: 640px; margin-top: 28px; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.cc-card { background: var(--warm); padding: 28px 24px; border-left: 3px solid var(--red); min-width: 0; }
.cc-card a { overflow-wrap: anywhere; }
.cc-role { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.cc-name { font-family: 'Noto Serif SC', serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.cc-sub { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.cc-card p { font-size: 13.5px; color: var(--body); line-height: 1.8; margin-bottom: 18px; }
.cc-card a { color: var(--red); font-size: 13px; font-weight: 600; text-decoration: none; }
.cc-card a:hover { text-decoration: underline; }
/* ══════════════════════════════════
FULL-WIDTH PHOTO STRIP
══════════════════════════════════ */
.full-photo-strip { width: 100%; height: 420px; overflow: hidden; }
.full-photo-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
/* ══════════════════════════════════
CTA BAND
══════════════════════════════════ */
.cta-band {
background: var(--blue); padding: 96px 0;
text-align: center; position: relative; overflow: hidden;
}
.cta-ch-bg {
position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
font-family: 'Noto Serif SC', serif;
font-size: 280px; font-weight: 900; color: rgba(255,255,255,0.03);
pointer-events: none; white-space: nowrap; line-height: 1;
}
.cta-band > .wrap { position: relative; z-index: 1; }
.cta-band h2 {
font-family: 'Noto Serif SC', serif;
font-size: 40px; font-weight: 700; color: white; margin-bottom: 16px;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.62); max-width: 500px; margin: 0 auto 38px; line-height: 1.85; }
.cta-btns { display: flex; gap: 14px; justify-content: center; }
.cta-give-head {
font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
color: var(--red); margin-bottom: 20px;
}
.cta-give-list {
display: inline-flex; flex-direction: column; gap: 0;
border: 1px solid rgba(255,255,255,0.15); text-align: left;
max-width: 420px; width: 100%; margin: 0 auto 28px;
}
.cta-give-item { display: flex; align-items: center; gap: 20px; padding: 18px 24px; }
.cta-give-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 0; }
.cta-give-label {
font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
color: rgba(255,255,255,0.5); min-width: 68px; flex-shrink: 0;
}
.cta-give-link {
color: var(--red); font-size: 14px; font-weight: 600;
text-decoration: none; transition: opacity 0.2s;
}
.cta-give-link:hover { opacity: 0.8; }
.cta-give-text { font-size: 14px; color: rgba(255,255,255,0.75); }
.cta-footnote { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }
/* ══════════════════════════════════
PHOTO CREDITS
══════════════════════════════════ */
.photo-credit {
font-size: 11px; color: var(--muted); margin-top: 14px; letter-spacing: 0.03em;
}
.photo-credit a { color: var(--muted); text-decoration: none; }
.photo-credit a:hover { color: var(--red); }
.photo-credits-band {
background: var(--ink); padding: 28px 0; text-align: center;
border-top: 1px solid rgba(255,255,255,0.06);
}
.photo-credits-text {
font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 10px;
letter-spacing: 0.02em;
}
.photo-credits-list {
display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.pc-entry { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }
.pc-paren { font-weight: 400; color: rgba(255,255,255,0.35); font-size: 12px; }
.photo-credits-list a {
color: rgba(255,255,255,0.5); text-decoration: underline;
text-underline-offset: 3px; transition: color 0.2s;
}
.photo-credits-list a:hover { color: white; }
.photo-credits-dot { color: rgba(255,255,255,0.2); font-size: 13px; }
/* ══════════════════════════════════
FOOTER
══════════════════════════════════ */
footer { background: var(--ink); padding: 60px 0 32px; }
.footer-top {
display: grid; grid-template-columns: 200px 1fr;
gap: 80px; margin-bottom: 48px;
}
.footer-brand { margin-bottom: 14px; }
.footer-brand img {
width: 100%; height: auto; display: block;
filter:
drop-shadow( 1px 0 0 rgba(255,255,255,0.35))
drop-shadow(-1px 0 0 rgba(255,255,255,0.35))
drop-shadow( 0 1px 0 rgba(255,255,255,0.35))
drop-shadow( 0 -1px 0 rgba(255,255,255,0.35));
}
.footer-chin { font-size: 13px; color: rgba(255,255,255,0.3); margin-bottom: 16px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.fl h4 { font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.fl ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fl ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.fl ul a:hover { color: white; }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px;
display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.25); }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { font-size: 11.5px; color: rgba(255,255,255,0.35); text-decoration: none; font-weight: 500; letter-spacing: 0.05em; transition: color 0.2s; }
.footer-socials a:hover { color: white; }
/* ── HAMBURGER ── */
.nav-hamburger {
display: none; flex-direction: column; justify-content: center; gap: 5px;
background: none; border: none; cursor: pointer; padding: 8px; height: 60px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--body); transition: all .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ══════════════════════════════════
RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════ */
@media (max-width: 900px) {
/* Nav */
.nav-inner { padding: 0 24px; }
.nav-hamburger { display: flex; }
.nav-links {
display: none; flex-direction: column; gap: 0;
position: absolute; top: 60px; left: 0; right: 0; z-index: 999;
background: var(--white); border-bottom: 1px solid var(--border);
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-links.open { display: flex; }
.nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--border); display: block; font-size: 13px; }
.nav-links a::after { display: none; }
.nav-join { margin: 12px 24px 16px; display: block; text-align: center; padding: 10px 20px; }
/* Global */
section { padding: 64px 0; }
.wrap { padding: 0 24px; }
/* Hero */
.hero h1 { font-size: 46px; }
.hero-content { padding: 0 24px 56px; }
.hero-bottom { gap: 28px; flex-wrap: wrap; }
/* History */
.history-layout { grid-template-columns: 1fr; gap: 40px; }
.history-watermark { font-size: 110px; }
/* About */
.about-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
.shared-row { flex-direction: column; }
.shared-stat { border-right: none; border-bottom: 1px solid var(--border); }
.shared-stat:last-child { border-bottom: none; }
.ach-strip { flex-direction: column; gap: 20px; padding: 28px 24px; }
.ach-divider { width: 100%; height: 1px; }
/* Culture */
.culture-layout { grid-template-columns: 1fr; gap: 40px; }
/* Juniors */
.juniors-layout { grid-template-columns: 1fr; gap: 40px; }
.j-photo-grid { grid-template-columns: 1fr 1fr; }
/* Gallery */
.gallery-grid { grid-template-columns: 1fr 1fr; }
/* Contact */
.contact-grid { grid-template-columns: 1fr 1fr; }
/* CTA */
.cta-band { padding: 72px 0; }
.cta-btns { flex-direction: column; align-items: center; gap: 10px; }
.cta-ch-bg { font-size: 160px; }
/* Footer */
.footer-top { grid-template-columns: 1fr; gap: 36px; }
.footer-links { grid-template-columns: repeat(3, 1fr); }
.footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
/* ══════════════════════════════════
RESPONSIVE — MOBILE (≤ 520px)
══════════════════════════════════ */
@media (max-width: 520px) {
/* Hero */
.hero h1 { font-size: 36px; }
.hero-desc { font-size: 14px; }
.hero-btns { flex-direction: column; }
.btn-red, .btn-outline { text-align: center; }
.hero-bottom { flex-direction: column; gap: 12px; padding-top: 24px; margin-top: 40px; }
/* Headings */
.sec-head { font-size: 28px; }
/* Teams */
.team-grid { grid-template-columns: 1fr; }
/* Juniors */
.j-photo-grid { grid-template-columns: 1fr 1fr; }
/* Gallery */
.gallery-grid { grid-template-columns: 1fr; }
/* Contact */
.contact-grid { grid-template-columns: 1fr; }
/* Footer */
.footer-links { grid-template-columns: 1fr 1fr; }
.footer-socials { justify-content: center; }
}
</style>
</head>
<body>
<!-- ═══ NAV ═══ -->
<nav>
<div class="nav-inner">
<a class="nav-logo" href="#hero"><img src="Horizontal-logo.png" alt="Chicago United" /></a>
<button class="nav-hamburger" aria-label="Menu">
<span></span><span></span><span></span>
</button>
<ul class="nav-links">
<li><a href="#history">History</a></li>
<li><a href="#culture">Vision</a></li>
<li><a href="#about">9-Man Teams</a></li>
<li><a href="#juniors">Youth</a></li>
<li><a href="#contact">Leadership</a></li>
<li><a href="#cta">Donate</a></li>
</ul>
</div>
</nav>
<!-- ═══ HERO ═══ -->
<section class="hero" id="hero">
<div class="hero-bg"><img src="img-spike.jpg" alt="Chicago United player spiking" /></div>
<div class="hero-veil"></div>
<div class="hero-content">
<div class="hero-chin">Chicago's 9-Man Volleyball Club · <span>九人排球</span></div>
<h1>Reviving the <em>Legacy</em> of Chinese Nine Man In Chicago.</h1>
<p class="hero-desc">Chicago United Volleyball Club, a 501c3 non-profit, seeks to promote Chinese and Asian American history, culture, and values in Chicago Chinatown and the greater Chicagoland area through volleyball.</p>
<div class="hero-btns">
<a href="#about" class="btn-outline">Learn More</a>
</div>
</div>
</section>
<!-- ═══ HISTORY ═══ -->
<section class="history" id="history">
<div class="wrap">
<div class="history-watermark">九人</div>
<div class="history-layout">
<div class="history-text">
<div class="sec-eyebrow">History of Chinese 9-Man Volleyball</div>
<h2 class="sec-head">A Sport Rooted in Exclusion & Resilience</h2>
<div class="sec-rule"></div>
<p>Chinese nine man volleyball emerged in the 1930s in the back alleys and cramped spaces of North American Chinatowns, born from the Chinese Exclusion Act era when segregation forced communities to create their own gathering places. For over a century, regional tournaments have served as cultural reunions — preserving language, tradition, and identity across generations of Chinese Americans.</p>
<p>The sport is governed by NACIVT—the North American Chinese Invitational Volleyball Tournament—which brings together hundreds of teams each year. Chicago once had a thriving nine man community, but it faded over generations. Chicago United has helped revive that tradition.</p>
<a href="https://abc7chicago.com/post/9-man-volleyball-chinatown-chicago-chinese-immigrants/11869560/" target="_blank">Read our story →</a>
</div>
<div class="history-photo">
<img src="img-team.jpg" alt="Chicago United team photo" />
</div>
</div>
</div>
</section>
<!-- ═══ QUOTE BANNER ═══ -->
<div class="quote-banner">
<div class="wrap" style="text-align:center;">
<span class="quote-mark">"</span>
<div class="quote-text">We are not just a volleyball team. We are a family — and this is our legacy.</div>
<div class="quote-attr">Tony Chan · Founder, Chicago United</div>
</div>
</div>
<!-- ═══ VISION / CULTURE ═══ -->
<section class="culture" id="culture">
<div class="wrap">
<div class="sec-eyebrow">Vision and Programming</div>
<h2 class="sec-head">More Than a Sport.</h2>
<div class="sec-rule"></div>
<div class="culture-layout">
<div class="value-rows">
<div class="exp-head">Our Vision</div>
<div class="val-row">
<div class="val-body">
<div class="val-title">Elevate Skill Level</div>
<div class="val-desc">Chicago becomes a recognized hub for high-level Asian American volleyball talent.</div>
</div>
</div>
<div class="val-row">
<div class="val-body">
<div class="val-title">Youth Development</div>
<div class="val-desc">Young players in Chinatown, Bridgeport, and surrounding neighborhoods have access to quality coaching, facilities, and pathways to excel.</div>
</div>
</div>
<div class="val-row">
<div class="val-body">
<div class="val-title">Cross-generational Connection</div>
<div class="val-desc">Volleyball courts become gathering places where elders, parents, and youth play, learn, and build community together.</div>
</div>
</div>
<div class="val-row">
<div class="val-body">
<div class="val-title">Preserve and Grow Chinese 9-Man</div>
<div class="val-desc">The tradition thrives in Chicago with active leagues, tournaments, and new players learning the game's history and culture.</div>
</div>
</div>
<div class="val-row">
<div class="val-body">
<div class="val-title">Cultural Celebration</div>
<div class="val-desc">Volleyball becomes a visible, celebrated expression of Chinese and Asian American identity across Chicagoland.</div>
</div>
</div>
</div>
<div class="value-rows">
<div class="exp-head">Our Programming</div>
<div class="val-row">
<div class="val-body">
<div class="val-title">Adult Chinese 9-Man Volleyball</div>
<div class="val-desc">Preserving and growing the tradition of Chinese 9-Man volleyball in Chicago and the Chicagoland area by bringing together the best talent and fostering competitive excellence within the Asian American community.</div>
</div>
</div>
<div class="val-row">
<div class="val-body">
<div class="val-title">Youth Development</div>
<div class="val-desc">Affordable clinics and programming for middle school, high school, and young players in Chinatown, Bridgeport, and surrounding underserved areas — investing in the next generation of Asian American athletes and leaders. Includes Chinese 9-Man programming in the summer to pass the tradition forward.</div>
</div>
</div>
<div class="val-row">
<div class="val-body">
<div class="val-title">Local Volleyball Tournaments</div>
<div class="val-desc">Events throughout the year that bring together teams from across Chicago and North America, celebrating Asian American culture while showcasing talent and building community.</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══ FULL-WIDTH PHOTO ═══ -->
<div class="full-photo-strip">
<img src="DSCF2441.jpeg" alt="Chicago United celebrating a win" style="transform: rotate(4deg) scale(1.16); object-position: 55% 65%; filter: brightness(1.5);" />
</div>
<!-- ═══ ABOUT / TEAMS ═══ -->
<section class="about" id="about">
<div class="wrap">
<div class="about-intro">
<div>
<div class="sec-eyebrow">9-Man Teams</div>
<h2 class="sec-head">Chicago United Volleyball Club</h2>
<div class="sec-rule"></div>
</div>
<div>
<p>Founded eight years ago to revive a sport that had gone dormant in the city, Chicago United Volleyball Club has grown into one of the most competitive Chinese 9-Man volleyball organizations in North America, participating in the annual NACIVT tournaments.</p>
<a href="https://abc7chicago.com/post/9-man-volleyball-chinatown-chicago-chinese-immigrants/11869560/" target="_blank">Learn More →</a>
</div>
</div>
<div class="team-grid">
<div class="team-cell">
<div class="tc-name">312</div>
<div class="tc-sub">Our Top Team</div>
</div>
<div class="team-cell">
<div class="tc-name">773</div>
<div class="tc-sub">Our Developmental Team</div>
</div>
<div class="team-cell">
<div class="tc-name">630</div>
<div class="tc-sub">Our Alumni Team</div>
</div>
</div>
<div class="shared-row">
<div class="shared-stat">
<div class="ss-k">Season</div>
<div class="ss-v">June — September</div>
</div>
<div class="shared-stat">
<div class="ss-k">Practice</div>
<div class="ss-v">2× Per Week</div>
</div>
<div class="shared-stat">
<div class="ss-k">Tournaments</div>
<div class="ss-v">2–4 Per Year</div>
</div>
</div>
<div class="ach-strip">
<div class="ach-ch">冠</div>
<div class="ach-main">
<div class="ach-label">2025 NACIVT in New York City</div>
<div class="ach-text">312 & 773 both placed 9th out of over 100 competing teams</div>
<a href="https://nacivt.com" target="_blank" style="color:rgba(255,255,255,0.6); font-size:13px; text-decoration:none; font-weight:600; margin-top:8px; display:inline-block;">Learn more about NACIVT →</a>
</div>
<div class="ach-divider"></div>
<div class="ach-main">
<div class="ach-label">2025 New York Mini</div>
<div class="ach-text">312 placed runner-up in the 2nd largest Chinese 9-Man tournament in the circuit. 773 placed T-17 out of 70 teams.</div>
<a href="https://m.youtube.com/watch?v=grHlHcFW5-8&feature=youtu.be" target="_blank" style="color:rgba(255,255,255,0.6); font-size:13px; text-decoration:none; font-weight:600; margin-top:8px; display:inline-block;">Watch the Finals →</a>
</div>
</div>
</div>
</section>
<!-- ═══ JUNIORS ═══ -->
<section class="juniors" id="juniors">
<div class="wrap">
<div class="sec-eyebrow">Youth Program</div>
<h2 class="sec-head">Gau Lung — Nine Dragons.</h2>
<div class="sec-rule"></div>
<p class="sec-lead" style="margin-bottom: 0;">Chicago United is proud to launch its first-ever youth program, dedicated to developing the next generation of nine man players right here in Chicago.</p>
<div class="juniors-layout">
<div class="gao-block">
<div class="gao-img-wrap">
<img src="img-jteam.jpg" alt="Gau Lung youth team" />
</div>
<div class="gao-overlay-text">
<div class="gao-ch">Youth Team — 九龍</div>
<div class="gao-name-big">Gau Lung</div>
<div class="gao-sub">Nine Dragons · 九龍</div>
<div class="gao-details">
<div class="gao-detail"><span class="gao-dk">Season</span><span class="gao-dv">June — September</span></div>
<div class="gao-detail"><span class="gao-dk">Practice</span><span class="gao-dv">2× Per Week</span></div>
<div class="gao-detail"><span class="gao-dk">Focus</span><span class="gao-dv">Skill + Culture + Character</span></div>
</div>
</div>
</div>
<div class="juniors-text">
<h3>Building the Pipeline</h3>
<p>Gau Lung (九龍, "Nine Dragons" in Cantonese) exists to create a sustainable future for nine man volleyball in Chicago. By introducing young players to the sport early, we build the foundation for the next generation of Chicago United athletes.</p>
<p>Players will develop their skills in a supportive environment that celebrates Chinese-American culture, guided by coaches and mentors who have played the game at the highest levels.</p>
<div class="ben-row"><span class="ben-dash">—</span><span class="ben-t">Learn and develop in a supportive, culturally connected environment</span></div>
<div class="ben-row"><span class="ben-dash">—</span><span class="ben-t">Clear pathway from youth to adult competitive teams</span></div>
<div class="ben-row"><span class="ben-dash">—</span><span class="ben-t">Build camaraderie among Chicago's young Asian athletes</span></div>
<div class="ben-row"><span class="ben-dash">—</span><span class="ben-t">Mentorship from Chicago United's adult players and coaches</span></div>
<a href="mailto:tony@chicagounitedvolleyball.org?subject=Youth%20Interest" class="btn-red">Email Us →</a>
</div>
</div>
<div class="j-photo-grid">
<div class="j-ph"><img src="img-jleftblock.jpg" alt="Gau Lung youth left block" /></div>
<div class="j-ph"><img src="img-jset.jpg" alt="Gau Lung youth setting" /></div>
<div class="j-ph"><img src="img-jhit.jpg" alt="Gau Lung youth hitting" /></div>
<div class="j-ph"><img src="img-jcisco.jpg" alt="Gau Lung youth" /></div>
</div>
<div class="photo-credit">Photography by <a href="https://www.instagram.com/srhkamera" target="_blank">@srhkamera</a></div>
</div>
</section>
<!-- ═══ GALLERY ═══ -->
<section class="gallery" id="gallery">
<div class="wrap">
<div class="sec-eyebrow">The Journey</div>
<h2 class="sec-head">The Journey.</h2>
<div class="sec-rule"></div>
<div class="gallery-grid">
<div class="g-photo"><img src="img-block-dark.jpg" alt="Chicago United blocking at the net" /></div>
<div class="g-photo"><img src="IMG_5648.PNG" alt="Chicago United outdoor court" /></div>
<div class="g-photo"><img src="083025_3819_Original.jpg" alt="Chicago United spike at the net" style="transform: rotate(-8deg) scale(1.15);" /></div>
<div class="g-photo"><img src="IMG_5685.jpg" alt="Chicago United team huddle" style="transform: scale(1.5);" /></div>
<div class="g-photo"><img src="img-dive.JPG" alt="Chicago United player diving" style="object-position: bottom;" /></div>
<div class="g-feature">
<div class="gf-ch">Follow Along · 关注我们</div>
<h3>@chicagounitedvolleyball</h3>
<p>Check out our Instagram for tournament action, team moments, and everything in between.</p>
<a href="https://instagram.com/chicagounitedvolleyball" target="_blank">Follow on Instagram →</a>
</div>
</div>
</div>
</section>
<!-- ═══ CONTACT ═══ -->
<section class="contact" id="contact">
<div class="wrap">
<div class="sec-eyebrow">Leadership</div>
<h2 class="sec-head">Staff & Contact.</h2>
<div class="sec-rule"></div>
<p class="contact-intro">As a fully volunteer-based organization, every hour we invest goes directly toward building opportunities for the next generation of Asian American athletes.</p>
<div class="contact-grid">
<div class="cc-card">
<div class="cc-role">Founder & Director</div>
<div class="cc-name">Tony Chan</div>
<p>Tony Chan founded Chicago United eight years ago with the mission of reviving nine man volleyball in Chicago. Under his leadership, the program has grown into one of the most competitive Chinese volleyball organizations in the Midwest.</p>
<a href="mailto:info@chicagounitedvolleyball.org">Email Us →</a>
</div>
<div class="cc-card">
<div class="cc-role">Men's Technical Director & Coach</div>
<div class="cc-name">Bryan Paliza</div>
<p>Bryan Paliza "BP" serves as Technical Director for Chicago United Volleyball Club, leading training quality and excellence across all programs. His coaching resume spans high school varsity, USAV High Performance, club, and 9-Man. As Boys Director at 630 volleyball since 2024, his teams have achieved top-five national finishes, including a 5th place finish at Nationals and multiple top-three division placements.</p>
<a href="mailto:info@chicagounitedvolleyball.org">Email Us →</a>
</div>
<div class="cc-card">
<div class="cc-role">Men's Coach</div>
<div class="cc-name">Eddie Kao</div>
<p>Eddie Kao has been a fixture in the Chicagoland volleyball scene for many years. A former Boys Director and coach at Drive Volleyball Club, he brings deep experience and a lifelong passion for the game. Eddie has been part of Chicago United since the very beginning, helping shape the program from the ground up.</p>
<a href="mailto:info@chicagounitedvolleyball.org">Email Us →</a>
</div>
<div class="cc-card">
<div class="cc-role">Youth Program</div>
<div class="cc-name">Youth Inquiries</div>
<div class="cc-sub">Gau Lung — Nine Dragons</div>
<p>Interested in enrolling a young player in the Gau Lung youth program? Reach out for more information about eligibility, commitment expectations, and the interest form.</p>
<a href="mailto:youth@chicagounitedvolleyball.org">Email Us →</a>
</div>
</div>
</div>
</section>
<!-- ═══ CTA BAND ═══ -->
<section class="cta-band" id="cta">
<div class="cta-ch-bg">家</div>
<div class="wrap">
<h2>Want to Support?</h2>
<p>As a 501(c)(3) non-profit and 100% volunteer organization, we rely on the generosity of donors like you. Every dollar goes directly toward our youth programming and community events throughout the year.</p>
<div class="cta-give-head">Ways You Can Give</div>
<div class="cta-give-list">
<div class="cta-give-item">
<span class="cta-give-label">Online</span>
<a href="https://www.paypal.com/ncp/payment/DKJZY3N4UXK5U" target="_blank" rel="noopener" class="cta-give-link">Donate via PayPal →</a>
</div>
<div class="cta-give-divider"></div>
<div class="cta-give-item">
<span class="cta-give-label">By Check</span>
<span class="cta-give-text">Make payable to "Chicago United Volleyball Club"</span>
</div>
</div>
<div class="cta-footnote"><em>All contributions are 100% tax-deductible.</em></div>
</div>
</section>
<!-- ═══ FULL-WIDTH PHOTO ═══ -->
<div class="full-photo-strip">
<img src="IMG_0719.JPG" alt="Chicago United team photo" style="object-position: center 60%;" />
</div>
<!-- ═══ PHOTO CREDITS ═══ -->
<div class="photo-credits-band">
<div class="wrap">
<p class="photo-credits-text">Special thanks to these talented photographers for capturing our team in action:</p>
<div class="photo-credits-list">
<span class="pc-entry">Sarah Kam <span class="pc-paren">(<a href="https://www.instagram.com/srhkamera" target="_blank">Instagram: @srhkamera</a>)</span></span>
<span class="photo-credits-dot">·</span>
<span class="pc-entry">Nick Chan <span class="pc-paren">(<a href="http://www.nickchanphotography.com" target="_blank">nickchanphotography.com</a>)</span></span>
<span class="photo-credits-dot">·</span>
<span class="pc-entry">Rosanna U <span class="pc-paren">(<a href="http://www.rosannau.com" target="_blank">rosannau.com</a>)</span></span>
</div>
</div>
</div>
<!-- ═══ FOOTER ═══ -->
<footer>
<div class="wrap">
<div class="footer-top">
<div>
<div class="footer-brand"><img src="Square-logo.png" alt="Chicago United" /></div>
</div>
<div class="footer-links">
<div class="fl">
<h4>Navigate</h4>
<ul>
<li><a href="#history">History</a></li>
<li><a href="#culture">Vision</a></li>
<li><a href="#about">9-Man Teams</a></li>
<li><a href="#juniors">Youth</a></li>
<li><a href="#contact">Leadership</a></li>
<li><a href="#cta">Donate</a></li>
</ul>
</div>
<div class="fl">
<h4>Programs</h4>
<ul>
<li><a href="#juniors">Gau Lung Youth</a></li>
<li><a href="#about">312</a></li>
<li><a href="#about">773</a></li>
<li><a href="#about">630</a></li>
</ul>
</div>
<div class="fl">
<h4>Connect</h4>
<ul>
<li><a href="#contact">Contact Us</a></li>
<li><a href="https://nacivt.com" target="_blank">NACIVT</a></li>
<li><a href="https://abc7chicago.com/post/9-man-volleyball-chinatown-chicago-chinese-immigrants/11869560/" target="_blank">Our Story</a></li>
<li><a href="#cta">Donate</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Chicago United Volleyball. All rights reserved.</p>
<div class="footer-socials">
<a href="https://instagram.com/chicagounitedvolleyball" target="_blank">Instagram</a>
</div>
</div>
</div>
</footer>
<script>
document.querySelector('.nav-hamburger').addEventListener('click', function() {
this.classList.toggle('open');
document.querySelector('.nav-links').classList.toggle('open');
});
document.querySelectorAll('.nav-links a').forEach(function(link) {
link.addEventListener('click', function() {
document.querySelector('.nav-hamburger').classList.remove('open');
document.querySelector('.nav-links').classList.remove('open');
});
});
</script>
</body>
</html>