Koperization's picture
🐳 12/04 - 16:57 - CREATE THE ABOUT NAGAS PAGE FOR NAGAS ATHLETICS WEBSITE WITH THE FOLLOWING BRUTALIST SPECIFICATIONS: DESIGN SYSTEM: Background: Pure black (#121212) with subtle noise texture and 1
bb09235 verified
Raw
History Blame Contribute Delete
47.1 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ABOUT NAGAS | NAGAS ATHLETICS</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/lucide@latest"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #121212;
color: #FFFFFF;
font-family: 'Montserrat', sans-serif;
overflow-x: hidden;
}
/* Noise Texture */
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.03;
z-index: -1;
pointer-events: none;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
/* Dotted Grid Lines */
body::after {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
background-image:
linear-gradient(to right, #333333 1px, transparent 1px),
linear-gradient(to bottom, #333333 1px, transparent 1px);
background-size: 50px 50px;
opacity: 0.3;
}
.font-mono {
font-family: 'Courier New', Courier, monospace;
}
.hover-border-teal:hover {
border-color: #5ec0cc !important;
}
/* Mega Menu */
.mega-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: #121212;
border-top: 1px solid #333333;
border-bottom: 1px solid #333333;
z-index: 50;
}
.mega-menu.active {
display: block;
}
.mega-menu-column {
border-right: 1px solid #333333;
}
.mega-menu-column:last-child {
border-right: none;
}
/* Timeline Styles */
.timeline-item {
border-left: 1px solid #333333;
padding-left: 20px;
margin-bottom: 24px;
position: relative;
}
.timeline-item::before {
content: '';
position: absolute;
left: -5px;
top: 0;
width: 9px;
height: 9px;
background-color: #5ec0cc;
}
/* Table Styles */
.brutalist-table {
width: 100%;
border-collapse: collapse;
}
.brutalist-table th,
.brutalist-table td {
border: 1px solid #333333;
padding: 12px;
text-align: left;
}
.brutalist-table th {
color: #5ec0cc;
text-transform: uppercase;
font-weight: bold;
border-bottom: 2px solid #333333;
}
.brutalist-table tr:nth-child(even) {
background-color: rgba(255,255,255,0.03);
}
/* Hero Background */
.hero-bg {
background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('http://static.photos/sport/1200x630/50');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
@media (max-width: 768px) {
.timeline-item {
border-left: none;
padding-left: 0;
}
.timeline-item::before {
display: none;
}
}
</style>
</head>
<body class="min-h-screen">
<!-- Header -->
<header class="w-full border-b border-[#333333] relative bg-[#121212]">
<div class="max-w-full px-4 sm:px-8 py-4 flex justify-between items-center">
<div class="flex items-center">
<a href="index.html" class="text-[#5ec0cc] font-bold uppercase" style="font-family: 'Montserrat', sans-serif; font-size: 2.5rem; letter-spacing: 0.1em;">NAGAS</a>
<span class="text-[#5ec0cc] font-bold uppercase ml-8 hidden md:block" style="font-family: 'Montserrat', sans-serif; font-size: 1rem; letter-spacing: 0.1em;">ABOUT</span>
</div>
<!-- Desktop Menu Button -->
<button id="menuBtn" class="hidden md:block border border-[#5ec0cc] px-4 py-2 text-[#5ec0cc] font-bold uppercase tracking-wider hover:bg-[#5ec0cc] hover:text-[#121212] transition-colors" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">
MENU
</button>
<!-- Mobile Hamburger -->
<button id="mobileMenuBtn" class="md:hidden border border-[#5ec0cc] p-2 hover-border-teal">
<i data-lucide="menu" class="w-6 h-6 text-[#5ec0cc]"></i>
</button>
</div>
<!-- Mega Menu Desktop -->
<div id="megaMenu" class="mega-menu">
<div class="grid grid-cols-1 md:grid-cols-5">
<div class="mega-menu-column p-6">
<h3 class="text-[#5ec0cc] font-bold uppercase mb-4 text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em;">TEAMS</h3>
<ul class="space-y-2">
<li><a href="basketball.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Basketball</a></li>
<li><a href="volleyball.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Volleyball</a></li>
<li><a href="football.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Football</a></li>
<li><a href="track.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Track & Field</a></li>
<li><a href="swimming.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Swimming</a></li>
</ul>
</div>
<div class="mega-menu-column p-6">
<h3 class="text-[#5ec0cc] font-bold uppercase mb-4 text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em;">SCHEDULE</h3>
<ul class="space-y-2">
<li><a href="schedule.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Full Schedule</a></li>
<li><a href="schedule.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Calendar</a></li>
</ul>
</div>
<div class="mega-menu-column p-6">
<h3 class="text-[#5ec0cc] font-bold uppercase mb-4 text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em;">NEWS & MEDIA</h3>
<ul class="space-y-2">
<li><a href="news.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Latest News</a></li>
<li><a href="news.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Media Gallery</a></li>
</ul>
</div>
<div class="mega-menu-column p-6">
<h3 class="text-[#5ec0cc] font-bold uppercase mb-4 text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em;">ATHLETIC COUNCIL</h3>
<ul class="space-y-2">
<li><a href="council.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Council Members</a></li>
<li><a href="council.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Mission</a></li>
</ul>
</div>
<div class="mega-menu-column p-6">
<h3 class="text-[#5ec0cc] font-bold uppercase mb-4 text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em;">GET INVOLVED</h3>
<ul class="space-y-2">
<li><a href="involved.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Tryouts</a></li>
<li><a href="involved.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Volunteer</a></li>
<li><a href="form.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Athlete Form</a></li>
</ul>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobileMenu" class="hidden md:hidden border-t border-[#333333] bg-[#121212]">
<div class="p-4 space-y-4">
<a href="teams.html" class="block text-white font-mono uppercase border-b border-[#333333] pb-2">TEAMS</a>
<a href="schedule.html" class="block text-white font-mono uppercase border-b border-[#333333] pb-2">SCHEDULE</a>
<a href="news.html" class="block text-white font-mono uppercase border-b border-[#333333] pb-2">NEWS & MEDIA</a>
<a href="council.html" class="block text-white font-mono uppercase border-b border-[#333333] pb-2">ATHLETIC COUNCIL</a>
<a href="involved.html" class="block text-white font-mono uppercase">GET INVOLVED</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="w-full hero-bg flex flex-col justify-center items-center px-4 border-b border-[#333333]" style="height: 60vh;">
<h1 class="text-[#5ec0cc] font-bold uppercase text-center leading-none" style="font-family: 'Montserrat', sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: 0.2em; line-height: 1;">
ABOUT NAGAS ATHLETICS
</h1>
<h2 class="text-white uppercase text-center tracking-wider mt-4" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: clamp(1.2rem, 3vw, 2.5rem); letter-spacing: 0.1em;">
STRENGTH • RESILIENCE • UNITY
</h2>
<div class="mt-8" style="width: 200px; height: 2px; background-color: #ff9900;"></div>
</section>
<!-- Our History Section -->
<section class="w-full border-t border-[#333333] py-12 px-4 md:px-8">
<div class="max-w-7xl mx-auto">
<h2 class="text-[#5ec0cc] font-bold uppercase tracking-wider mb-2" style="font-family: 'Montserrat', sans-serif; font-size: 2rem; letter-spacing: 0.1em;">OUR HISTORY</h2>
<p class="text-white uppercase tracking-wider mb-8" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1.1rem; letter-spacing: 0.1em;">The Journey of NAGAS Athletics</p>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<!-- Left Column -->
<div>
<p class="text-white leading-[1.6] text-base mb-4" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">
Inspired by the mythical serpent representing strength and resilience, NAGAS Athletics embodies the spirit of competition and unity at Northbridge International School Cambodia. Our program is built on the values of sportsmanship, teamwork, and personal growth.
</p>
<p class="text-white leading-[1.6] text-base" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">
Established as part of NISC's commitment to holistic student development, NAGAS has grown into a powerhouse in interschool sports, competing at the highest levels in ISSAPP and ASAC tournaments.
</p>
</div>
<!-- Right Column - Timeline -->
<div>
<div class="space-y-6">
<div class="timeline-item">
<span class="text-[#5ec0cc] font-mono text-lg font-bold block mb-1">2010</span>
<p class="text-white text-sm leading-[1.5] ml-4">NAGAS founded with inaugural basketball and volleyball teams</p>
</div>
<div class="timeline-item">
<span class="text-[#5ec0cc] font-mono text-lg font-bold block mb-1">2015</span>
<p class="text-white text-sm leading-[1.5] ml-4">First ISSAPP championship won in Boys Basketball</p>
</div>
<div class="timeline-item">
<span class="text-[#5ec0cc] font-mono text-lg font-bold block mb-1">2018</span>
<p class="text-white text-sm leading-[1.5] ml-4">Aquatics Centre opened, launching competitive swimming program</p>
</div>
<div class="timeline-item">
<span class="text-[#5ec0cc] font-mono text-lg font-bold block mb-1">2020</span>
<p class="text-white text-sm leading-[1.5] ml-4">Sports Hall expansion completed with new tennis courts</p>
</div>
<div class="timeline-item">
<span class="text-[#5ec0cc] font-mono text-lg font-bold block mb-1">2023</span>
<p class="text-white text-sm leading-[1.5] ml-4">Record-breaking season with 5 championships across all sports</p>
</div>
</div>
<p class="text-[#5ec0cc] font-bold uppercase mt-8" style="font-family: 'Montserrat', sans-serif; font-size: 2.5rem; letter-spacing: 0.1em; line-height: 1.2;">
FIGHTING NAGAS SPIRIT
</p>
</div>
</div>
</div>
</section>
<!-- World-Class Facilities Section -->
<section class="w-full border-t border-[#333333] py-12 px-4 md:px-8">
<div class="max-w-7xl mx-auto">
<h2 class="text-[#5ec0cc] font-bold uppercase tracking-wider mb-2 text-center" style="font-family: 'Montserrat', sans-serif; font-size: 2rem; letter-spacing: 0.1em;">WORLD-CLASS FACILITIES</h2>
<p class="text-white uppercase tracking-wider mb-4 text-center" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1.1rem; letter-spacing: 0.1em;">Premier training and competition venues for NAGAS athletes</p>
<div class="mx-auto mb-8" style="width: 200px; height: 2px; background-color: #ff9900;"></div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Aquatics Centre -->
<div class="border border-[#333333] p-6 bg-[#121212] hover-border-teal transition-colors">
<div class="flex items-start justify-between mb-4">
<h3 class="text-[#5ec0cc] font-bold uppercase tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em;">AQUATICS CENTRE</h3>
<i data-lucide="waves" class="w-10 h-10 text-[#5ec0cc] flex-shrink-0"></i>
</div>
<img src="http://static.photos/indoor/300x200/10" alt="Aquatics Centre" class="w-full h-[200px] object-cover mb-4 border border-[#333333]">
<ul class="space-y-2 text-white font-mono text-sm leading-[1.6]">
<li>• 25m, 8-lane FINA-approved competition pool</li>
<li>• Professional Colorado timing system with scoreboard</li>
<li>• Starting blocks and backstroke ledges</li>
<li>• Adjoining splash pool for training</li>
<li>• Modern gender-separated changing rooms with showers</li>
<li>• Spectator seating for 200+</li>
<li>• Optimal water temperature (27-28°C)</li>
</ul>
<button class="w-full mt-4 bg-[#5ec0cc] text-[#121212] border-none py-2 px-4 font-bold uppercase tracking-wider hover:bg-[#4ab3c6] transition-colors" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">
Learn More
</button>
</div>
<!-- Sports Hall -->
<div class="border border-[#333333] p-6 bg-[#121212] hover-border-teal transition-colors">
<div class="flex items-start justify-between mb-4">
<h3 class="text-[#5ec0cc] font-bold uppercase tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em;">SPORTS HALL</h3>
<i data-lucide="dribbble" class="w-10 h-10 text-[#5ec0cc] flex-shrink-0"></i>
</div>
<img src="http://static.photos/indoor/300x200/11" alt="Sports Hall" class="w-full h-[200px] object-cover mb-4 border border-[#333333]">
<ul class="space-y-2 text-white font-mono text-sm leading-[1.6]">
<li>• THREE basketball/volleyball courts:</li>
<li class="pl-4">- 2 full-size courts (28m × 15m) in main hall</li>
<li class="pl-4">- 1 court in original primary gym building</li>
<li>• Three ITF-standard tennis courts</li>
<li>• Professional sports flooring surface</li>
<li>• Retractable seating for 500 spectators</li>
<li>• LED lighting system (1000 lux)</li>
<li>• Air-conditioned environment</li>
</ul>
<button class="w-full mt-4 bg-[#5ec0cc] text-[#121212] border-none py-2 px-4 font-bold uppercase tracking-wider hover:bg-[#4ab3c6] transition-colors" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">
Learn More
</button>
</div>
<!-- Primary Gym & Fields -->
<div class="border border-[#333333] p-6 bg-[#121212] hover-border-teal transition-colors">
<div class="flex items-start justify-between mb-4">
<h3 class="text-[#5ec0cc] font-bold uppercase tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em;">PRIMARY GYM & FIELDS</h3>
<i data-lucide="goal" class="w-10 h-10 text-[#5ec0cc] flex-shrink-0"></i>
</div>
<img src="http://static.photos/outdoor/300x200/12" alt="Football Field" class="w-full h-[200px] object-cover mb-4 border border-[#333333]">
<ul class="space-y-2 text-white font-mono text-sm leading-[1.6]">
<li>• PRIMARY GYM:</li>
<li class="pl-4">- Original basketball/volleyball court</li>
<li class="pl-4">- Dedicated locker rooms with showers</li>
<li class="pl-4">- Equipment storage and training areas</li>
<li>• OUTDOOR FIELDS:</li>
<li class="pl-4">- Two football pitches (105m × 68m)</li>
<li class="pl-4">- Natural grass with underground drainage</li>
<li class="pl-4">- Tree-lined perimeter for wind protection</li>
</ul>
<button class="w-full mt-4 bg-[#5ec0cc] text-[#121212] border-none py-2 px-4 font-bold uppercase tracking-wider hover:bg-[#4ab3c6] transition-colors" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">
Learn More
</button>
</div>
</div>
</div>
</section>
<!-- Team Structure Section -->
<section class="w-full border-t border-[#333333] py-12 px-4 md:px-8">
<div class="max-w-7xl mx-auto">
<h2 class="text-[#5ec0cc] font-bold uppercase tracking-wider mb-2" style="font-family: 'Montserrat', sans-serif; font-size: 2rem; letter-spacing: 0.1em;">OUR TEAM STRUCTURE</h2>
<p class="text-white uppercase tracking-wider mb-4" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1.1rem; letter-spacing: 0.1em;">Organized for Development and Competition</p>
<p class="text-white leading-[1.6] text-base mb-8 max-w-3xl" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">
Our unique structure allows athletes to develop from junior levels to varsity competition, with multiple teams per sport to accommodate all skill levels.
</p>
<!-- Visual Diagram -->
<div class="border border-[#333333] p-6 md:p-8 bg-[#121212] overflow-x-auto">
<div class="min-w-[600px]">
<!-- Juniors Section -->
<div class="mb-8">
<h3 class="text-white font-bold uppercase text-center mb-6 pb-2 border-b border-[#333333]" style="font-family: 'Montserrat', sans-serif; font-size: 1.2rem; letter-spacing: 0.1em;">JUNIORS (GRADES 6-8)</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="text-center">
<p class="text-[#5ec0cc] font-bold uppercase mb-2 text-sm" style="font-family: 'Montserrat', sans-serif;">BASKETBALL</p>
<div class="border border-[#333333] p-2 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">MALE</p>
</div>
<div class="flex gap-2 justify-center">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
<div class="border border-[#333333] p-2 mt-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">FEMALE</p>
</div>
<div class="flex gap-2 justify-center mt-2">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
</div>
<div class="text-center">
<p class="text-[#5ec0cc] font-bold uppercase mb-2 text-sm" style="font-family: 'Montserrat', sans-serif;">VOLLEYBALL</p>
<div class="border border-[#333333] p-2 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">MALE</p>
</div>
<div class="flex gap-2 justify-center">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
<div class="border border-[#333333] p-2 mt-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">FEMALE</p>
</div>
<div class="flex gap-2 justify-center mt-2">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
</div>
<div class="text-center">
<p class="text-[#5ec0cc] font-bold uppercase mb-2 text-sm" style="font-family: 'Montserrat', sans-serif;">FOOTBALL</p>
<div class="border border-[#333333] p-2 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">COED</p>
</div>
<div class="flex gap-2 justify-center">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
</div>
<div class="text-center">
<p class="text-[#5ec0cc] font-bold uppercase mb-2 text-sm" style="font-family: 'Montserrat', sans-serif;">TRACK & SWIM</p>
<div class="border border-[#333333] p-2 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">MALE</p>
</div>
<div class="border border-[#333333] px-3 py-1 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">JUNIOR</p>
</div>
<div class="border border-[#333333] p-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">FEMALE</p>
</div>
<div class="border border-[#333333] px-3 py-1 mt-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">JUNIOR</p>
</div>
</div>
</div>
</div>
<!-- Arrow Down -->
<div class="flex justify-center my-6">
<i data-lucide="arrow-down" class="w-8 h-8 text-white"></i>
</div>
<!-- Seniors Section -->
<div>
<h3 class="text-white font-bold uppercase text-center mb-6 pb-2 border-b border-[#333333]" style="font-family: 'Montserrat', sans-serif; font-size: 1.2rem; letter-spacing: 0.1em;">SENIORS (GRADES 9-12)</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="text-center">
<p class="text-[#5ec0cc] font-bold uppercase mb-2 text-sm" style="font-family: 'Montserrat', sans-serif;">BASKETBALL</p>
<div class="border border-[#333333] p-2 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">MALE</p>
</div>
<div class="flex gap-2 justify-center">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
<div class="border border-[#333333] p-2 mt-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">FEMALE</p>
</div>
<div class="flex gap-2 justify-center mt-2">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
</div>
<div class="text-center">
<p class="text-[#5ec0cc] font-bold uppercase mb-2 text-sm" style="font-family: 'Montserrat', sans-serif;">VOLLEYBALL</p>
<div class="border border-[#333333] p-2 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">MALE</p>
</div>
<div class="flex gap-2 justify-center">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
<div class="border border-[#333333] p-2 mt-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">FEMALE</p>
</div>
<div class="flex gap-2 justify-center mt-2">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
</div>
<div class="text-center">
<p class="text-[#5ec0cc] font-bold uppercase mb-2 text-sm" style="font-family: 'Montserrat', sans-serif;">FOOTBALL</p>
<div class="border border-[#333333] p-2 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">COED</p>
</div>
<div class="flex gap-2 justify-center">
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">A</p>
</div>
<div class="border border-[#333333] px-3 py-1">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">B</p>
</div>
</div>
</div>
<div class="text-center">
<p class="text-[#5ec0cc] font-bold uppercase mb-2 text-sm" style="font-family: 'Montserrat', sans-serif;">TRACK & SWIM</p>
<div class="border border-[#333333] p-2 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">MALE</p>
</div>
<div class="border border-[#333333] px-3 py-1 mb-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">SENIOR</p>
</div>
<div class="border border-[#333333] p-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">FEMALE</p>
</div>
<div class="border border-[#333333] px-3 py-1 mt-2">
<p class="text-white uppercase text-xs" style="font-family: 'Montserrat', sans-serif; font-weight: 400;">SENIOR</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Leadership Directory Section -->
<section class="w-full border-t border-b border-[#333333] py-12 px-4 md:px-8">
<div class="max-w-7xl mx-auto">
<h2 class="text-[#5ec0cc] font-bold uppercase tracking-wider mb-2" style="font-family: 'Montserrat', sans-serif; font-size: 2rem; letter-spacing: 0.1em;">LEADERSHIP</h2>
<p class="text-white uppercase tracking-wider mb-8" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1.1rem; letter-spacing: 0.1em;">Meet the Athletic Council and Coaching Staff</p>
<div class="overflow-x-auto">
<table class="brutalist-table min-w-[600px]">
<thead>
<tr>
<th class="font-mono text-sm uppercase p-4 text-left border-r border-[#333333]" style="font-family: 'Montserrat', sans-serif;">PHOTO</th>
<th class="font-mono text-sm uppercase p-4 text-left border-r border-[#333333]" style="font-family: 'Montserrat', sans-serif;">NAME</th>
<th class="font-mono text-sm uppercase p-4 text-left border-r border-[#333333]" style="font-family: 'Montserrat', sans-serif;">ROLE</th>
<th class="font-mono text-sm uppercase p-4 text-left" style="font-family: 'Montserrat', sans-serif;">BIO</th>
</tr>
</thead>
<tbody class="text-white">
<tr>
<td class="p-4 border-r border-[#333333]">
<img src="http://static.photos/people/80x80/1" alt="Andrew Dean" class="w-20 h-20 object-cover border border-[#333333]">
</td>
<td class="p-4 border-r border-[#333333]">
<p class="font-bold uppercase text-base" style="font-family: 'Montserrat', sans-serif;">ANDREW DEAN</p>
</td>
<td class="p-4 border-r border-[#333333] font-mono text-sm uppercase">
Athletic Director
</td>
<td class="p-4 text-sm leading-[1.4]" style="max-width: 300px;">
Overseeing all NAGAS sports programs and athletic development at NISC.
</td>
</tr>
<tr class="bg-[rgba(255,255,255,0.03)]">
<td class="p-4 border-r border-[#333333]">
<img src="http://static.photos/people/80x80/2" alt="Leang Chinh Dom" class="w-20 h-20 object-cover border border-[#333333]">
</td>
<td class="p-4 border-r border-[#333333]">
<p class="font-bold uppercase text-base" style="font-family: 'Montserrat', sans-serif;">LEANG CHINH DOM</p>
</td>
<td class="p-4 border-r border-[#333333] font-mono text-sm uppercase">
Athletic Council President
</td>
<td class="p-4 text-sm leading-[1.4]" style="max-width: 300px;">
Leading the student athletic council and representing athlete voices.
</td>
</tr>
<tr>
<td class="p-4 border-r border-[#333333]">
<img src="http://static.photos/people/80x80/3" alt="Sarah Johnson" class="w-20 h-20 object-cover border border-[#333333]">
</td>
<td class="p-4 border-r border-[#333333]">
<p class="font-bold uppercase text-base" style="font-family: 'Montserrat', sans-serif;">SARAH JOHNSON</p>
</td>
<td class="p-4 border-r border-[#333333] font-mono text-sm uppercase">
Head Coach
</td>
<td class="p-4 text-sm leading-[1.4]" style="max-width: 300px;">
15 years coaching experience, specializing in player development and strategic gameplay.
</td>
</tr>
<tr class="bg-[rgba(255,255,255,0.03)]">
<td class="p-4 border-r border-[#333333]">
<img src="http://static.photos/people/80x80/4" alt="Michael Chen" class="w-20 h-20 object-cover border border-[#333333]">
</td>
<td class="p-4 border-r border-[#333333]">
<p class="font-bold uppercase text-base" style="font-family: 'Montserrat', sans-serif;">MICHAEL CHEN</p>
</td>
<td class="p-4 border-r border-[#333333] font-mono text-sm uppercase">
Aquatics Director
</td>
<td class="p-4 text-sm leading-[1.4]" style="max-width: 300px;">
Former national team swimmer, managing all aquatic programs and facility operations.
</td>
</tr>
<tr>
<td class="p-4 border-r border-[#333333]">
<img src="http://static.photos/people/80x80/5" alt="Emma Rodriguez" class="w-20 h-20 object-cover border border-[#333333]">
</td>
<td class="p-4 border-r border-[#333333]">
<p class="font-bold uppercase text-base" style="font-family: 'Montserrat', sans-serif;">EMMA RODRIGUEZ</p>
</td>
<td class="p-4 border-r border-[#333333] font-mono text-sm uppercase">
Track & Field Coach
</td>
<td class="p-4 text-sm leading-[1.4]" style="max-width: 300px;">
Specialized in sprint and jump training, multiple regional championship titles.
</td>
</tr>
</tbody>
</table>
</div>
<div class="text-center mt-8">
<a href="council.html" class="inline-block border border-[#5ec0cc] text-[#5ec0cc] px-6 py-3 font-bold uppercase tracking-wider hover:bg-[#5ec0cc] hover:text-[#121212] transition-colors" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">
View Full Council
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="w-full py-12 px-4 md:px-8 bg-[#121212]">
<div class="grid grid-cols-1 md:grid-cols-3 gap-0 max-w-6xl mx-auto">
<div class="border border-[#333333] p-6 md:border-r-0">
<h4 class="text-[#5ec0cc] font-bold uppercase mb-4 tracking-wider" style="font-family: 'Montserrat', sans-serif;">CONTACT</h4>
<p class="text-white font-mono text-sm">nagas@nisc.edu.kh</p>
</div>
<div class="border border-[#333333] p-6 md:border-r-0">
<h4 class="text-[#5ec0cc] font-bold uppercase mb-4 tracking-wider" style="font-family: 'Montserrat', sans-serif;">QUICK LINKS</h4>
<ul class="space-y-2">
<li><a href="index.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Home</a></li>
<li><a href="teams.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Teams</a></li>
<li><a href="schedule.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Schedule</a></li>
<li><a href="news.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">News & Media</a></li>
<li><a href="council.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Athletic Council</a></li>
<li><a href="involved.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">Get Involved</a></li>
</ul>
</div>
<div class="border border-[#333333] p-6">
<h4 class="text-[#5ec0cc] font-bold uppercase mb-4 tracking-wider" style="font-family: 'Montserrat', sans-serif;">SOCIAL</h4>
<p class="text-white font-mono text-sm">@NAGAS</p>
<div class="flex gap-4 mt-4">
<a href="#" class="text-white hover:text-[#5ec0cc] transition-colors"><i data-lucide="instagram" class="w-5 h-5"></i></a>
<a href="#" class="text-white hover:text-[#5ec0cc] transition-colors"><i data-lucide="facebook" class="w-5 h-5"></i></a>
<a href="#" class="text-white hover:text-[#5ec0cc] transition-colors"><i data-lucide="twitter" class="w-5 h-5"></i></a>
</div>
</div>
</div>
<div class="text-center mt-8 pt-8 border-t border-[#333333] max-w-6xl mx-auto">
<p class="font-mono text-xs uppercase" style="color: #666666;">© 2025 NAGAS ATHLETICS. ALL RIGHTS RESERVED.</p>
</div>
</footer>
<script>
// Initialize Lucide Icons
lucide.createIcons();
// Menu Toggle
const menuBtn = document.getElementById('menuBtn');
const megaMenu = document.getElementById('megaMenu');
const mobileMenuBtn = document.getElementById('mobileMenuBtn');
const mobileMenu = document.getElementById('mobileMenu');
menuBtn.addEventListener('click', () => {
megaMenu.classList.toggle('active');
});
mobileMenuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
</script>
</body>
</html>