🐳 12/04 - 06:27 - CREATE THE HOMEPAGE FOR NAGAS ATHLETICS WEBSITE WITH THE FOLLOWING BRUTALIST SPECIFICATIONS: DESIGN SYSTEM: Background: Pure black (#121212) with subtle noise texture and 1px dotte
ab0ddfe verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>NAGAS ATHLETICS | Northbridge International School of Cambodia</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; | |
| } | |
| .text-teal { color: #5ec0cc; } | |
| .bg-teal { background-color: #5ec0cc; } | |
| .border-teal { border-color: #5ec0cc; } | |
| .text-grey { color: #CCCCCC; } | |
| .border-grey-dark { border-color: #333333; } | |
| .text-orange { color: #ff9900; } | |
| /* Ticker Animation */ | |
| @keyframes ticker { | |
| 0% { transform: translateX(0); } | |
| 100% { transform: translateX(-50%); } | |
| } | |
| .ticker-content { | |
| animation: ticker 20s linear infinite; | |
| } | |
| /* Hover Effects */ | |
| .hover-border-teal:hover { | |
| border-color: #5ec0cc ; | |
| } | |
| /* Carousel Styles */ | |
| .carousel-container { | |
| overflow-x: auto; | |
| scrollbar-width: thin; | |
| scrollbar-color: #5ec0cc #333333; | |
| display: flex; | |
| align-items: center; | |
| padding: 20px 0; | |
| } | |
| .carousel-container::-webkit-scrollbar { | |
| height: 8px; | |
| } | |
| .carousel-container::-webkit-scrollbar-track { | |
| background: #121212; | |
| border-top: 1px solid #333333; | |
| border-bottom: 1px solid #333333; | |
| } | |
| .carousel-container::-webkit-scrollbar-thumb { | |
| background: #5ec0cc; | |
| } | |
| .carousel-slide { | |
| transition: all 0.3s ease; | |
| } | |
| .carousel-slide.active { | |
| opacity: 1; | |
| transform: scale(1.05); | |
| z-index: 10; | |
| } | |
| .carousel-slide:not(.active) { | |
| opacity: 0.6; | |
| transform: scale(0.9); | |
| } | |
| /* Ticker Animation */ | |
| @keyframes ticker { | |
| 0% { transform: translateX(0); } | |
| 100% { transform: translateX(-50%); } | |
| } | |
| .ticker-content { | |
| animation: ticker 20s linear infinite; | |
| } | |
| /* Athlete Spotlight Transition */ | |
| .spotlight-fade { | |
| animation: fadeIn 0.5s ease-in; | |
| } | |
| @keyframes fadeIn { | |
| from { opacity: 0; } | |
| to { opacity: 1; } | |
| } | |
| /* Table Styles */ | |
| .brutalist-table { | |
| width: 100%; | |
| border-collapse: collapse; | |
| } | |
| .brutalist-table th, | |
| .brutalist-table td { | |
| border: 1px solid #333333; | |
| padding: 12px; | |
| text-align: left; | |
| font-family: 'Courier New', Courier, monospace; | |
| font-size: 14px; | |
| } | |
| .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); | |
| } | |
| /* Modal */ | |
| .modal { | |
| display: none; | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background-color: rgba(0,0,0,0.9); | |
| z-index: 1000; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| .modal.active { | |
| display: flex; | |
| } | |
| /* 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; | |
| } | |
| /* Athlete Spotlight Animation */ | |
| @keyframes fadeIn { | |
| from { opacity: 0; } | |
| to { opacity: 1; } | |
| } | |
| .fade-in { | |
| animation: fadeIn 0.5s ease-in; | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen"> | |
| <!-- Ticker Board --> | |
| <div class="w-full bg-[#121212] border-b border-[#333333] overflow-hidden py-2" style="height: 40px;"> | |
| <div class="ticker-content whitespace-nowrap flex items-center h-full"> | |
| <span class="text-[#5ec0cc] font-mono text-base mx-8 leading-none">2025-26 SEASON HIGHLIGHTS • NEXT MATCH: BASKETBALL VS. ISPP • 2026-27 SEASON: COMING SOON • 2025-26 SEASON HIGHLIGHTS • NEXT MATCH: BASKETBALL VS. ISPP • 2026-27 SEASON: COMING SOON •</span> | |
| <span class="text-[#5ec0cc] font-mono text-base mx-8 leading-none">2025-26 SEASON HIGHLIGHTS • NEXT MATCH: BASKETBALL VS. ISPP • 2026-27 SEASON: COMING SOON • 2025-26 SEASON HIGHLIGHTS • NEXT MATCH: BASKETBALL VS. ISPP • 2026-27 SEASON: COMING SOON •</span> | |
| </div> | |
| </div> | |
| <!-- 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"> | |
| <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> | |
| <!-- Desktop Menu Button --> | |
| <button id="menuBtn" class="hidden md:block border border-[#5ec0cc] px-6 py-2 text-[#5ec0cc] font-mono text-sm uppercase hover:bg-[#5ec0cc] hover:text-[#121212] transition-colors"> | |
| 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-3 lg:grid-cols-6"> | |
| <div class="mega-menu-column p-6"> | |
| <h3 class="text-[#5ec0cc] font-bold uppercase mb-4 text-sm tracking-wider">TEAMS</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="basketball.html" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Basketball</a></li> | |
| <li><a href="volleyball.html" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Volleyball</a></li> | |
| <li><a href="football.html" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Football</a></li> | |
| <li><a href="track.html" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Track & Field</a></li> | |
| <li><a href="swimming.html" class="text-[#CCCCCC] 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">ABOUT</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="about.html" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">About Nagas</a></li> | |
| <li><a href="about.html#history" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">History</a></li> | |
| <li><a href="about.html#facilities" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Facilities</a></li> | |
| </ul> | |
| </div> | |
| <div class="mega-menu-column p-6"> | |
| <h3 class="text-[#5ec0cc] font-bold uppercase mb-4 text-sm tracking-wider">SCHEDULE</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="schedule.html" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Full Schedule</a></li> | |
| <li><a href="schedule.html" class="text-[#CCCCCC] 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">NEWS & MEDIA</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="news.html" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Latest News</a></li> | |
| <li><a href="news.html#media" class="text-[#CCCCCC] 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">ATHLETIC COUNCIL</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="council.html" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Council Members</a></li> | |
| <li><a href="council.html#mission" class="text-[#CCCCCC] 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">GET INVOLVED</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="involved.html" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Tryouts</a></li> | |
| <li><a href="involved.html#volunteer" class="text-[#CCCCCC] font-mono text-sm uppercase hover:text-[#5ec0cc]">Volunteer</a></li> | |
| <li><a href="form.html" class="text-[#CCCCCC] 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-[#CCCCCC] font-mono uppercase border-b border-[#333333] pb-2">TEAMS</a> | |
| <a href="about.html" class="block text-[#CCCCCC] font-mono uppercase border-b border-[#333333] pb-2">ABOUT</a> | |
| <a href="schedule.html" class="block text-[#CCCCCC] font-mono uppercase border-b border-[#333333] pb-2">SCHEDULE</a> | |
| <a href="news.html" class="block text-[#CCCCCC] font-mono uppercase border-b border-[#333333] pb-2">NEWS & MEDIA</a> | |
| <a href="council.html" class="block text-[#CCCCCC] font-mono uppercase border-b border-[#333333] pb-2">ATHLETIC COUNCIL</a> | |
| <a href="involved.html" class="block text-[#CCCCCC] font-mono uppercase">GET INVOLVED</a> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="w-full min-h-screen flex flex-col justify-center items-center px-4 py-20 border-b border-[#333333] relative"> | |
| <h1 class="text-[#5ec0cc] font-bold uppercase text-center leading-none mb-6" style="font-family: 'Montserrat', sans-serif; font-size: clamp(3rem, 10vw, 8rem); letter-spacing: 0.2em;"> | |
| NAGAS ATHLETICS | |
| </h1> | |
| <h2 class="text-white uppercase text-center tracking-wider mb-12" style="font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: clamp(1.5rem, 3vw, 3rem); letter-spacing: 0.1em;"> | |
| NORTHBRIDGE INTERNATIONAL SCHOOL OF CAMBODIA | |
| </h2> | |
| <!-- Season Selector --> | |
| <div class="flex gap-4 flex-wrap justify-center"> | |
| <button class="bg-[#5ec0cc] text-[#121212] px-8 py-4 font-bold uppercase border-0 tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 1.2rem; letter-spacing: 0.1em;"> | |
| [2025-26] | |
| </button> | |
| <button onclick="openModal('comingSoonModal')" class="bg-transparent text-[#CCCCCC] border border-[#333333] px-8 py-4 font-bold uppercase tracking-wider hover:border-[#5ec0cc] transition-colors" style="font-family: 'Montserrat', sans-serif; font-size: 1.2rem; letter-spacing: 0.1em;"> | |
| [2026-27] | |
| </button> | |
| </div> | |
| </section> | |
| <!-- Leadership Messages --> | |
| <section class="w-full border-t border-b border-[#333333] py-16 px-4 md:px-8"> | |
| <h2 class="text-[#5ec0cc] font-bold uppercase text-center mb-12 tracking-wider" style="font-size: 1.8rem; letter-spacing: 0.1em; font-family: 'Montserrat', sans-serif;">LEADERSHIP MESSAGES</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-6xl mx-auto"> | |
| <!-- Card 1 --> | |
| <div class="border border-[#333333] hover-border-teal transition-colors bg-[#121212]"> | |
| <div class="bg-gradient-to-b from-[#5ec0cc] to-[#4ab3c6] h-[60px] relative flex justify-center"> | |
| <img src="http://static.photos/people/200x200/1" alt="Andrew Dean" class="w-[60px] h-[60px] rounded-full border-2 border-white object-cover absolute -bottom-[30px]"> | |
| </div> | |
| <div class="pt-[40px] pb-6 px-6 text-center"> | |
| <h3 class="text-white font-bold uppercase text-lg tracking-wide" style="font-family: 'Montserrat', sans-serif;">ANDREW DEAN</h3> | |
| <p class="text-white text-sm mb-6" style="font-family: 'Montserrat', sans-serif;">Athletic Director</p> | |
| <p class="text-[#CCCCCC] leading-[1.6] text-base mb-4 text-left"> | |
| Welcome to another exciting season of Nagas Athletics. Our commitment to excellence both on and off the field remains unwavering. This year, we continue to build upon our legacy of sportsmanship, dedication, and competitive spirit. | |
| </p> | |
| <p class="text-[#CCCCCC] leading-[1.6] text-base mb-6 text-left"> | |
| We have expanded our training facilities and welcomed new coaching talent to ensure our athletes receive the best possible support. I look forward to seeing our community come together to support the Nagas! | |
| </p> | |
| <a href="council.html" class="text-[#5ec0cc] uppercase text-sm tracking-wide hover:underline" style="text-decoration: none; font-size: 0.9rem;">Read Full Message →</a> | |
| </div> | |
| </div> | |
| <!-- Card 2 --> | |
| <div class="border border-[#333333] hover-border-teal transition-colors bg-[#121212]"> | |
| <div class="bg-gradient-to-b from-[#5ec0cc] to-[#4ab3c6] h-[60px] relative flex justify-center"> | |
| <img src="http://static.photos/people/200x200/2" alt="Leang Chinh Dom" class="w-[60px] h-[60px] rounded-full border-2 border-white object-cover absolute -bottom-[30px]"> | |
| </div> | |
| <div class="pt-[40px] pb-6 px-6 text-center"> | |
| <h3 class="text-white font-bold uppercase text-lg tracking-wide" style="font-family: 'Montserrat', sans-serif;">LEANG CHINH DOM</h3> | |
| <p class="text-white text-sm mb-6" style="font-family: 'Montserrat', sans-serif;">Athletic Council President</p> | |
| <p class="text-[#CCCCCC] leading-[1.6] text-base mb-4 text-left"> | |
| As Athletic Council President, I am proud to represent the student voice in our athletic programs. This year, we are focusing on inclusivity and student engagement across all sports. | |
| </p> | |
| <p class="text-[#CCCCCC] leading-[1.6] text-base mb-6 text-left"> | |
| We have launched new initiatives to support mental health and academic balance for our athletes. Together, we will make this season memorable for every Naga. | |
| </p> | |
| <a href="council.html" class="text-[#5ec0cc] uppercase text-sm tracking-wide hover:underline" style="text-decoration: none; font-size: 0.9rem;">Read Full Message →</a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Sports Carousel --> | |
| <section class="w-full border-t border-b border-[#333333] py-16"> | |
| <h2 class="text-[#5ec0cc] font-bold uppercase text-center mb-10 tracking-wider px-4" style="font-size: 1.8rem; letter-spacing: 0.1em; font-family: 'Montserrat', sans-serif;">OUR SPORTS</h2> | |
| <div class="carousel-container flex gap-4 px-4 md:px-12 pb-4 scroll-smooth" id="sportsCarousel" style="scroll-snap-type: x mandatory;"> | |
| <!-- Volleyball --> | |
| <div class="carousel-slide flex-shrink-0 w-[300px] border border-[#333333] hover-border-teal transition-all duration-300 bg-[#121212]" style="min-width: 300px; scroll-snap-align: center;"> | |
| <img src="http://static.photos/sport/320x240/1" alt="Volleyball" class="w-full h-[150px] object-cover border-b border-[#333333]"> | |
| <div class="p-4 text-center"> | |
| <h3 class="text-white uppercase font-bold mb-3 text-xl" style="font-family: 'Montserrat', sans-serif;">VOLLEYBALL</h3> | |
| <a href="volleyball.html" class="inline-block bg-[#5ec0cc] text-[#121212] px-4 py-2 uppercase font-bold text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">Explore Teams</a> | |
| </div> | |
| </div> | |
| <!-- Basketball --> | |
| <div class="carousel-slide flex-shrink-0 w-[300px] border border-[#333333] hover-border-teal transition-all duration-300 bg-[#121212] active" style="min-width: 300px; scroll-snap-align: center;"> | |
| <img src="http://static.photos/sport/320x240/2" alt="Basketball" class="w-full h-[150px] object-cover border-b border-[#333333]"> | |
| <div class="p-4 text-center"> | |
| <h3 class="text-white uppercase font-bold mb-3 text-xl" style="font-family: 'Montserrat', sans-serif;">BASKETBALL</h3> | |
| <a href="basketball.html" class="inline-block bg-[#5ec0cc] text-[#121212] px-4 py-2 uppercase font-bold text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">Explore Teams</a> | |
| </div> | |
| </div> | |
| <!-- Football --> | |
| <div class="carousel-slide flex-shrink-0 w-[300px] border border-[#333333] hover-border-teal transition-all duration-300 bg-[#121212]" style="min-width: 300px; scroll-snap-align: center;"> | |
| <img src="http://static.photos/sport/320x240/3" alt="Football" class="w-full h-[150px] object-cover border-b border-[#333333]"> | |
| <div class="p-4 text-center"> | |
| <h3 class="text-white uppercase font-bold mb-3 text-xl" style="font-family: 'Montserrat', sans-serif;">FOOTBALL</h3> | |
| <a href="football.html" class="inline-block bg-[#5ec0cc] text-[#121212] px-4 py-2 uppercase font-bold text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">Explore Teams</a> | |
| </div> | |
| </div> | |
| <!-- Track & Field --> | |
| <div class="carousel-slide flex-shrink-0 w-[300px] border border-[#333333] hover-border-teal transition-all duration-300 bg-[#121212]" style="min-width: 300px; scroll-snap-align: center;"> | |
| <img src="http://static.photos/sport/320x240/4" alt="Track & Field" class="w-full h-[150px] object-cover border-b border-[#333333]"> | |
| <div class="p-4 text-center"> | |
| <h3 class="text-white uppercase font-bold mb-3 text-xl" style="font-family: 'Montserrat', sans-serif;">TRACK & FIELD</h3> | |
| <a href="track.html" class="inline-block bg-[#5ec0cc] text-[#121212] px-4 py-2 uppercase font-bold text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">Explore Teams</a> | |
| </div> | |
| </div> | |
| <!-- Swimming --> | |
| <div class="carousel-slide flex-shrink-0 w-[300px] border border-[#333333] hover-border-teal transition-all duration-300 bg-[#121212]" style="min-width: 300px; scroll-snap-align: center;"> | |
| <img src="http://static.photos/sport/320x240/5" alt="Swimming" class="w-full h-[150px] object-cover border-b border-[#333333]"> | |
| <div class="p-4 text-center"> | |
| <h3 class="text-white uppercase font-bold mb-3 text-xl" style="font-family: 'Montserrat', sans-serif;">SWIMMING</h3> | |
| <a href="swimming.html" class="inline-block bg-[#5ec0cc] text-[#121212] px-4 py-2 uppercase font-bold text-sm tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em;">Explore Teams</a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Next Matches & Recent Results --> | |
| <section class="w-full border-t border-b border-[#333333] py-16 px-4 md:px-8"> | |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-8"> | |
| <!-- Next Matches --> | |
| <div class="overflow-x-auto"> | |
| <h3 class="text-[#5ec0cc] font-bold uppercase text-xl mb-6 tracking-wider" style="font-size: 1.8rem; letter-spacing: 0.1em; font-family: 'Montserrat', sans-serif;">NEXT MATCHES</h3> | |
| <table class="brutalist-table min-w-full"> | |
| <thead> | |
| <tr style="border-bottom: 2px solid #333333;"> | |
| <th class="text-[#5ec0cc] font-bold uppercase text-left p-3 font-mono" style="font-family: 'Montserrat', sans-serif;">DATE</th> | |
| <th class="text-[#5ec0cc] font-bold uppercase text-left p-3 font-mono" style="font-family: 'Montserrat', sans-serif;">SPORT</th> | |
| <th class="text-[#5ec0cc] font-bold uppercase text-left p-3 font-mono" style="font-family: 'Montserrat', sans-serif;">OPPONENT</th> | |
| <th class="text-[#5ec0cc] font-bold uppercase text-left p-3 font-mono" style="font-family: 'Montserrat', sans-serif;">LOCATION</th> | |
| </tr> | |
| </thead> | |
| <tbody class="text-white font-mono"> | |
| <tr style="border-bottom: 1px solid #333333;"> | |
| <td class="p-3 whitespace-nowrap">2025-11-15</td> | |
| <td class="p-3 whitespace-nowrap">BASKETBALL</td> | |
| <td class="p-3 whitespace-nowrap">ISPP</td> | |
| <td class="p-3 whitespace-nowrap">HOME</td> | |
| </tr> | |
| <tr class="bg-[#1e1e1e]" style="border-bottom: 1px solid #333333;"> | |
| <td class="p-3 whitespace-nowrap">2025-11-18</td> | |
| <td class="p-3 whitespace-nowrap">VOLLEYBALL</td> | |
| <td class="p-3 whitespace-nowrap">ISPP</td> | |
| <td class="p-3 whitespace-nowrap">AWAY</td> | |
| </tr> | |
| <tr style="border-bottom: 1px solid #333333;"> | |
| <td class="p-3 whitespace-nowrap">2025-11-22</td> | |
| <td class="p-3 whitespace-nowrap">FOOTBALL</td> | |
| <td class="p-3 whitespace-nowrap">CFL</td> | |
| <td class="p-3 whitespace-nowrap">HOME</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| <!-- Recent Results --> | |
| <div class="overflow-x-auto"> | |
| <h3 class="text-[#5ec0cc] font-bold uppercase text-xl mb-6 tracking-wider" style="font-size: 1.8rem; letter-spacing: 0.1em; font-family: 'Montserrat', sans-serif;">RECENT RESULTS</h3> | |
| <table class="brutalist-table min-w-full"> | |
| <thead> | |
| <tr style="border-bottom: 2px solid #333333;"> | |
| <th class="text-[#5ec0cc] font-bold uppercase text-left p-3 font-mono" style="font-family: 'Montserrat', sans-serif;">DATE</th> | |
| <th class="text-[#5ec0cc] font-bold uppercase text-left p-3 font-mono" style="font-family: 'Montserrat', sans-serif;">SPORT</th> | |
| <th class="text-[#5ec0cc] font-bold uppercase text-left p-3 font-mono" style="font-family: 'Montserrat', sans-serif;">SCORE</th> | |
| <th class="text-[#5ec0cc] font-bold uppercase text-left p-3 font-mono" style="font-family: 'Montserrat', sans-serif;">OPPONENT</th> | |
| </tr> | |
| </thead> | |
| <tbody class="font-mono"> | |
| <tr style="border-bottom: 1px solid #333333;"> | |
| <td class="p-3 text-white whitespace-nowrap">2025-11-08</td> | |
| <td class="p-3 text-white whitespace-nowrap">BASKETBALL</td> | |
| <td class="p-3 text-[#5ec0cc] whitespace-nowrap">68-54 (W)</td> | |
| <td class="p-3 text-white whitespace-nowrap">ISPP</td> | |
| </tr> | |
| <tr class="bg-[#1e1e1e]" style="border-bottom: 1px solid #333333;"> | |
| <td class="p-3 text-white whitespace-nowrap">2025-11-05</td> | |
| <td class="p-3 text-white whitespace-nowrap">VOLLEYBALL</td> | |
| <td class="p-3 text-[#ff9900] whitespace-nowrap">2-3 (L)</td> | |
| <td class="p-3 text-white whitespace-nowrap">ISPP</td> | |
| </tr> | |
| <tr style="border-bottom: 1px solid #333333;"> | |
| <td class="p-3 text-white whitespace-nowrap">2025-11-01</td> | |
| <td class="p-3 text-white whitespace-nowrap">FOOTBALL</td> | |
| <td class="p-3 text-[#5ec0cc] whitespace-nowrap">3-1 (W)</td> | |
| <td class="p-3 text-white whitespace-nowrap">CFL</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Athlete Spotlight --> | |
| <section class="w-full border-t border-b border-[#333333] py-16 px-4 md:px-8"> | |
| <h3 class="text-[#5ec0cc] font-bold uppercase text-xl mb-8 tracking-wider" style="font-size: 1.8rem; letter-spacing: 0.1em; font-family: 'Montserrat', sans-serif;">ATHLETE SPOTLIGHT</h3> | |
| <div id="spotlightContainer" class="border border-[#333333] p-6 flex flex-col md:flex-row gap-6 items-center md:items-start bg-[#121212]"> | |
| <!-- Content loaded by JS --> | |
| </div> | |
| </section> | |
| <!-- Quick Links --> | |
| <section class="w-full border-t border-b border-[#333333] py-16 px-4 md:px-8"> | |
| <h2 class="text-[#5ec0cc] font-bold uppercase text-center mb-12 tracking-wider" style="font-size: 1.8rem; letter-spacing: 0.1em; font-family: 'Montserrat', sans-serif;">QUICK LINKS</h2> | |
| <div class="grid grid-cols-2 gap-4 max-w-4xl mx-auto"> | |
| <a href="teams.html" class="border border-[#333333] p-6 text-center hover-border-teal transition-colors group block bg-[#121212]"> | |
| <span class="text-white uppercase font-bold text-lg group-hover:text-[#5ec0cc] tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 1.1rem; letter-spacing: 0.1em;">TEAMS</span> | |
| </a> | |
| <a href="schedule.html" class="border border-[#333333] p-6 text-center hover-border-teal transition-colors group block bg-[#121212]"> | |
| <span class="text-white uppercase font-bold text-lg group-hover:text-[#5ec0cc] tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 1.1rem; letter-spacing: 0.1em;">SCHEDULE</span> | |
| </a> | |
| <a href="about.html" class="border border-[#333333] p-6 text-center hover-border-teal transition-colors group block bg-[#121212]"> | |
| <span class="text-white uppercase font-bold text-lg group-hover:text-[#5ec0cc] tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 1.1rem; letter-spacing: 0.1em;">ABOUT</span> | |
| </a> | |
| <a href="news.html" class="border border-[#333333] p-6 text-center hover-border-teal transition-colors group block bg-[#121212]"> | |
| <span class="text-white uppercase font-bold text-lg group-hover:text-[#5ec0cc] tracking-wider" style="font-family: 'Montserrat', sans-serif; font-size: 1.1rem; letter-spacing: 0.1em;">NEWS & MEDIA</span> | |
| </a> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="w-full border-t border-[#333333] 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="about.html" class="text-white font-mono text-sm uppercase hover:text-[#5ec0cc]">About</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="text-[#333333] font-mono text-xs uppercase" style="color: #666666;">© 2025 NAGAS ATHLETICS. ALL RIGHTS RESERVED.</p> | |
| </div> | |
| </footer> | |
| <!-- Coming Soon Modal --> | |
| <div id="comingSoonModal" class="modal"> | |
| <div class="border border-[#5ec0cc] bg-[#121212] p-8 max-w-md mx-4 relative" style="min-width: 300px;"> | |
| <button onclick="closeModal('comingSoonModal')" class="absolute top-4 right-4 text-white hover:text-[#5ec0cc] transition-colors w-10 h-10 flex items-center justify-center"> | |
| <i data-lucide="x" class="w-6 h-6"></i> | |
| </button> | |
| <h3 class="text-[#5ec0cc] font-bold uppercase text-2xl mb-6 tracking-wider pr-8" style="font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em;">COMING SOON</h3> | |
| <p class="text-white font-mono text-sm leading-relaxed mb-6"> | |
| The 2026-27 season will be available soon. Stay tuned! | |
| </p> | |
| <button onclick="closeModal('comingSoonModal')" class="border border-[#5ec0cc] text-[#5ec0cc] px-6 py-3 font-mono uppercase text-sm hover:bg-[#5ec0cc] hover:text-[#121212] transition-colors w-full font-bold tracking-wider" style="font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em;"> | |
| CLOSE | |
| </button> | |
| </div> | |
| </div> | |
| <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'); | |
| }); | |
| // Modal Functions | |
| function openModal(modalId) { | |
| document.getElementById(modalId).classList.add('active'); | |
| } | |
| function closeModal(modalId) { | |
| document.getElementById(modalId).classList.remove('active'); | |
| } | |
| // Carousel Auto-rotation and Scroll Tracking | |
| const slides = document.querySelectorAll('.carousel-slide'); | |
| let currentSlide = 1; | |
| let carouselInterval; | |
| const carousel = document.getElementById('sportsCarousel'); | |
| function updateCarouselActive() { | |
| slides.forEach((slide, index) => { | |
| slide.classList.remove('active'); | |
| if (index === currentSlide) { | |
| slide.classList.add('active'); | |
| } | |
| }); | |
| } | |
| function nextSlide() { | |
| currentSlide = (currentSlide + 1) % slides.length; | |
| // Scroll to the active slide | |
| const slideWidth = slides[0].offsetWidth + 16; // width + gap | |
| carousel.scrollTo({ | |
| left: currentSlide * slideWidth - (carousel.offsetWidth / 2) + (slideWidth / 2), | |
| behavior: 'smooth' | |
| }); | |
| updateCarouselActive(); | |
| } | |
| // Initialize | |
| updateCarouselActive(); | |
| // Auto-rotate every 5 seconds | |
| carouselInterval = setInterval(nextSlide, 5000); | |
| // Pause on hover | |
| carousel.addEventListener('mouseenter', () => clearInterval(carouselInterval)); | |
| carousel.addEventListener('mouseleave', () => { | |
| carouselInterval = setInterval(nextSlide, 5000); | |
| }); | |
| // Touch swipe support | |
| let touchStartX = 0; | |
| let touchEndX = 0; | |
| carousel.addEventListener('touchstart', (e) => { | |
| touchStartX = e.changedTouches[0].screenX; | |
| }, {passive: true}); | |
| carousel.addEventListener('touchend', (e) => { | |
| touchEndX = e.changedTouches[0].screenX; | |
| handleSwipe(); | |
| }, {passive: true}); | |
| function handleSwipe() { | |
| if (touchEndX < touchStartX - 50) { | |
| currentSlide = Math.min(currentSlide + 1, slides.length - 1); | |
| const slideWidth = slides[0].offsetWidth + 16; | |
| carousel.scrollTo({ | |
| left: currentSlide * slideWidth - (carousel.offsetWidth / 2) + (slideWidth / 2), | |
| behavior: 'smooth' | |
| }); | |
| updateCarouselActive(); | |
| } | |
| if (touchEndX > touchStartX + 50) { | |
| currentSlide = Math.max(currentSlide - 1, 0); | |
| const slideWidth = slides[0].offsetWidth + 16; | |
| carousel.scrollTo({ | |
| left: currentSlide * slideWidth - (carousel.offsetWidth / 2) + (slideWidth / 2), | |
| behavior: 'smooth' | |
| }); | |
| updateCarouselActive(); | |
| } | |
| } | |
| // Update active slide based on scroll position | |
| carousel.addEventListener('scroll', () => { | |
| const scrollLeft = carousel.scrollLeft; | |
| const slideWidth = slides[0].offsetWidth + 16; | |
| const centerSlide = Math.round((scrollLeft + carousel.offsetWidth / 2 - slideWidth / 2) / slideWidth); | |
| if (centerSlide >= 0 && centerSlide < slides.length && centerSlide !== currentSlide) { | |
| currentSlide = centerSlide; | |
| updateCarouselActive(); | |
| } | |
| }); | |
| // Athlete Spotlight Rotation | |
| const athletes = [ | |
| { | |
| name: "SOKHA CHAN", | |
| position: "POINT GUARD", | |
| achievement: "2024 MVP AWARD - LED TEAM IN SCORING", | |
| image: "http://static.photos/people/200x200/10" | |
| }, | |
| { | |
| name: "DAVID SMITH", | |
| position: "CENTER", | |
| achievement: "ALL-TOURNAMENT TEAM 2024 - DEFENSIVE PLAYER OF THE YEAR", | |
| image: "http://static.photos/people/200x200/11" | |
| }, | |
| { | |
| name: "MARIA GARCIA", | |
| position: "SWIMMER", | |
| achievement: "50M FREE RECORD HOLDER - NATIONAL QUALIFIER", | |
| image: "http://static.photos/people/200x200/12" | |
| } | |
| ]; | |
| let currentAthlete = 0; | |
| function renderAthlete() { | |
| const container = document.getElementById('spotlightContainer'); | |
| const athlete = athletes[currentAthlete]; | |
| container.innerHTML = ` | |
| <img src="${athlete.image}" alt="${athlete.name}" class="w-[200px] h-[200px] object-cover border border-[#333333] spotlight-fade flex-shrink-0"> | |
| <div class="flex-1 text-center md:text-left spotlight-fade"> | |
| <h4 class="text-[#5ec0cc] font-bold uppercase text-2xl mb-3 tracking-wider" style="font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em; font-size: 1.5rem;">${athlete.name}</h4> | |
| <p class="text-white font-mono uppercase text-lg mb-3" style="font-size: 1.1rem; letter-spacing: 0.05em;">${athlete.position}</p> | |
| <p class="text-[#CCCCCC] font-mono text-sm leading-relaxed">${athlete.achievement}</p> | |
| </div> | |
| `; | |
| } | |
| renderAthlete(); | |
| setInterval(() => { | |
| currentAthlete = (currentAthlete + 1) % athletes.length; | |
| renderAthlete(); | |
| }, 10000); | |
| // Close modal on outside click | |
| document.querySelectorAll('.modal').forEach(modal => { | |
| modal.addEventListener('click', (e) => { | |
| if (e.target === modal) { | |
| modal.classList.remove('active'); | |
| } | |
| }); | |
| }); | |
| </script> | |
| <script src="https://deepsite.hf.co/deepsite-badge.js"></script> | |
| </body> | |
| </html> |