Koperization commited on
Commit
8964482
·
verified ·
1 Parent(s): 08eb78a

Page Title: NAGAS Basketball – Select a Team

Browse files

Design Style:
- Theme: Dark mode
- Background Color: #121212
- Accent Color: #008080 (teal)
- Text Color: White (#FFFFFF) for headings, Light Grey (#CCCCCC) for body text
- Font: Montserrat (bold for headings, regular for body text)

Header:
- Use the existing NAGAS website header (logo, navigation menu, styles).

Layout:
1. Introduction Section:
- Title: "Welcome to NAGAS Basketball" (36pt, bold, white, centered)
- Subtitle: "Where skill, teamwork, and determination shine" (16pt, light grey, centered)
- Brief introduction (2-3 sentences, 16pt, light grey, centered, max-width: 800px):
"Our basketball program is built on fundamentals, sportsmanship, and a passion for the game. From junior development to competitive senior teams, we strive for excellence on and off the court. Join us in celebrating the spirit of basketball!"

2. Achievements Section:
- Title: "Our Basketball Achievements" (28pt, bold, white, centered)
- Subtitle: "Celebrating success on and off the court" (14pt, light grey, centered)
- 3-column grid of achievement cards (1 column on mobile).
- Achievement Card Design:
- Background: #1E1E1E
- Border: 1px solid #008080
- Rounded Corners: 6px
- Padding: 20px
- Content:
- Achievement title (18pt, bold, white)
- Year (14pt, teal)
- Description (14pt, light grey)
- Example basketball achievements:
- "PPAC Champions 2024" (Year: 2024, Description: "Senior A Boys team won the PPAC Basketball Championship.")
- "Sportsmanship Award 2023" (Year: 2023, Description: "Junior A Girls recognized for outstanding teamwork and fair play.")
- "Community Engagement 2022" (Year: 2022, Description: "Hosted free basketball camps for 150+ local youth.")

3. Team Selection Section:
- Title: "Our Basketball Teams" (28pt, bold, white, centered)
- Subtitle: "Select a team to view players" (16pt, light grey, centered)
- 2-column grid of 8 rectangular team tiles (1 column on mobile).
- Tile Design:
- Background: #1E1E1E
- Border: 1px solid #008080
- Rounded Corners: 6px
- Padding: 20px
- Hover Effect: Lift by 5px, box-shadow: 0 6px 12px rgba(0, 128, 128, 0.3)
- Content:
- Basketball SVG icon (white with teal outline)
- Team name (18pt, bold, white, centered)
- Team Tiles:
- Junior A Boys (basketball icon)
- Junior B Boys (basketball icon)
- Junior A Girls (basketball icon)
- Junior B Girls (basketball icon)
- Senior A Boys (basketball icon)
- Senior B Boys (basketball icon)
- Senior A Girls (basketball icon)
- Senior B Girls (basketball icon)

Spacing:
- 40px margin-bottom between sections
- 24px gap between achievement cards and team tiles
- 30px padding around each section

Interactivity:
- Hover effect for achievement cards and team tiles (0.3s transition, lift by 5px, box-shadow).

Navigation:
- Link each team tile to its respective basketball team page.

Responsive Design:
- Stack all sections and cards vertically on mobile.
- Set team tiles and achievement cards to 100% width on mobile.

Accessibility:
- Add alt text to all icons (e.g., "Junior A Boys Basketball Team").
- Ensure text and icons meet WCAG contrast standards.

Custom CSS:
/* Shared card styles */
.achievement-card, .team-tile {
transition: all 0.3s ease;
border: 1px solid #008080;
border-radius: 6px;
background-color: #1E1E1E;
padding: 20px;
text-align: center;
color: white;
}

/* Hover effects */
.achievement-card:hover, .team-tile:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 128, 128, 0.3);
}

/* Section titles */
.section-title {
margin-bottom: 20px;
}

/* Preserve existing header/footer styles */
header, footer {
/* Use existing site’s header/footer CSS */
width: 100%;
padding: 20px;
}

Files changed (1) hide show
  1. basketball.html +130 -443
basketball.html CHANGED
@@ -3,19 +3,18 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Basketball - NAGAS - Northbridge Athletic Groups and Sports</title>
7
- <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
- <script src="https://unpkg.com/feather-icons"></script>
10
  <script>
11
  tailwind.config = {
12
  theme: {
13
  extend: {
14
  colors: {
15
- primary: '#5ec0cc',
16
- secondary: '#5ECCA2',
17
  dark: '#121212',
18
- darker: '#0a0a0a'
 
19
  }
20
  }
21
  }
@@ -23,12 +22,33 @@
23
  </script>
24
  <style>
25
  body {
26
- font-family: 'Open Sans', sans-serif;
27
  background-color: #121212;
28
- color: #ffffff;
29
  }
30
  h1, h2, h3, h4, h5, h6 {
31
- font-family: 'Montserrat', sans-serif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  }
33
  .hero-image {
34
  position: absolute;
@@ -44,8 +64,8 @@
44
  transition: all 0.3s ease;
45
  }
46
  .tab-active {
47
- background-color: #5ec0cc;
48
- color: #0a0a0a;
49
  }
50
  .schedule-item:hover {
51
  background-color: #1e1e1e;
@@ -62,9 +82,9 @@
62
  <div class="container mx-auto px-4 py-3 flex justify-between items-center">
63
  <div class="flex items-center">
64
  <div class="w-10 h-10 bg-primary rounded-full mr-3"></div>
65
- <a href="index.html" class="text-xl font-extrabold"><span class="text-[#5ec0cc]">NAGAS</span><span class="text-white">ATHLETICS</span></a>
66
  </div>
67
- <nav class="hidden md:flex space-x-6">
68
  <a href="index.html" class="hover:text-primary">Home</a>
69
  <a href="about.html" class="hover:text-primary">About</a>
70
  <a href="teams.html" class="hover:text-primary">Teams</a>
@@ -72,8 +92,8 @@
72
  <a href="council.html" class="hover:text-primary">Council</a>
73
  <a href="news.html" class="hover:text-primary">News</a>
74
  <a href="get-involved.html" class="hover:text-primary">Get Involved</a>
75
- </nav>
76
- <button id="menu-toggle" class="md:hidden text-white">
77
  <i data-feather="menu"></i>
78
  </button>
79
  </div>
@@ -84,7 +104,7 @@
84
  <div class="flex justify-between items-center p-4 border-b border-primary">
85
  <div class="flex items-center">
86
  <div class="w-10 h-10 bg-primary rounded-full mr-3"></div>
87
- <span class="text-xl font-extrabold"><span class="text-[#5ec0cc]">NAGAS</span><span class="text-white">ATHLETICS</span></span>
88
  </div>
89
  <button id="menu-close" class="text-white">
90
  <i data-feather="x"></i>
@@ -100,9 +120,10 @@
100
  <a href="get-involved.html" class="block py-3 hover:text-primary border-b border-[#2e2e2e]">Get Involved</a>
101
  </nav>
102
  </div>
103
- <!-- Breadcrumb -->
 
104
  <div class="pt-20 pb-4 bg-darker border-b border-[#2e2e2e]">
105
- <div class="container mx-auto px-4">
106
  <nav class="text-sm">
107
  <a href="index.html" class="text-primary hover:underline">Home</a> >
108
  <a href="teams.html" class="text-primary hover:underline">Teams</a> >
@@ -111,433 +132,113 @@
111
  </div>
112
  </div>
113
 
114
- <!-- Hero Section -->
115
- <section class="relative h-96 flex items-center justify-center overflow-hidden">
116
- <img src="http://static.photos/sport/1200x630/1" alt="NAGAS Basketball Action" class="hero-image">
117
- <div class="absolute inset-0 bg-black bg-opacity-70"></div>
118
- <div class="relative z-10 text-center px-4">
119
- <h1 class="text-4xl md:text-5xl font-bold text-primary mb-2">NAGAS BASKETBALL</h1>
120
- <p class="text-xl mb-4">Juniors & Seniors Teams</p>
121
- <div class="inline-block bg-secondary text-dark py-1 px-4 rounded-full text-sm">2025-2026 Season</div>
122
- </div>
123
- </section>
124
-
125
- <!-- Team Introduction -->
126
- <section class="py-16 border-b border-[#2e2e2e]">
127
- <div class="container mx-auto px-4">
128
- <h2 class="text-3xl font-bold text-primary mb-8">ABOUT OUR PROGRAM</h2>
129
- <div class="grid grid-cols-1 lg:grid-cols-2 gap-8 items-center">
130
- <div>
131
- <p class="mb-4">Our basketball teams compete in the ISSAPP league, consistently ranking among the top contenders. We emphasize fundamentals, teamwork, and competitive spirit to develop well-rounded athletes.</p>
132
- <p class="mb-6">With state-of-the-art facilities and experienced coaching staff, our program prepares players for high-level competition while fostering personal growth and leadership skills.</p>
133
- </div>
134
- <div class="bg-[#1e1e1e] p-6 rounded-lg">
135
- <div class="flex items-center">
136
- <img src="http://static.photos/people/100x100/22" alt="Sarith Meng" class="w-16 h-16 rounded-full mr-4">
137
- <div>
138
- <h3 class="text-xl font-bold">Sarith Meng</h3>
139
- <p class="text-secondary">Head Basketball Coach</p>
140
- </div>
141
- </div>
142
- <p class="mt-4">Former national team player with over 10 years of coaching experience. Focuses on fundamentals and team chemistry.</p>
143
- </div>
144
- </div>
145
  </div>
146
  </section>
147
 
148
- <!-- Team Structure Section -->
149
- <section class="py-16 border-b border-[#2e2e2e] bg-[#0a0a0a]">
150
- <div class="container mx-auto px-4">
151
- <h2 class="text-3xl font-bold text-primary mb-8">OUR TEAMS</h2>
 
152
 
153
- <!-- Tabs -->
154
- <div class="flex mb-8 border-b border-[#2e2e2e]">
155
- <button id="juniorsTab" class="tab-active py-2 px-6 font-bold rounded-t">Juniors (Grades 6-8)</button>
156
- <button id="seniorsTab" class="py-2 px-6 font-bold rounded-t">Seniors (Grades 9-12)</button>
157
- </div>
158
-
159
- <!-- Juniors Content -->
160
- <div id="juniorsContent">
161
- <div class="mb-12">
162
- <h3 class="text-2xl font-bold mb-6 text-secondary">Team A Roster</h3>
163
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
164
- <!-- Player 1 -->
165
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
166
- <img src="http://static.photos/people/320x240/1" alt="Pisey Ching" class="w-full h-48 object-cover">
167
- <div class="p-4">
168
- <h4 class="font-bold text-lg">Pisey Ching</h4>
169
- <p class="text-secondary">Position: Guard</p>
170
- <p>Height: 5'6"</p>
171
- </div>
172
- </div>
173
-
174
- <!-- Player 2 -->
175
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
176
- <img src="http://static.photos/people/320x240/2" alt="Eung Sen Samnorb (Somnorb)" class="w-full h-48 object-cover">
177
- <div class="p-4">
178
- <h4 class="font-bold text-lg">Eung Sen Samnorb (Somnorb)</h4>
179
- <p class="text-secondary">Position: Forward</p>
180
- <p>Height: 5'8"</p>
181
- </div>
182
- </div>
183
-
184
- <!-- Player 3 -->
185
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
186
- <img src="http://static.photos/people/320x240/3" alt="Yuan Yi-Hua (Allan)" class="w-full h-48 object-cover">
187
- <div class="p-4">
188
- <h4 class="font-bold text-lg">Yuan Yi-Hua (Allan)</h4>
189
- <p class="text-secondary">Position: Center</p>
190
- <p>Height: 5'10"</p>
191
- </div>
192
- </div>
193
-
194
- <!-- Player 4 -->
195
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
196
- <img src="http://static.photos/people/320x240/4" alt="Nie Zifeng" class="w-full h-48 object-cover">
197
- <div class="p-4">
198
- <h4 class="font-bold text-lg">Nie Zifeng</h4>
199
- <p class="text-secondary">Position: Guard</p>
200
- <p>Height: 5'5"</p>
201
- </div>
202
- </div>
203
-
204
- <!-- Player 5 -->
205
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
206
- <img src="http://static.photos/people/320x240/5" alt="Danh Konvisoth (Visoth)" class="w-full h-48 object-cover">
207
- <div class="p-4">
208
- <h4 class="font-bold text-lg">Danh Konvisoth (Visoth)</h4>
209
- <p class="text-secondary">Position: Forward</p>
210
- <p>Height: 5'7"</p>
211
- </div>
212
- </div>
213
-
214
- <!-- Player 6 -->
215
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
216
- <img src="http://static.photos/people/320x240/6" alt="Prince" class="w-full h-48 object-cover">
217
- <div class="p-4">
218
- <h4 class="font-bold text-lg">Prince</h4>
219
- <p class="text-secondary">Position: Guard</p>
220
- <p>Height: 5'4"</p>
221
- </div>
222
- </div>
223
-
224
- <!-- Player 7 -->
225
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
226
- <img src="http://static.photos/people/320x240/7" alt="Te Ronald Vattanac (Ronald)" class="w-full h-48 object-cover">
227
- <div class="p-4">
228
- <h4 class="font-bold text-lg">Te Ronald Vattanac (Ronald)</h4>
229
- <p class="text-secondary">Position: Center</p>
230
- <p>Height: 5'9"</p>
231
- </div>
232
- </div>
233
- </div>
234
  </div>
235
 
236
- <div>
237
- <h3 class="text-2xl font-bold mb-6 text-secondary">Team B Roster</h3>
238
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
239
- <!-- Player 1 -->
240
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
241
- <img src="http://static.photos/people/320x240/8" alt="Pheng Aaron" class="w-full h-48 object-cover">
242
- <div class="p-4">
243
- <h4 class="font-bold text-lg">Pheng Aaron</h4>
244
- <p class="text-secondary">Position: Guard</p>
245
- <p>Height: 5'3"</p>
246
- </div>
247
- </div>
248
-
249
- <!-- Player 2 -->
250
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
251
- <img src="http://static.photos/people/320x240/9" alt="Reth Rithisak" class="w-full h-48 object-cover">
252
- <div class="p-4">
253
- <h4 class="font-bold text-lg">Reth Rithisak</h4>
254
- <p class="text-secondary">Position: Forward</p>
255
- <p>Height: 5'6"</p>
256
- </div>
257
- </div>
258
-
259
- <!-- Player 3 -->
260
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
261
- <img src="http://static.photos/people/320x240/10" alt="Hav Chansabrina (Sabrina)" class="w-full h-48 object-cover">
262
- <div class="p-4">
263
- <h4 class="font-bold text-lg">Hav Chansabrina (Sabrina)</h4>
264
- <p class="text-secondary">Position: Guard</p>
265
- <p>Height: 5'2"</p>
266
- </div>
267
- </div>
268
-
269
- <!-- Player 4 -->
270
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
271
- <img src="http://static.photos/people/320x240/11" alt="Nlron" class="w-full h-48 object-cover">
272
- <div class="p-4">
273
- <h4 class="font-bold text-lg">Nlron</h4>
274
- <p class="text-secondary">Position: Forward</p>
275
- <p>Height: 5'5"</p>
276
- </div>
277
- </div>
278
-
279
- <!-- Player 5 -->
280
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
281
- <img src="http://static.photos/people/320x240/12" alt="Ly Sovita" class="w-full h-48 object-cover">
282
- <div class="p-4">
283
- <h4 class="font-bold text-lg">Ly Sovita</h4>
284
- <p class="text-secondary">Position: Center</p>
285
- <p>Height: 5'7"</p>
286
- </div>
287
- </div>
288
-
289
- <!-- Player 6 -->
290
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
291
- <img src="http://static.photos/people/320x240/13" alt="Zhang Zhiling (Zhilling)" class="w-full h-48 object-cover">
292
- <div class="p-4">
293
- <h4 class="font-bold text-lg">Zhang Zhiling (Zhilling)</h4>
294
- <p class="text-secondary">Position: Guard</p>
295
- <p>Height: 5'3"</p>
296
- </div>
297
- </div>
298
-
299
- <!-- Player 7 -->
300
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
301
- <img src="http://static.photos/people/320x240/14" alt="Lina Jin Xi" class="w-full h-48 object-cover">
302
- <div class="p-4">
303
- <h4 class="font-bold text-lg">Lina Jin Xi</h4>
304
- <p class="text-secondary">Position: Forward</p>
305
- <p>Height: 5'4"</p>
306
- </div>
307
- </div>
308
-
309
- <!-- Player 8 -->
310
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
311
- <img src="http://static.photos/people/320x240/15" alt="Jing Yuan (Xing Xing)" class="w-full h-48 object-cover">
312
- <div class="p-4">
313
- <h4 class="font-bold text-lg">Jing Yuan (Xing Xing)</h4>
314
- <p class="text-secondary">Position: Guard</p>
315
- <p>Height: 5'2"</p>
316
- </div>
317
- </div>
318
-
319
- <!-- Player 9 -->
320
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
321
- <img src="http://static.photos/people/320x240/16" alt="Francesca Dean" class="w-full h-48 object-cover">
322
- <div class="p-4">
323
- <h4 class="font-bold text-lg">Francesca Dean</h4>
324
- <p class="text-secondary">Position: Forward</p>
325
- <p>Height: 5'5"</p>
326
- </div>
327
- </div>
328
-
329
- <!-- Player 10 -->
330
- <div class="player-card bg-[#1e1e1e] rounded-lg overflow-hidden">
331
- <img src="http://static.photos/people/320x240/17" alt="He Jiajing" class="w-full h-48 object-cover">
332
- <div class="p-4">
333
- <h4 class="font-bold text-lg">He Jiajing</h4>
334
- <p class="text-secondary">Position: Center</p>
335
- <p>Height: 5'6"</p>
336
- </div>
337
- </div>
338
- </div>
339
- </div>
340
- </div>
341
-
342
- <!-- Seniors Content -->
343
- <div id="seniorsContent" class="hidden">
344
- <div class="mb-12">
345
- <h3 class="text-2xl font-bold mb-6 text-secondary">Team A Roster</h3>
346
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
347
- <div class="bg-[#1e1e1e] rounded-lg p-8 text-center">
348
- <i data-feather="users" class="text-primary mx-auto mb-4" style="width: 48px; height: 48px;"></i>
349
- <p>Roster coming soon for 2025-2026 season</p>
350
- </div>
351
- </div>
352
  </div>
353
 
354
- <div>
355
- <h3 class="text-2xl font-bold mb-6 text-secondary">Team B Roster</h3>
356
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
357
- <div class="bg-[#1e1e1e] rounded-lg p-8 text-center">
358
- <i data-feather="users" class="text-primary mx-auto mb-4" style="width: 48px; height: 48px;"></i>
359
- <p>Roster coming soon for 2025-2026 season</p>
360
- </div>
361
- </div>
362
  </div>
363
  </div>
364
  </div>
365
  </section>
366
 
367
- <!-- Schedule Section -->
368
- <section class="py-16 border-b border-[#2e2e2e]">
369
- <div class="container mx-auto px-4">
370
- <h2 class="text-3xl font-bold text-primary mb-8">2025-2026 SCHEDULE</h2>
 
371
 
372
- <div class="mb-12">
373
- <h3 class="text-2xl font-bold mb-6 text-secondary">Upcoming Games</h3>
374
- <div class="space-y-4">
375
- <div class="schedule-item bg-[#1e1e1e] p-4 rounded-lg flex flex-col md:flex-row justify-between items-start md:items-center">
376
- <div>
377
- <p class="text-secondary">June 15, 2025 - 3:00 PM</p>
378
- <p class="font-bold">NAGAS vs. ISSPP</p>
379
- <p>NAGAS Sports Hall</p>
380
- </div>
381
- <button class="mt-2 md:mt-0 bg-primary text-dark font-bold py-2 px-4 rounded hover:bg-[#4ab3c6] transition">Add to Calendar</button>
382
- </div>
383
-
384
- <div class="schedule-item bg-[#1e1e1e] p-4 rounded-lg flex flex-col md:flex-row justify-between items-start md:items-center">
385
- <div>
386
- <p class="text-secondary">June 22, 2025 - 5:00 PM</p>
387
- <p class="font-bold">NAGAS vs. NIST</p>
388
- <p>Away - NIST Gymnasium</p>
389
- </div>
390
- <button class="mt-2 md:mt-0 bg-primary text-dark font-bold py-2 px-4 rounded hover:bg-[#4ab3c6] transition">Add to Calendar</button>
391
- </div>
392
-
393
- <div class="schedule-item bg-[#1e1e1e] p-4 rounded-lg flex flex-col md:flex-row justify-between items-start md:items-center">
394
- <div>
395
- <p class="text-secondary">June 29, 2025 - 2:00 PM</p>
396
- <p class="font-bold">NAGAS vs. NISB</p>
397
- <p>NAGAS Sports Hall</p>
398
- </div>
399
- <button class="mt-2 md:mt-0 bg-primary text-dark font-bold py-2 px-4 rounded hover:bg-[#4ab3c6] transition">Add to Calendar</button>
400
- </div>
401
- </div>
402
- </div>
403
-
404
- <div>
405
- <h3 class="text-2xl font-bold mb-6 text-secondary">Recent Results</h3>
406
- <div class="space-y-4">
407
- <div class="bg-[#1e1e1e] p-4 rounded-lg">
408
- <p class="font-bold">Basketball - Juniors A</p>
409
- <p>NAGAS 78 - 65 NISB <span class="text-green-500">W</span></p>
410
- </div>
411
-
412
- <div class="bg-[#1e1e1e] p-4 rounded-lg">
413
- <p class="font-bold">Basketball - Juniors B</p>
414
- <p>NAGAS 62 - 68 NIST <span class="text-red-500">L</span></p>
415
- </div>
416
- </div>
417
- </div>
418
-
419
- <div class="mt-8 text-center">
420
- <a href="schedule.html#basketball" class="inline-block bg-primary text-dark font-bold py-2 px-6 rounded hover:bg-[#4ab3c6] transition">Full Schedule</a>
421
- </div>
422
- </div>
423
- </section>
424
-
425
- <!-- Coaching Staff -->
426
- <section class="py-16 border-b border-[#2e2e2e] bg-[#0a0a0a]">
427
- <div class="container mx-auto px-4">
428
- <h2 class="text-3xl font-bold text-primary mb-8">MEET THE COACHES</h2>
429
- <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
430
- <div class="bg-[#1e1e1e] rounded-lg overflow-hidden">
431
- <div class="md:flex">
432
- <img src="http://static.photos/people/200x200/22" alt="Sarith Meng" class="w-full md:w-32 h-32 object-cover">
433
- <div class="p-6">
434
- <h3 class="text-xl font-bold">Sarith Meng</h3>
435
- <p class="text-secondary mb-2">Head Basketball Coach</p>
436
- <p>Former national team player with over 10 years of coaching experience.</p>
437
- </div>
438
- </div>
439
- </div>
440
 
441
- <div class="bg-[#1e1e1e] rounded-lg overflow-hidden">
442
- <div class="md:flex">
443
- <img src="http://static.photos/people/200x200/24" alt="Assistant Coach" class="w-full md:w-32 h-32 object-cover">
444
- <div class="p-6">
445
- <h3 class="text-xl font-bold">Kosal Khemarak</h3>
446
- <p class="text-secondary mb-2">Assistant Coach</p>
447
- <p>Former professional player, specializes in defensive strategies.</p>
448
- </div>
449
- </div>
450
- </div>
451
 
452
- <div class="bg-[#1e1e1e] rounded-lg overflow-hidden">
453
- <div class="md:flex">
454
- <img src="http://static.photos/people/200x200/25" alt="Assistant Coach" class="w-full md:w-32 h-32 object-cover">
455
- <div class="p-6">
456
- <h3 class="text-xl font-bold">Visal Sreytouch</h3>
457
- <p class="text-secondary mb-2">Assistant Coach</p>
458
- <p>Youth development specialist with focus on fundamentals.</p>
459
- </div>
460
- </div>
461
- </div>
462
- </div>
463
-
464
- <div class="mt-8 text-center">
465
- <a href="mailto:basketball-coaches@nagas.edu.kh" class="inline-block bg-primary text-dark font-bold py-2 px-6 rounded hover:bg-[#4ab3c6] transition">Contact Coaches</a>
466
- </div>
467
- </div>
468
- </section>
469
-
470
- <!-- Photo Gallery -->
471
- <section class="py-16 border-b border-[#2e2e2e]">
472
- <div class="container mx-auto px-4">
473
- <h2 class="text-3xl font-bold text-primary mb-8">ACTION SHOTS</h2>
474
- <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
475
- <div class="gallery-item">
476
- <img src="http://static.photos/sport/640x360/1" alt="Game Action" class="w-full h-48 object-cover rounded">
477
- </div>
478
- <div class="gallery-item">
479
- <img src="http://static.photos/sport/640x360/2" alt="Team Huddle" class="w-full h-48 object-cover rounded">
480
- </div>
481
- <div class="gallery-item">
482
- <img src="http://static.photos/sport/640x360/3" alt="Player Celebration" class="w-full h-48 object-cover rounded">
483
- </div>
484
- <div class="gallery-item">
485
- <img src="http://static.photos/sport/640x360/4" alt="Dunk" class="w-full h-48 object-cover rounded">
486
- </div>
487
- <div class="gallery-item">
488
- <img src="http://static.photos/sport/640x360/5" alt="Free Throw" class="w-full h-48 object-cover rounded">
489
- </div>
490
- <div class="gallery-item">
491
- <img src="http://static.photos/sport/640x360/6" alt="Defensive Play" class="w-full h-48 object-cover rounded">
492
- </div>
493
- <div class="gallery-item">
494
- <img src="http://static.photos/sport/640x360/7" alt="Team Photo" class="w-full h-48 object-cover rounded">
495
- </div>
496
- <div class="gallery-item">
497
- <img src="http://static.photos/sport/640x360/8" alt="Victory Celebration" class="w-full h-48 object-cover rounded">
498
- </div>
499
- </div>
500
- <div class="mt-8 text-center">
501
- <button class="bg-primary text-dark font-bold py-2 px-6 rounded hover:bg-[#4ab3c6] transition">View All Photos</button>
502
- </div>
503
- </div>
504
- </section>
505
-
506
- <!-- Achievements -->
507
- <section class="py-16 border-b border-[#2e2e2e] bg-[#0a0a0a]">
508
- <div class="container mx-auto px-4">
509
- <h2 class="text-3xl font-bold text-primary mb-8">TEAM HONORS</h2>
510
- <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
511
- <div class="bg-[#1e1e1e] p-6 rounded-lg text-center">
512
- <i data-feather="award" class="text-secondary mx-auto mb-4" style="width: 48px; height: 48px;"></i>
513
- <h3 class="text-xl font-bold mb-2">2024 ISSAPP Finalists</h3>
514
- <p>Reached championship finals with outstanding team performance</p>
515
- </div>
516
 
517
- <div class="bg-[#1e1e1e] p-6 rounded-lg text-center">
518
- <i data-feather="trending-up" class="text-secondary mx-auto mb-4" style="width: 48px; height: 48px;"></i>
519
- <h3 class="text-xl font-bold mb-2">Most Improved Team 2023</h3>
520
- <p>Significant performance improvement across all metrics</p>
521
- </div>
 
522
 
523
- <div class="bg-[#1e1e1e] p-6 rounded-lg text-center">
524
- <i data-feather="user" class="text-secondary mx-auto mb-4" style="width: 48px; height: 48px;"></i>
525
- <h3 class="text-xl font-bold mb-2">Individual Awards</h3>
526
- <p>Multiple players recognized for outstanding performance</p>
527
- </div>
528
- </div>
529
- </div>
530
- </section>
531
-
532
- <!-- Tryout Information -->
533
- <section class="py-16">
534
- <div class="container mx-auto px-4">
535
- <h2 class="text-3xl font-bold text-primary mb-8">JOIN THE TEAM</h2>
536
- <div class="bg-[#1e1e1e] rounded-lg p-8 max-w-3xl mx-auto text-center">
537
- <p class="text-xl mb-4">Tryouts for 2026-2027 season: <span class="text-secondary">September 10-12, 2025</span></p>
538
- <p class="mb-6">Open to all NISC students Grades 6-12</p>
539
- <p class="mb-8">Contact Coach Sarith Meng for details</p>
540
- <a href="get-involved.html#tryouts" class="inline-block bg-primary text-dark font-bold py-3 px-8 rounded hover:bg-[#4ab3c6] transition">Register Now</a>
 
 
 
 
 
 
 
 
 
541
  </div>
542
  </div>
543
  </section>
@@ -564,7 +265,7 @@
564
  </a>
565
  </div>
566
  <p class="mt-2">@NAGAS_NISC</p>
567
- </div>
568
  <div>
569
  <h3 class="text-xl font-bold mb-4">Quick Links</h3>
570
  <ul class="space-y-2">
@@ -581,24 +282,10 @@
581
  </div>
582
  </footer>
583
 
 
584
  <script>
585
  feather.replace();
586
 
587
- // Tab functionality
588
- document.getElementById('juniorsTab').addEventListener('click', function() {
589
- this.classList.add('tab-active');
590
- document.getElementById('seniorsTab').classList.remove('tab-active');
591
- document.getElementById('juniorsContent').classList.remove('hidden');
592
- document.getElementById('seniorsContent').classList.add('hidden');
593
- });
594
-
595
- document.getElementById('seniorsTab').addEventListener('click', function() {
596
- this.classList.add('tab-active');
597
- document.getElementById('juniorsTab').classList.remove('tab-active');
598
- document.getElementById('seniorsContent').classList.remove('hidden');
599
- document.getElementById('juniorsContent').classList.add('hidden');
600
- });
601
-
602
  // Mobile menu toggle
603
  document.getElementById('menu-toggle').addEventListener('click', function() {
604
  document.getElementById('mobile-menu').classList.remove('hidden');
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>NAGAS Basketball Select a Team</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
8
  <script src="https://cdn.tailwindcss.com"></script>
 
9
  <script>
10
  tailwind.config = {
11
  theme: {
12
  extend: {
13
  colors: {
14
+ primary: '#008080',
 
15
  dark: '#121212',
16
+ darker: '#0a0a0a',
17
+ card: '#1E1E1E'
18
  }
19
  }
20
  }
 
22
  </script>
23
  <style>
24
  body {
25
+ font-family: 'Montserrat', sans-serif;
26
  background-color: #121212;
27
+ color: #CCCCCC;
28
  }
29
  h1, h2, h3, h4, h5, h6 {
30
+ color: #FFFFFF;
31
+ font-weight: 700;
32
+ }
33
+ .achievement-card, .team-tile {
34
+ transition: all 0.3s ease;
35
+ border: 1px solid #008080;
36
+ border-radius: 6px;
37
+ background-color: #1E1E1E;
38
+ padding: 20px;
39
+ text-align: center;
40
+ color: white;
41
+ }
42
+ .achievement-card:hover, .team-tile:hover {
43
+ transform: translateY(-5px);
44
+ box-shadow: 0 6px 12px rgba(0, 128, 128, 0.3);
45
+ }
46
+ .section-title {
47
+ margin-bottom: 20px;
48
+ }
49
+ header, footer {
50
+ width: 100%;
51
+ padding: 20px;
52
  }
53
  .hero-image {
54
  position: absolute;
 
64
  transition: all 0.3s ease;
65
  }
66
  .tab-active {
67
+ background-color: #008080;
68
+ color: #ffffff;
69
  }
70
  .schedule-item:hover {
71
  background-color: #1e1e1e;
 
82
  <div class="container mx-auto px-4 py-3 flex justify-between items-center">
83
  <div class="flex items-center">
84
  <div class="w-10 h-10 bg-primary rounded-full mr-3"></div>
85
+ <a href="index.html" class="text-xl font-extrabold"><span class="text-[#008080]">NAGAS</span><span class="text-white">ATHLETICS</span></a>
86
  </div>
87
+ <nav class="hidden md:flex space-x-6">
88
  <a href="index.html" class="hover:text-primary">Home</a>
89
  <a href="about.html" class="hover:text-primary">About</a>
90
  <a href="teams.html" class="hover:text-primary">Teams</a>
 
92
  <a href="council.html" class="hover:text-primary">Council</a>
93
  <a href="news.html" class="hover:text-primary">News</a>
94
  <a href="get-involved.html" class="hover:text-primary">Get Involved</a>
95
+ </nav>
96
+ <button id="menu-toggle" class="md:hidden text-white">
97
  <i data-feather="menu"></i>
98
  </button>
99
  </div>
 
104
  <div class="flex justify-between items-center p-4 border-b border-primary">
105
  <div class="flex items-center">
106
  <div class="w-10 h-10 bg-primary rounded-full mr-3"></div>
107
+ <span class="text-xl font-extrabold"><span class="text-[#008080]">NAGAS</span><span class="text-white">ATHLETICS</span></span>
108
  </div>
109
  <button id="menu-close" class="text-white">
110
  <i data-feather="x"></i>
 
120
  <a href="get-involved.html" class="block py-3 hover:text-primary border-b border-[#2e2e2e]">Get Involved</a>
121
  </nav>
122
  </div>
123
+
124
+ <!-- Breadcrumb -->
125
  <div class="pt-20 pb-4 bg-darker border-b border-[#2e2e2e]">
126
+ <div class="container mx-auto px-4">
127
  <nav class="text-sm">
128
  <a href="index.html" class="text-primary hover:underline">Home</a> >
129
  <a href="teams.html" class="text-primary hover:underline">Teams</a> >
 
132
  </div>
133
  </div>
134
 
135
+ <!-- Introduction Section -->
136
+ <section class="py-16 text-center px-4" style="padding: 60px 20px;">
137
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Welcome to NAGAS Basketball</h1>
138
+ <p class="text-lg text-gray-300 mb-6">Where skill, teamwork, and determination shine</p>
139
+ <div class="max-w-3xl mx-auto">
140
+ <p class="text-base text-gray-300">
141
+ Our basketball program is built on fundamentals, sportsmanship, and a passion for the game.
142
+ From junior development to competitive senior teams, we strive for excellence on and off the court.
143
+ Join us in celebrating the spirit of basketball!
144
+ </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
145
  </div>
146
  </section>
147
 
148
+ <!-- Achievements Section -->
149
+ <section class="py-16 bg-[#0a0a0a] px-4" style="padding: 60px 20px;">
150
+ <div class="container mx-auto text-center">
151
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Our Basketball Achievements</h2>
152
+ <p class="text-gray-300 mb-12">Celebrating success on and off the court</p>
153
 
154
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
155
+ <!-- Achievement 1 -->
156
+ <div class="achievement-card">
157
+ <h3 class="text-xl font-bold mb-2">PPAC Champions 2024</h3>
158
+ <p class="text-primary text-sm mb-2">2024</p>
159
+ <p class="text-gray-300 text-sm">Senior A Boys team won the PPAC Basketball Championship.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  </div>
161
 
162
+ <!-- Achievement 2 -->
163
+ <div class="achievement-card">
164
+ <h3 class="text-xl font-bold mb-2">Sportsmanship Award 2023</h3>
165
+ <p class="text-primary text-sm mb-2">2023</p>
166
+ <p class="text-gray-300 text-sm">Junior A Girls recognized for outstanding teamwork and fair play.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  </div>
168
 
169
+ <!-- Achievement 3 -->
170
+ <div class="achievement-card">
171
+ <h3 class="text-xl font-bold mb-2">Community Engagement 2022</h3>
172
+ <p class="text-primary text-sm mb-2">2022</p>
173
+ <p class="text-gray-300 text-sm">Hosted free basketball camps for 150+ local youth.</p>
 
 
 
174
  </div>
175
  </div>
176
  </div>
177
  </section>
178
 
179
+ <!-- Team Selection Section -->
180
+ <section class="py-16 px-4" style="padding: 60px 20px;">
181
+ <div class="container mx-auto text-center">
182
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Our Basketball Teams</h2>
183
+ <p class="text-gray-300 mb-12">Select a team to view players</p>
184
 
185
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
186
+ <!-- Team Tiles -->
187
+ <a href="basketball-junior-a-boys.html" class="team-tile block">
188
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 mx-auto mb-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
189
+ <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
190
+ </svg>
191
+ <h3 class="text-xl font-bold">Junior A Boys</h3>
192
+ </a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
 
194
+ <a href="basketball-junior-b-boys.html" class="team-tile block">
195
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 mx-auto mb-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
196
+ <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
197
+ </svg>
198
+ <h3 class="text-xl font-bold">Junior B Boys</h3>
199
+ </a>
 
 
 
 
200
 
201
+ <a href="basketball-junior-a-girls.html" class="team-tile block">
202
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 mx-auto mb-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
203
+ <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
204
+ </svg>
205
+ <h3 class="text-xl font-bold">Junior A Girls</h3>
206
+ </a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
 
208
+ <a href="basketball-junior-b-girls.html" class="team-tile block">
209
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 mx-auto mb-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
210
+ <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
211
+ </svg>
212
+ <h3 class="text-xl font-bold">Junior B Girls</h3>
213
+ </a>
214
 
215
+ <a href="basketball-senior-a-boys.html" class="team-tile block">
216
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 mx-auto mb-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
217
+ <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
218
+ </svg>
219
+ <h3 class="text-xl font-bold">Senior A Boys</h3>
220
+ </a>
221
+
222
+ <a href="basketball-senior-b-boys.html" class="team-tile block">
223
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 mx-auto mb-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
224
+ <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
225
+ </svg>
226
+ <h3 class="text-xl font-bold">Senior B Boys</h3>
227
+ </a>
228
+
229
+ <a href="basketball-senior-a-girls.html" class="team-tile block">
230
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 mx-auto mb-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
231
+ <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
232
+ </svg>
233
+ <h3 class="text-xl font-bold">Senior A Girls</h3>
234
+ </a>
235
+
236
+ <a href="basketball-senior-b-girls.html" class="team-tile block">
237
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 mx-auto mb-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5">
238
+ <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
239
+ </svg>
240
+ <h3 class="text-xl font-bold">Senior B Girls</h3>
241
+ </a>
242
  </div>
243
  </div>
244
  </section>
 
265
  </a>
266
  </div>
267
  <p class="mt-2">@NAGAS_NISC</p>
268
+ </div>
269
  <div>
270
  <h3 class="text-xl font-bold mb-4">Quick Links</h3>
271
  <ul class="space-y-2">
 
282
  </div>
283
  </footer>
284
 
285
+ <script src="https://unpkg.com/feather-icons"></script>
286
  <script>
287
  feather.replace();
288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  // Mobile menu toggle
290
  document.getElementById('menu-toggle').addEventListener('click', function() {
291
  document.getElementById('mobile-menu').classList.remove('hidden');