/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #F8FAFC; /* Soft White */
  color: #111827; /* Near Black for body text */
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Header & Navbar ===== */
header {
  background: #0C4A6E; /* Deep Cerulean Blue */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 25px;
}

.club-logo {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 38px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  padding: 8px 10px;
  color: #FFFFFF !important; /* Navbar text pure white */
  text-decoration: none !important;
  transition: all 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
  background: #38BDF8; /* Bright Sky Blue */
  color: #111827 !important;
  border-radius: 4px;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #FFFFFF;
  position: absolute;
  top: 10px;
  right: 15px;
}

/* ===== Hero Section ===== */
body.home .hero {
  background-image: url('assets/musicbg7.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 70px;
  position: relative;
}

body.home .hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
 /* background: rgba(12, 74, 110, 0.65); /* Overlay Tint */
}

.hero h1 {
  position: relative;
  font-size: 42px;
  font-weight: bold;
  color: #FFFFFF;
}

.hero-title {
  position: relative;
  color: #FFFFFF;
  text-shadow:
    -1px -1px 0 rgba(17, 24, 39, 0.8),  
     1px -1px 0 rgba(17, 24, 39, 0.8),
    -1px  1px 0 rgba(17, 24, 39, 0.8),
     1px  1px 0 rgba(17, 24, 39, 0.8);
  font-size: 42px;
  font-weight: bold;
}

@media (max-width: 768px) {
  body.home .hero {
    height: 50vh;
    background-size: cover;
  }

  .hero h1 {
    font-size: 28px;
    padding: 0 10px;
  }
}

/* ===== Stats Section ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 30px;
  background: color-mix(in srgb, #F8FAFC 95%, black 5%);
  color: #111827;
  font-size: 25px;
  margin: 0 auto;
  text-align: center;
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 13px;
}

.stat .counter,
.stat .plus-sign 
.stat br + * {
  display: inline;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.stat p {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
    font-size: 18px;
  }
  .stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  .stat .counter,
  .stat .plus-sign {
    font-size: 32px;
  }
  .stat p {
    font-size: 18px;
  }
}

/* ===== Best Moments Section ===== */
.best-moments {
  background-color: #F8FAFC;
  padding: 40px 20px;
  color: #111827;
  text-align: center;
}

.best-moments h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.moment-carousel {
  overflow: hidden;
  width: 100%;
  height: 180px;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: seamlessScroll 30s linear infinite;
}

.carousel-track img {
  width: 240px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
}

@keyframes seamlessScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ===== Footer ===== */
footer {
  background: #0C4A6E;
  text-align: center;
  padding: 15px;
  color: #FFFFFF;
}

footer .social-links img {
  width: 28px;
  margin: 0 8px;
}

/* ===== Mobile Menu ===== */
@media (max-width: 768px) {
  .hamburger { display: block; }
  nav ul {
    display: none;
    flex-direction: column;
    background: #0C4A6E;
    position: absolute;
    top: 65px;
    right: 0;
    width: 220px;
    padding: 20px;
    gap: 10px;
  }
  nav ul.show { display: flex; }
  nav ul li { width: 100%; text-align: left; }
  .club-logo { top: 10px; left: 10px; width: 40px; }
}

/* ===== About Page ===== */
.about {
  padding: 120px 20px 40px;
  background: #F8FAFC;
  color: #111827;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-intro {
  text-align: center;
  margin-bottom: 40px;
}

.about-section {
  margin-bottom: 30px;
}

.about-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0C4A6E;
}

.about-section p {
  font-size: 18px;
  text-align: justify;
}

/* ===== Sponsors Page ===== */
.sponsor-page {
  padding: 120px 30px 60px;
  background-color: #F8FAFC;
  color: #111827;
  font-size: 18px;
  line-height: 1.8;
}

.sponsor-page h2 {
  font-size: 28px;
  margin-bottom: 15px;
  border-bottom: 2px solid #0C4A6E;
  padding-bottom: 5px;
}

/* ---- Sponsors for This Year ---- */
.sponsor-current {
  margin-top: 50px;
  padding: 30px 25px;
  background: #F8FAFC; /* soft white */
  border-left: 6px solid #38BDF8; /* accent stripe */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #111827;
}

.sponsor-current h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0C4A6E; /* deep cerulean blue */
  font-weight: bold;
  border-bottom: 2px solid #FBBF24; /* warm gold underline */
  display: inline-block;
  padding-bottom: 5px;
}

.sponsor-current .no-sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.sponsor-current .no-sponsors span {
  background: #E0F2FE; /* light blue background */
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  color: #0C4A6E;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: background 0.3s ease, transform 0.2s ease;
}

.sponsor-current .no-sponsors span:hover {
  background: #BAE6FD; /* brighter sky blue */
  transform: translateY(-3px);
}

/* Past Sponsors */
.sponsor-past {
  margin-top: 50px;
  color: #111827;
}

.sponsor-past .sponsor-intro {
  margin-bottom: 25px;
  font-size: 18px;
  max-width: 900px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.sponsor-grid span {
  background-color: #E0F2FE;
  padding: 12px 15px;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.sponsor-grid span:hover {
  transform: translateY(-3px);
  background-color: #BAE6FD;
}

/* ===== Team Page ===== */
.team-section {
  padding: 60px 30px;
  background-color: #F8FAFC;
  color: #111827;
  text-align: center;
}

.team-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  justify-items: center;
}

.team-grid img {
  width: 100%;
  max-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.team-grid img:hover {
  transform: scale(1.05);
}

/* ===== Achievements ===== */
.achievements-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.achievement-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.achievement-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.achievement-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 74, 110, 0.65); /* theme deep blue overlay */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.achievement-card:hover .overlay {
  opacity: 1;
}

.achievement-card .overlay .caption {
  color: #FFFFFF;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}


/* ===== Join Page ===== */
.get-involved-section {
  background-color: #F8FAFC;
  color: #111827;
  text-align: center;
  padding: 60px 20px;
}

.hero.join {
  padding-top: 62px;
  text-align: center;
  text-shadow: 1px 1px rgba(17, 24, 39, 0.5);
}

.involve-content {
  max-width: 800px;
  margin: 0 auto;
}

.involve-img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.involve-text {
  font-size: 20px;
  margin-bottom: 25px;
  line-height: 1.8;
}

.hero.join h1,
.hero.join .hero-title {
  color: #0C4A6E; /* Deep Cerulean Blue for visibility */
  text-shadow: none; /* remove shadow for clarity */
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

/* =========================
   PREMIUM ENHANCEMENTS
========================= */

html {
  scroll-behavior: smooth;
}

section {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Intro Section */

.intro-section {
  padding: 70px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.intro-section h2 {
  color: #0C4A6E;
  font-size: 36px;
  margin-bottom: 20px;
}

.intro-section p {
  font-size: 20px;
  line-height: 1.8;
}

/* Impact Cards */

.impact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}

.impact-card {
  background: white;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: .3s;
}

.impact-card:hover {
  transform: translateY(-8px);
}

.impact-card h3 {
  color: #0C4A6E;
  margin-bottom: 10px;
}

/* Team Cards */

.team-grid {
  gap: 35px;
}

.team-grid img {
  max-width: 220px;
  transition: .35s;
}

.team-grid img:hover {
  transform: translateY(-8px) scale(1.03);
}

/* Achievement Dashboard */

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  padding: 20px;
}

.achievement-card {
  background: white;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: .3s;
}

.achievement-card:hover {
  transform: translateY(-8px);
}

.achievement-card h3 {
  color: #0C4A6E;
  margin-bottom: 15px;
}

/* Better Stats */

.stat {
  background: white;
  border-radius: 14px;
  padding: 20px;
  transition: .3s;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Better Footer */

footer {
  margin-top: 40px;
}

footer .social-links img {
  transition: .3s;
}

footer .social-links img:hover {
  transform: translateY(-5px);
}

.intro-section {
  padding: 70px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.intro-section h2 {
  color: #0C4A6E;
  font-size: 36px;
  margin-bottom: 20px;
}

.intro-section p {
  font-size: 20px;
  line-height: 1.8;
}

.impact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.impact-card {
  background: white;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.impact-card:hover {
  transform: translateY(-8px);
}

.impact-card h3 {
  color: #0C4A6E;
  margin-bottom: 12px;
}

.team-grid img {
  max-width: 220px;
  transition: 0.35s;
}

.team-grid img:hover {
  transform: translateY(-8px) scale(1.03);
}

/* ========================================
   AWARD WEBSITE ENHANCEMENTS
   Add at END of styles.css
======================================== */

/* Smooth Page Feel */
body{
  overflow-x:hidden;
}

/* Navbar Glass Effect */
header{
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Consistent Section Spacing */
section{
  scroll-margin-top:100px;
}

/* Better Hero Titles */
.hero h1{
  letter-spacing:1px;
  animation: fadeUp 1s ease;
}

.hero-title{
  animation: fadeUp 1s ease;
}

/* Better Stats */
.stat{
  border:1px solid rgba(12,74,110,0.08);
}

.stat:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 35px rgba(0,0,0,0.12);
}

/* Sponsors */
.sponsor-grid span,
.no-sponsors span{
  transition:all .3s ease;
}

.sponsor-grid span:hover,
.no-sponsors span:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 18px rgba(0,0,0,0.12);
}

/* Team Images */
.team-grid img{
  border:4px solid white;
}

.team-grid img:hover{
  box-shadow:0 15px 25px rgba(0,0,0,0.18);
}

/* Achievement Cards */
.achievement-card{
  transition:all .35s ease;
}

.achievement-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 35px rgba(0,0,0,0.18);
}

/* About Page */
.about-section{
  background:white;
  padding:30px;
  border-radius:16px;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.about-section:not(:last-child){
  margin-bottom:25px;
}

/* Join Page Cards */
.impact-card{
  border-top:4px solid #38BDF8;
}

/* Buttons */
.whatsapp-btn{
  font-weight:600;
  letter-spacing:.5px;
  box-shadow:0 8px 18px rgba(37,211,102,.25);
}

.whatsapp-btn:hover{
  transform:translateY(-3px);
}

/* Footer */
footer{
  border-top:4px solid #38BDF8;
}

footer .social-links img{
  transition:.3s;
}

footer .social-links img:hover{
  transform:translateY(-6px) scale(1.08);
}

/* Scroll Animation */
.fade-in{
  opacity:0;
  transform:translateY(30px);
  animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Mobile Improvements */
@media (max-width:768px){

  .hero h1{
    font-size:28px;
  }

  .intro-section h2,
  .team-section h2,
  .about-section h2{
    font-size:24px;
  }

  .impact-section{
    grid-template-columns:1fr;
  }

  .team-grid{
    gap:20px;
  }

  .team-grid img{
    max-width:180px;
  }
}



