-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
349 lines (331 loc) · 13 KB
/
Copy pathindex.html
File metadata and controls
349 lines (331 loc) · 13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShadowCrystal·FRC Team 11755</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<link rel="stylesheet" href="assets/style.css">
<link rel="icon" type="image/x-icon" href="assets/faviconlogo.png">
<style>
/* ── Hero ── */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 8rem 2rem 6rem;
overflow: hidden;
background: radial-gradient(ellipse at 50% 60%, rgba(91,31,175,0.4) 0%, rgba(26,10,58,0.6) 40%, var(--void) 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-logo {
width: 160px;
margin: 0 auto 2rem;
filter: drop-shadow(0 0 40px rgba(139,63,239,0.7));
animation: float 5s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
.hero-eyebrow {
font-family: 'Orbitron', sans-serif;
font-size: 0.7rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--plasma);
margin-bottom: 1.25rem;
}
.hero-title {
color: var(--white);
margin-bottom: 1.5rem;
}
.hero-title span { color: var(--crystal-glow); }
.hero-sub {
font-size: 1.1rem;
max-width: 52ch;
margin: 0 auto 2.5rem;
color: var(--star-dim);
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* ── Orbit ring decoration ── */
.orbit-ring {
position: absolute;
border-radius: 50%;
border: 1px solid rgba(255,16,204,0.18);
top: 50%; left: 50%;
transform: translate(-50%, -50%) rotate(-20deg);
pointer-events: none;
}
.orbit-ring-1 { width: 420px; height: 160px; }
.orbit-ring-2 { width: 680px; height: 260px; border-color: rgba(139,63,239,0.12); }
.orbit-ring-3 { width: 900px; height: 340px; border-color: rgba(255,16,204,0.07); }
/* ── Stats band ── */
.stats-band {
background: var(--void-2);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 2rem;
}
.stats-inner {
max-width: 900px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 2rem;
text-align: center;
}
.stat-number {
font-family: 'Orbitron', sans-serif;
font-size: 2.2rem;
font-weight: 900;
color: var(--white);
line-height: 1;
}
.stat-number .accent { color: var(--plasma); }
.stat-label { font-size: 0.8rem; color: var(--star-dim); margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.1em; }
/* ── Divisions preview ── */
.division-card { position: relative; overflow: hidden; }
.division-card::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at bottom right, rgba(91,31,175,0.15), transparent 65%);
border-radius: var(--radius-lg);
pointer-events: none;
}
.division-card > * {
position: relative;
z-index: 2;
}
.division-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.division-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
/* ── Mission strip ── */
.mission-strip {
background: linear-gradient(135deg, rgba(91,31,175,0.25), rgba(204,0,153,0.15));
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 3rem;
text-align: center;
max-width: 860px;
margin: 0 auto;
position: relative;
overflow: hidden;
}
.mission-strip blockquote {
font-family: 'Orbitron', sans-serif;
font-size: clamp(1rem, 2.5vw, 1.4rem);
font-weight: 600;
color: var(--white);
line-height: 1.5;
}
.mission-strip cite {
display: block;
font-family: 'DM Sans', sans-serif;
font-style: normal;
font-size: 0.8rem;
color: var(--plasma);
letter-spacing: 0.15em;
text-transform: uppercase;
margin-top: 1.25rem;
}
/* ── CTA section ── */
.cta-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.cta-card {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 2.5rem 2rem;
display: flex;
flex-direction: column;
gap: 1rem;
}
.cta-card h3 { color: var(--white); font-size: 1.3rem; }
.cta-card p { font-size: 0.9rem; }
.cta-card .btn { align-self: flex-start; margin-top: auto; }
</style>
</head>
<body>
<!-- Navigation -->
<nav class="SCnav">
<a href="index.html" class="nav-brand">
<img src="assets/logo.png" alt="ShadowCrystal logo">
<span class="nav-brand-name">SHADOWCRYSTAL ENGINEERING</span>
</a>
<button class="nav-toggle" aria-label="Toggle menu" onclick="document.querySelector('.nav-links').classList.toggle('open')">
<span></span><span></span><span></span>
</button>
<ul class="nav-links mt-3">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="programs.html">Programs</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="donate.html">Donate</a></li>
<li><a href="join.html" class="nav-cta">Join Us</a></li>
</ul>
</nav>
<!-- Hero -->
<section class="hero">
<div class="starfield"></div>
<div class="orbit-ring orbit-ring-1"></div>
<div class="orbit-ring orbit-ring-2"></div>
<div class="orbit-ring orbit-ring-3"></div>
<div class="hero-content">
<img src="assets/logo.png" alt="ShadowCrystal" class="hero-logo">
<p class="hero-eyebrow text-center w-100 mx-auto">Maryland · Montgomery & Frederick Counties · FRC 11755</p>
<h1 class="hero-title">
Build Real Machines.<br>
<span>Engineer Your Future.</span>
</h1>
<p class="hero-sub">
ShadowCrystal is a hands-on STEM organization where high school students design, build, and
launch hundred-pound robots.<br>
No prior experience required. <br>
<u>Learn more about our founding team <a href="https://shadowcrystal.org/about.html#:~:text=learning%20environment%20%E2%80%94%20always.-,Founding%20Team,-FOUNDER">here</a></u>.
</p>
<div class="hero-ctas">
<a href="join.html" class="btn btn-plasma">Join ShadowCrystal</a>
<a href="programs.html" class="btn btn-ghost">Explore Programs</a>
</div>
</div>
</section>
<!-- Stats -->
<div class="stats-band">
<div class="stats-inner">
<div>
<div class="stat-number">4</div>
<div class="stat-label">Student-Led Subteams</div>
</div>
<div>
<div class="stat-number">8</div>
<div class="stat-label">Student Members and Counting</div>
</div>
<div>
<div class="stat-number"><span class="accent">5</span></div>
<div class="stat-label">High Schools Globally with ShadowCrystal Student Recruits</div>
</div>
</div>
</div>
<!-- Summer camp advertisement -->
<section style="padding: 3rem 2rem 0 2rem;">
<div class="container text-center">
<a href="programs.html#summer-camps" style="display: inline-block;">
<div class="value-pill" style="border-left: none; border-right: 3px solid var(--plasma); border-radius: var(--radius) 0 0 var(--radius); margin: 0 auto; display: inline-flex; align-items: center; background: linear-gradient(135deg, rgba(255,16,204,0.15), rgba(91,31,175,0.25)); padding: 1rem 2rem;">
<span class="value-pill-icon">🔥</span>
<div class="text-start">
<div class="value-pill-title" style="color: var(--plasma); font-size: 1rem; letter-spacing: 0.05em;">STEMinars Now Open!</div>
<p style="font-size: 0.85rem; margin: 0; color: var(--white);">Join our latest, single-day, online evening STEMinars. Completely free to attend! →</p>
</div>
</div>
</a>
</div>
</section>
<!-- Mission Quote -->
<section style="padding-top: 0;">
<div class="container">
<div class="mission-strip">
<cite>— Our Mission —</cite>
<br>
<blockquote>
ShadowCrystal bridges the gap between theory and practice — creating confidence through competence.
</blockquote>
</div>
</div>
</section>
<!-- Who We Serve -->
<section>
<div class="container-lg">
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;">
<div>
<p class="section-label">Who We Serve</p>
<h2 class="section-title">Open to Every Student</h2>
<p style="margin-bottom: 1.25rem;">
ShadowCrystal's competitive teams are open to high school students (grades 9–12) from <strong style="color:var(--white)">any school</strong> in
Montgomery and Frederick Counties, regardless of experience, background, or financial situation. We also host seminars, summer camps, and other programs for wider age ranges.
</p>
<p style="margin-bottom: 2rem;">
We exist because high-impact engineering programs have historically been locked behind school
enrollment and steep costs. We're changing that.
</p>
<a href="join.html" class="btn btn-primary">See How to Join</a>
</div>
<div style="display: flex; flex-direction: column; gap: 1rem;">
<div class="value-pill">
<span class="value-pill-icon">🏫</span>
<div>
<div class="value-pill-title">Any School Welcome</div>
<p style="font-size:0.875rem; max-width:none;">Urbana, Damascus, Clarksburg, Richard Montgomery — we serve the whole community, not one campus.</p>
</div>
</div>
<div class="value-pill">
<span class="value-pill-icon">🔬</span>
<div>
<div class="value-pill-title">No Experience Required</div>
<p style="font-size:0.875rem; max-width:none;">Every student starts somewhere. Mentors and experienced students guide you from day one regardless of your skill level.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Split -->
<section style="padding-top: 0;">
<div class="container-lg">
<div class="cta-grid">
<div class="cta-card">
<span style="font-size:2rem;">🚀</span>
<h3>Ready to Build Something Real?</h3>
<p>Join ShadowCrystal and start working on actual robots, rockets, drones, and submersibles alongside expert mentors.</p>
<a href="join.html" class="btn btn-plasma">Join Now</a>
</div>
<div class="cta-card" style="border-color: rgba(255,16,204,0.2);">
<span style="font-size:2rem;">💜</span>
<h3>Help Us Reach More Students</h3>
<p>ShadowCrystal runs entirely on community support. Your donation funds parts, tools, camp registration, and more.</p>
<a href="donate.html" class="btn btn-ghost">Support Our Mission</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-inner">
<div class="footer-brand">
<img src="assets/logo.png" alt="ShadowCrystal">
<div class="footer-brand-name">SHADOWCRYSTAL</div>
<p class="footer-desc">A Maryland not-for-profit organization empowering high school engineers in Montgomery and Frederick Counties through hands-on STEM programs.</p>
</div>
<div class="footer-col">
<h4>Navigate</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="programs.html">Programs</a></li>
<li><a href="join.html">Join Us</a></li>
<li><a href="donate.html">Donate</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Fields of Expertise</h4>
<ul>
<li><a href="programs.html#technical">🤖 Technical</a></li>
<li><a href="programs.html#business">💼 Business</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<span>© 2026 ShadowCrystal. All rights reserved.</span>
<span>Montgomery & Frederick Counties, Maryland</span>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
</body>
</html>