forked from afro-architect/hyphy-healing
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
773 lines (690 loc) · 27.5 KB
/
Copy pathindex.html
File metadata and controls
773 lines (690 loc) · 27.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hyphy & Healing | Bay Area Wellness</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap" rel="stylesheet">
<style>
:root{
--red:#D72B2B;--red-dark:#A61E1E;
--blue:#1A3A8F;--blue-mid:#2450B5;--blue-light:#3D6FD4;--blue-pale:#E8EEFF;
--white:#FAFAFA;--off-white:#F2F0EB;
--black:#0C0C0C;--charcoal:#1C1C1E;--gray:#3A3A3C;--gray-mid:#6E6E73;--gray-light:#D1D1D6;
--border:rgba(12,12,12,0.1);
--font-d:'Bebas Neue',sans-serif;
--font-b:'DM Sans',sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{background:var(--off-white);color:var(--black);font-family:var(--font-b);font-size:16px;line-height:1.7;}
/* TICKER */
.ticker{background:var(--blue);padding:7px 0;overflow:hidden;white-space:nowrap;}
.ticker-inner{display:inline-block;animation:tick 30s linear infinite;font-family:var(--font-b);font-size:.72rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:#fff;}
@keyframes tick{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
/* NAV */
nav{background:var(--black);position:sticky;top:0;z-index:100;display:flex;align-items:center;justify-content:space-between;padding:0 2.5rem;height:62px;border-bottom:3px solid var(--red);}
.nav-logo{font-family:var(--font-d);font-size:1.6rem;letter-spacing:.04em;color:#fff;text-decoration:none;}
.nav-logo span{color:var(--red);}
nav ul{list-style:none;display:flex;gap:2rem;align-items:center;}
nav a{font-family:var(--font-b);font-size:.85rem;font-weight:600;color:rgba(255,255,255,.55);text-decoration:none;letter-spacing:.04em;text-transform:uppercase;transition:color .2s;padding:4px 0;border-bottom:2px solid transparent;}
nav a:hover{color:#fff;}
nav a.active{color:#fff;border-bottom-color:var(--red);}
/* PAGES */
.page{display:none;}
.page.active{display:block;}
/* HERO */
.hero{position:relative;background:var(--black);overflow:hidden;min-height:580px;display:flex;align-items:stretch;}
.hero-left{position:relative;z-index:10;width:46%;padding:4rem 3rem 4rem 3.5rem;display:flex;flex-direction:column;justify-content:center;}
.hero::before{content:'';position:absolute;top:0;bottom:0;left:42%;width:110px;background:var(--red);transform:skewX(-5deg);z-index:5;}
.hero::after{content:'';position:absolute;top:0;bottom:0;left:41.2%;width:16px;background:var(--blue);transform:skewX(-5deg);z-index:6;}
.hero-right{position:absolute;right:0;top:0;bottom:0;width:58%;z-index:4;background:linear-gradient(135deg,#0C1A3A 0%,#0C0C0C 65%);overflow:hidden;}
.hero-right::before{content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.035) 1px,transparent 1px);background-size:22px 22px;}
.hero-eyebrow{font-family:var(--font-b);font-size:.7rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--red);margin-bottom:1rem;display:flex;align-items:center;gap:.75rem;}
.hero-eyebrow::before{content:'';width:30px;height:3px;background:var(--red);display:block;}
.hero h1{font-family:var(--font-d);font-size:5.2rem;line-height:.92;letter-spacing:.02em;color:#fff;margin-bottom:1.5rem;}
.hero h1 .r{color:var(--red);display:block;}
.hero h1 .b{color:#6B96FF;display:block;}
.hero-sub{font-size:.94rem;color:rgba(255,255,255,.5);max-width:360px;margin-bottom:2rem;line-height:1.7;}
.hero-badges{display:flex;gap:.5rem;flex-wrap:wrap;}
.badge{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);color:rgba(255,255,255,.75);font-size:.7rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;padding:5px 12px;border-radius:3px;}
.hero-caption{position:absolute;bottom:1.5rem;right:2rem;z-index:20;text-align:right;}
.hero-caption p{font-size:.74rem;font-weight:600;color:rgba(255,255,255,.35);letter-spacing:.04em;}
@keyframes fu{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:translateY(0);}}
.f1{animation:fu .6s .05s both;}
.f2{animation:fu .6s .2s both;}
.f3{animation:fu .6s .35s both;}
/* MAIN */
.main-wrap{max-width:1200px;margin:0 auto;padding:3rem 2rem;display:grid;grid-template-columns:8fr 4fr;gap:2.5rem;align-items:start;}
.sec-label{font-family:var(--font-b);font-size:.68rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--red);margin-bottom:1rem;display:flex;align-items:center;gap:.6rem;}
.sec-label::after{content:'';flex:1;height:1px;background:var(--border);}
/* ARTICLES */
.feat{background:#fff;border:1px solid var(--border);overflow:hidden;margin-bottom:2.5rem;box-shadow:0 2px 20px rgba(0,0,0,.06);}
.feat-img{width:100%;height:410px;background:var(--charcoal);position:relative;overflow:hidden;}
.feat-body{padding:1.75rem;}
.atag{display:inline-block;background:var(--blue);color:#fff;font-size:.64rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:3px 10px;margin-bottom:.75rem;}
.atag.r{background:var(--red);}
.feat-body h2{font-family:var(--font-d);font-size:1.9rem;font-weight:400;line-height:1.1;margin-bottom:.75rem;letter-spacing:.02em;color:var(--black);}
.feat-body p,.acard-body p{color:var(--gray);font-size:.93rem;line-height:1.75;margin-bottom:.75rem;}
.pq{border-left:4px solid var(--red);padding:1rem 1.25rem;margin:1.25rem 0;background:var(--blue-pale);}
.pq p{font-size:1.05rem!important;color:var(--blue)!important;font-style:italic;font-weight:500!important;margin:0!important;line-height:1.55!important;}
.byline{font-size:.76rem;color:var(--gray-mid);border-top:1px solid var(--border);padding-top:.75rem;margin-top:1.25rem;display:flex;justify-content:space-between;}
.acard{background:#fff;border:1px solid var(--border);overflow:hidden;margin-bottom:2.5rem;box-shadow:0 2px 20px rgba(0,0,0,.06);}
.acard-img{width:100%;height:410px;background:var(--charcoal);position:relative;overflow:hidden;}
.acard-body{padding:1.5rem;}
.acard-body h3{font-family:var(--font-d);font-size:1.55rem;font-weight:400;line-height:1.15;margin-bottom:.6rem;letter-spacing:.02em;color:var(--black);}
/* image helpers */
.hero-img {
position: relative;
height: 420px; /* fixed height to control cropping */
overflow: visible;
}
.hero-img-el {
position: absolute;
top: 40%;
left: 55%;
width: 100%;
height: auto;
transform: translate(-50%, -25%);
}
.feat-img-el,
.acard-img-el {
position: absolute;
inset: 0;
width: 100%;
height: auto;
object-fit: cover;
display: block;
}
.mini-cal {
border-radius: 10px;
border: 1px solid var(--border);
background: #fff;
padding: 0.75rem 0.9rem 0.85rem;
}
.mini-cal-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 0.35rem;
}
.mini-cal-month {
font-family: var(--font-d);
font-size: 1.1rem;
letter-spacing: .06em;
}
.mini-cal-meta {
font-size: .72rem;
text-transform: uppercase;
letter-spacing: .12em;
color: var(--gray-mid);
}
.mini-cal-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 2px;
margin-bottom: 0.4rem;
font-size: .7rem;
}
.mini-cal-dow {
text-align: center;
font-weight: 700;
text-transform: uppercase;
color: var(--gray-mid);
}
.mini-cal-day {
border: none;
background: transparent;
padding: 4px 0;
border-radius: 5px;
text-align: center;
cursor: default;
font-family: var(--font-b);
font-size: .7rem;
color: var(--gray);
}
.mini-cal-day.is-event {
background: rgba(215,43,43,.08);
color: var(--red-dark);
font-weight: 600;
}
.mini-cal-legend {
display: flex;
align-items: center;
gap: 6px;
font-size: .7rem;
color: var(--gray-mid);
}
.mini-cal-legend .dot {
width: 10px;
height: 10px;
border-radius: 999px;
display: inline-block;
}
.mini-cal-legend .dot.event {
background: var(--red);
}
/* EVENTS LIST */
.ev-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.ev-item {
display: flex;
gap: 0.75rem;
align-items: flex-start;
padding: 0.75rem 0;
border-top: 1px solid var(--border);
}
.ev-item:first-child {
border-top: none;
}
.ev-date {
min-width: 52px;
text-align: center;
padding: 0.35rem 0.4rem;
border-radius: 8px;
background: #fff;
border: 1px solid var(--border);
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
}
.ev-date .mo {
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--gray-mid);
}
.ev-date .dy {
font-family: var(--font-d);
font-size: 1.3rem;
line-height: 1;
color: var(--black);
}
.ev-info h4 {
font-size: 0.95rem;
margin: 0 0 0.15rem;
}
.ev-info p {
font-size: 0.85rem;
margin: 0;
color: var(--gray);
}
.dot {
width: 10px;
height: 10px;
border-radius: 999px;
margin-top: 0.25rem;
}
.mv{
display:flex;
flex-direction:column; /* stack image + text */
gap:0.75rem;
}
.mv-p{
flex:0 0 auto; /* let it size to its content */
}
.mv-i{
flex:1 1 auto;
}
/* Keep the image inside its box without affecting columns */
.mv-p img{
display:block;
width:100%; /* let it fill whatever width the layout gives */
height:auto;
max-height:160px; /* or 140px, 180px, whatever feels right */
object-fit:cover;
border-radius:8px;
}
</style>
</head>
<body>
<!-- simple ticker + nav if you want them later
<div class="ticker">
<div class="ticker-inner">HYPPHY & HEALING · BAY AREA TEEN WELLNESS · MENTAL HEALTH THROUGH MOVEMENT</div>
</div>
-->
<nav>
<a href="index.html" class="nav-logo">Hyphy <span>& Healing</span></a>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
<section class="hero">
<div class="hero-left">
<div class="hero-eyebrow">Mental Health · Movement · Bay Area</div>
<h1>
HYPHY <span class="r">& HEALING</span>
<span class="b">FOR BAY AREA TEENS</span>
</h1>
<p class="hero-sub">
A storytelling hub for community-rooted, joy-centered mental health practices —
from neon dance classes to neighborhood kiki sessions.
</p>
<div class="hero-badges">
<span class="badge">Dance & Movement</span>
<span class="badge">Youth Voices</span>
<span class="badge">Community Care</span>
</div>
</div>
<div class="hero-right">
<div class="hero-img">
<img
src="demo-hero.png"
alt="Violet the Valkyries mascot leading a diverse teen dance class in a neon-lit Bay Area community gym"
class="hero-img-el"
>
</div>
</div>
</section>
<main class="main-wrap">
<!-- LEFT COLUMN -->
<section>
<div class="sec-label">Health & Movement</div>
<!-- FEATURE: Kiki -->
<article class="feat">
<div class="feat-img">
<img
src="demo-feature-kiki.png"
alt="Teens laughing and vibing together during a kiki-style movement session"
class="feat-img-el"
>
</div>
<div class="feat-body">
<span class="atag r">Joy & Community</span>
<h2>Why a Daily Kiki High-Key Might Be the Best Thing You can Do For Your Mental Health</h2>
<p>Every Thursday night, a crew of teens gather at the home of their friend Aiokho —
not to work on a group project, but for a kiki: with laughter, a funny podcast, snacks, and
space to be loud, soft, or somewhere in between.</p>
<div class="byline">
<span>By <strong>The Academy of Pediatrics</strong></span>
<span>April 2026 · 5 min read</span>
</div>
</div>
</article>
<!-- FEATURE: Smeeze / calendar teaser -->
<article class="acard">
<div class="acard-img">
<img
src="demo-smeeze.png"
alt="Violet mid smeeze dance move in a neon-lit community gym with a diverse class"
class="acard-img-el"
>
</div>
<div class="acard-body">
<span class="atag">Upcoming Class</span>
<h3>Learn the Smeeze With Violet at This Bay Area Community Dance Clinic</h3>
<p>Drop in, learn the steps, and move at your own pace — no prior dance
experience, perfect fits, or perfect mood required.</p>
<div class="byline">
<span>Saturday · 3–5 PM · Oakland</span>
<span>Free · Registration encouraged</span>
</div>
</div>
</article>
<!-- INLINE CALENDAR IN LEFT COLUMN -->
<div class="sec-label">This Week</div>
<div class="acard" style="padding:1.5rem;">
<div class="acard-body" style="padding:0; display:flex; flex-direction:column; gap:1rem;">
<h3 style="margin-bottom:0.75rem;">Youth Event Calendar</h3>
<!-- Physical-style month calendar -->
<div class="mini-cal">
<div class="mini-cal-header">
<span class="mini-cal-month">April 2026</span>
<span class="mini-cal-meta">Bay Area · PT</span>
</div>
<div class="mini-cal-grid">
<div class="mini-cal-dow">S</div>
<div class="mini-cal-dow">M</div>
<div class="mini-cal-dow">T</div>
<div class="mini-cal-dow">W</div>
<div class="mini-cal-dow">T</div>
<div class="mini-cal-dow">F</div>
<div class="mini-cal-dow">S</div>
<!-- Leading blanks for layout (tweak if you want exact real dates) -->
<div></div><div></div><div></div><div></div>
<button class="mini-cal-day">1</button>
<button class="mini-cal-day">2</button>
<button class="mini-cal-day">3</button>
<button class="mini-cal-day">4</button>
<button class="mini-cal-day">5</button>
<button class="mini-cal-day is-event">6</button>
<button class="mini-cal-day">7</button>
<button class="mini-cal-day">8</button>
<button class="mini-cal-day">9</button>
<button class="mini-cal-day">10</button>
<button class="mini-cal-day">11</button>
<button class="mini-cal-day is-event">12</button>
<button class="mini-cal-day">13</button>
<button class="mini-cal-day">14</button>
<button class="mini-cal-day">15</button>
<button class="mini-cal-day">16</button>
<button class="mini-cal-day">17</button>
<button class="mini-cal-day">18</button>
<button class="mini-cal-day is-event">19</button>
<button class="mini-cal-day">20</button>
<!-- add/remove days as you like -->
</div>
<div class="mini-cal-legend">
<span class="dot event"></span> Event week · Kiki, Neon Cardio, Smeeze
</div>
</div>
<!-- Summary + detailed events list -->
<div>
<!-- Simple summary list -->
<div class="ev-item">
<div class="ev-date">
<span class="mo">Apr</span><span class="dy">6</span>
</div>
<div style="display:flex;gap:.5rem;flex:1;align-items:flex-start;">
<div class="dot" style="background:#D72B2B;"></div>
<div class="ev-info">
<h4>Kiki & Chill — Rec Room, SoMa</h4>
<p>Weekly kiki with music, snacks, and space to decompress.
6–8 PM · Rec Room, SoMa</p>
</div>
</div>
</div>
<div class="ev-item">
<div class="ev-date">
<span class="mo">Apr</span><span class="dy">12</span>
</div>
<div style="display:flex;gap:.5rem;flex:1;align-items:flex-start;">
<div class="dot" style="background:#2450B5;"></div>
<div class="ev-info">
<h4>Neon Dance Cardio — Bryant St Gym</h4>
<p>Club beats, colored lights, and high‑energy cardio that feels like a party.
7–9 PM · Bryant St Community Gym</p>
</div>
</div>
</div>
<div class="ev-item">
<div class="ev-date">
<span class="mo">Apr</span><span class="dy">19</span>
</div>
<div style="display:flex;gap:.5rem;flex:1;align-items:flex-start;">
<div class="dot" style="background:#1C1C1E;"></div>
<div class="ev-info">
<h4>Smeeze Clinic w/ Violet — Oakland</h4>
<p>Learn the Smeeze with Violet and friends, all levels welcome.
3–5 PM · Community Center, Oakland</p>
</div>
</div>
</div>
<!-- Detailed May events list -->
<div class="ev-list">
<div class="ev-item">
<div class="ev-date">
<span class="mo">May</span><span class="dy">3</span>
</div>
<div style="display:flex;gap:.5rem;flex:1;align-items:flex-start;">
<div class="dot" style="background:#D72B2B;"></div>
<div class="ev-info">
<h4>Free Pho Giveaway — Pho Saigon, Tenderloin</h4>
<p>Free bowls for teens with student ID. Sponsored by Bay Area Teen Health Initiative.
4pm–7pm · 676 Geary St, SF</p>
</div>
</div>
</div>
<div class="ev-item">
<div class="ev-date">
<span class="mo">May</span><span class="dy">5</span>
</div>
<div style="display:flex;gap:.5rem;flex:1;align-items:flex-start;">
<div class="dot" style="background:#2450B5;"></div>
<div class="ev-info">
<h4>Morning Tai Chi — Dolores Park</h4>
<p>Free community tai chi for all ages. Stress relief and flexibility.
8am–9:30am · Mission Terrace, SF</p>
</div>
</div>
</div>
<div class="ev-item">
<div class="ev-date">
<span class="mo">May</span><span class="dy">9</span>
</div>
<div style="display:flex;gap:.5rem;flex:1;align-items:flex-start;">
<div class="dot" style="background:#1C1C1E;"></div>
<div class="ev-info">
<h4>Teen Boxing Clinic — Tenderloin Boxing Gym</h4>
<p>Free intro boxing for teens 13–18. Build confidence, meet
Bay Area youth athletes. 3pm–5:30pm</p>
</div>
</div>
</div>
<div class="ev-item">
<div class="ev-date">
<span class="mo">May</span><span class="dy">10</span>
</div>
<div style="display:flex;gap:.5rem;flex:1;align-items:flex-start;">
<div class="dot" style="background:#D72B2B;"></div>
<div class="ev-info">
<h4>Cumbia & Salsa Night — SOMA Community Center</h4>
<p>Live DJ, free lessons, all-levels floor time. Cardio
that feels like celebration. 6pm–9pm · SoMa, SF</p>
</div>
</div>
</div>
<div class="ev-item">
<div class="ev-date">
<span class="mo">May</span><span class="dy">16</span>
</div>
<div style="display:flex;gap:.5rem;flex:1;align-items:flex-start;">
<div class="dot" style="background:#2450B5;"></div>
<div class="ev-info">
<h4>Bay Area Team Wellness Games — Laney College, Oakland</h4>
<p>Relay races, group yoga, and team breathing challenges.
Open to Bay Area HS teams of 5. 10am–3pm</p>
</div>
</div>
</div>
<div class="ev-item">
<div class="ev-date">
<span class="mo">May</span><span class="dy">17</span>
</div>
<div style="display:flex;gap:.5rem;flex:1;align-items:flex-start;">
<div class="dot" style="background:#D72B2B;"></div>
<div class="ev-info">
<h4>Birria Ramen Pop-Up — Fruitvale, Oakland</h4>
<p>Birria ramen, chamoy elotes, agua fresca. First 100
teens eat free. 12pm–5pm · International Blvd</p>
</div>
</div>
</div>
<div
<!-- repeat your other .ev-item blocks here -->
</div>
</div>
</section>
<!-- RIGHT COLUMN (THREE SEPARATE CARDS) -->
<aside>
<!-- May the 4th Feature Card -->
<article class="acard sw">
<div class="acard-body">
<div class="wh"><span>▶</span> May the 4th</div>
<div class="mv">
<div class="mv-p">
<img src="may4.png"
alt="May 4th event poster with boba and lightsabers">
<span class="visually-hidden">You know what it is...</span>
</div>
<div class="mv-i">
<h4>Come Play with the Stars!</h4>
<p>
May 4th the first 100 people to come through will get free drinks.
Come for the boba, stay for the light saber‑inspired movement breaks,
guided breathing, and free Baby Yoda photo booth while you kick it
with your friends. Costumes and fandom fits welcome but not required.
</p>
<p>
Hosted by local community orgs — always check their page or IG for
exact time and location before you pull up.
</p>
<a href="events.html#may4" class="cta-sm">See May 4th details →</a>
</div>
</div>
</div>
</article>
<!-- Soft Clubbing Coffee Shop DJ Event Card -->
<article class="acard sw">
<div class="acard-body">
<div class="wh"><span>▶</span> Soft Clubbing in a Plant Store?</div>
<div class="mv">
<div class="mv-p">
<img src="softclub.png"
alt="Soft clubbing DJ set in a plant store">
</div>
<div class="mv-i">
<h4>Tap into Your Bay Area Roots</h4>
<p>
Local teens are invited to come study, sketch, and move to the music at Black Girls
Greenhouse. This daytime party is set in a beautifully curated
Oakland plant store and will feature three of the hottest local DJs
spinning hyphy‑inspired tracks that reflect the best of Bay Area
culture.
</p>
<p>
Perfect if you want to dance and blow off steam in an intergenerational
space where there’s no pressure to drink. Check BGGH’s page for dates,
accessibility info, pics, and prices. Do it for the ’Gram.
</p>
<a href="events.html#soft-club" class="cta-sm">Check the DJ lineup →</a>
</div>
</div>
</div>
</article>
<!-- Albums card -->
<article class="acard sw">
<div class="acard-body">
<div class="wh"><span>▶</span> Albums to Watch</div>
<div class="alb">
<div class="alb-art"
style="background:linear-gradient(135deg,#D72B2B,#6B0000);">🎤</div>
<div class="alb-info">
<h4>Bay Certified Vol. 3</h4>
<p>Bay Area Hyphy Collective</p>
<span class="pill">May 15 Drop</span>
</div>
</div>
<div class="alb">
<div class="alb-art"
style="background:linear-gradient(135deg,#1A3A8F,#06174A);">🎶</div>
<div class="alb-info">
<h4>Scraper Sunsets</h4>
<p>DJ Shadow Thizz feat. Oakland All-Stars</p>
<span class="pill">June 2 Drop</span>
</div>
</div>
<div class="alb">
<div class="alb-art"
style="background:linear-gradient(135deg,#1C1C1E,#3A3A3C);">🎸</div>
<div class="alb-info">
<h4>Eastside Elevation</h4>
<p>La Raza Waves — East Bay Cumbia & Rap</p>
<span class="pill">June 20 Drop</span>
</div>
</div>
<div class="alb">
<div class="alb-art"
style="background:linear-gradient(135deg,#2450B5,#D72B2B);">🎹</div>
<div class="alb-info">
<h4>Kiki Season</h4>
<p>Sideshow Anthem Series</p>
<span class="pill">July Drop</span>
</div>
</div>
</div>
</article>
<!-- Movies card -->
<article class="acard sw">
<div class="acard-body">
<div class="wh"><span>▶</span> Upcoming Movies</div>
<div class="mv">
<div class="mv-p"
style="background:linear-gradient(180deg,#1A0808,#4A0C0C);">🎥</div>
<div class="mv-i">
<h4>Hyphy Nation</h4>
<p>Doc following three Bay Area teens finding identity through hyphy culture.
Opens June 6.</p>
</div>
</div>
<div class="mv">
<div class="mv-p"
style="background:linear-gradient(180deg,#0C1A0C,#1A3A8F);">🎥</div>
<div class="mv-i">
<h4>Mango & Meridian</h4>
<p>Coming-of-age story across Oakland, Daly City & East Palo Alto.
Opens June 27.</p>
</div>
</div>
<div class="mv">
<div class="mv-p"
style="background:linear-gradient(180deg,#1C1C1E,#3A3A3C);">🎥</div>
<div class="mv-i">
<h4>The Block Remembers</h4>
<p>Animated feature celebrating Fruitvale, Fillmore & Bayview history.
July 4.</p>
</div>
</div>
<div class="mv">
<div class="mv-p"
style="background:linear-gradient(180deg,#0C0C1E,#2450B5);">🎥</div>
<div class="mv-i">
<h4>Scraper Dreams</h4>
<p>Bay Area teen drama. "Stand By Me meets hyphy." Wide release Aug 1.</p>
</div>
</div>
</div>
</article>
<!-- Study help / AI card -->
<article class="acard ai-ad">
<div class="acard-body">
<span class="ad-lbl">Sponsored</span>
<h3>Meet Your <em>AI Study Buddy</em> — Learn to Use AI the Right Way</h3>
<p>Personalized help with homework, essays, and projects — an
AI tutor that teaches you to use AI tools ethically and effectively.</p>
<ul class="ad-ul">
<li>Homework help, step by step</li>
<li>Learn when & how to use AI fairly</li>
<li>Essay outlining in your own voice</li>
<li>Free for Bay Area students</li>
</ul>
<a class="cta" href="#">Try AI Tutor Free →</a>
</div>
</article>
<!-- The Plug: Community Events Card -->
<article class="acard sw">
<div class="acard-body">
<div class="wh"><span>▶</span> The Plug: for Bay Area Events</div>
<div class="mv">
<div class="mv-p"
style="background:linear-gradient(180deg,#0C1A0C,#1A3A8F);">📍</div>
<div class="mv-i">
<h4>Community Fits, Crafts & Plants</h4>
<p>
One place to find mending nights at Community Fits, crafternoons at
the lake, Bay Area BIPOC plant shop events, foraging walks, tea‑making
for stress relief, and more low‑key ways to take care of yourself.
</p>
<p>
These are all hosted by different community groups, so always click
through to their site or IG to confirm dates, times, and locations
before you head out.
</p>
<a href="events.html#the-plug" class="cta-sm">Browse all events →</a>
</div>
</div>
</div>
</article>
</aside>
</main>
</div>
</body>
</html>