/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2744;
  --navy-light: #253660;
  --gold:   #c9a84c;
  --gold-light: #dfc278;
  --white:  #ffffff;
  --off-white: #f5f6fa;
  --text:   #2c2c2c;
  --text-light: #666;
  --nav-h:  72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(26,39,68,0.12);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-svg { width: 48px; height: 48px; }
.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.2;
  max-width: 180px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: calc(0.5rem - 2px);
}
.nav-link--cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}
.nav-link--cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.nav-link--cta.active {
  border-bottom: none;
  background: var(--gold);
  color: var(--navy) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SECTIONS ── */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  padding-top: var(--nav-h);
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.gold-underline::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--gold);
  margin-top: 6px;
  border-radius: 2px;
}
.gold-underline.light { color: var(--white); }
.gold-underline.light::after { background: var(--white); }

.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center center / cover no-repeat;
  color: var(--white);
  min-height: 100vh;
  padding-top: 0;
  flex-direction: column;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,39,68,0.78) 0%, rgba(26,39,68,0.55) 60%, rgba(10,15,30,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  animation: fadeUp 1s ease both;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
  opacity: 0.92;
}

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.25rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn.full-width { width: 100%; text-align: center; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBob 1.6s ease-in-out infinite;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
}
.about .container {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.about-text {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 2.5rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26,39,68,0.2);
}
.stat-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ── PARTNERS ── */
.partners {
  background: var(--navy);
  color: var(--white);
}
.partners .container {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0 2.5rem;
}
.partner-card {
  background: var(--white);
  border-radius: 8px;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.partner-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.partner-card img {
  max-height: 60px;
  object-fit: contain;
}
.partner-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-align: center;
}
.partners-cta-text {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.partners .btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* ── EVENTS ── */
.events {
  background: var(--off-white);
}
.events .container {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  text-align: left;
}
.event-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,39,68,0.1);
}
.event-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.event-icon i {
  color: var(--gold);
  font-size: 1.2rem;
}
.event-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.event-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── DIVISIONS ── */
.divisions {
  background: var(--white);
}
.divisions .container {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.division-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem 1.25rem;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.division-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26,39,68,0.25);
}
.division-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.division-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}
.division-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.division-card p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ── CONTACT ── */
.contact {
  background: var(--off-white);
}
.contact .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-left .section-title { text-align: left; }
.contact-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.contact-details i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
.contact-details a {
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-details a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(26,39,68,0.08);
}
.form-group { margin-bottom: 1.25rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-success {
  display: none;
  text-align: center;
  color: #2e7d4f;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.form-error {
  display: none;
  text-align: center;
  color: #c0392b;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-logo { width: 70px; height: 70px; }
.footer-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.footer-sub {
  font-size: 0.8rem;
  opacity: 0.55;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .divisions-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-left .section-title { text-align: center; }
  .contact-left p { text-align: center; }
  .contact-details { align-items: center; }
}

@media (max-width: 768px) {
  .nav-brand { display: none; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    transition: transform var(--transition);
    backdrop-filter: blur(10px);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 0.75rem 1rem; font-size: 0.95rem; width: 100%; }
  .nav-link--cta {
    background: none !important;
    color: var(--gold) !important;
    border: 1.5px solid var(--gold);
    margin: 0.25rem 1rem 0;
    width: calc(100% - 2rem);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  .logo-svg { width: 40px; height: 40px; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .section-title { font-size: 1.5rem; }
  .hero-scroll-hint { bottom: 1.5rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { flex-direction: column; align-items: center; }
  .partner-card { width: 90%; }
  .contact-form { padding: 1.5rem; }
}
