/* ============================================================
   MIDNIGHT BASKETBALL LEAGUE — REDESIGN STYLESHEET
   Modern, Energetic, Professional Nonprofit
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --orange:      #FF6B00;
  --orange-dark: #E05A00;
  --orange-glow: rgba(255, 107, 0, 0.25);
  --black:       #111111;
  --near-black:  #161616;
  --dark:        #1A1A1A;
  --dark2:       #222222;
  --white:       #FFFFFF;
  --warm-gray:   #F5F5F0;
  --gray-light:  #E8E8E4;
  --gray-mid:    #888888;
  --gray-text:   #AAAAAA;

  --font-head:   'Barlow', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.15);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.25);
  --shadow-lg:   0 16px 64px rgba(0,0,0,0.35);
  --shadow-orange: 0 8px 32px rgba(255,107,0,0.35);

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* ---- UTILITY ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 100px 0; }
.bg-dark       { background: var(--dark); }
.bg-nearblack  { background: var(--near-black); }
.text-orange   { color: var(--orange); }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label.white span:not(.label-line) { color: var(--orange); }
.label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -1px;
}
.section-title.white { color: var(--white); }

.section-desc {
  max-width: 600px;
  margin-top: 16px;
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.7;
}
.section-desc.white { color: var(--gray-text); }

.section-header.centered {
  text-align: center;
  margin-bottom: 64px;
}
.section-header.centered .section-label {
  justify-content: center;
}
.section-header.centered .section-desc {
  margin: 16px auto 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Chapter Portal hero CTA button ── */
.btn-portal-hero {
  background: rgba(255,255,255,0.08);
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.btn-portal-hero:hover {
  background: rgba(255,107,0,0.25);
  border-color: var(--orange);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.25);
}

/* ── Chapter Portal nav button ── */
.btn-portal-nav {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,107,0,0.55);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.btn-portal-nav:hover {
  background: rgba(255,107,0,0.12);
  border-color: var(--orange);
  color: var(--orange) !important;
  transform: translateY(-1px);
}
/* When navbar is scrolled (dark bg gone, white bg) */
.navbar.scrolled .btn-portal-nav {
  color: var(--black) !important;
  border-color: rgba(0,0,0,0.25);
}
.navbar.scrolled .btn-portal-nav:hover {
  color: var(--orange) !important;
  border-color: var(--orange);
  background: rgba(255,107,0,0.08);
}

.btn-donate {
  background: var(--orange);
  color: var(--white) !important;
  border-color: var(--orange);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: 2px solid var(--orange);
}
.btn-donate:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,107,0,0.4));
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 16px;
}
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,107,0,0.15);
}

.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(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 20s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.88) 0%,
    rgba(17, 17, 17, 0.75) 50%,
    rgba(255, 107, 0, 0.2) 100%
  );
}

/* Decorative basketball shapes */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 0, 0.2);
  pointer-events: none;
}
.hero-deco-1 {
  width: 600px; height: 600px;
  bottom: -200px; right: -100px;
  border-color: rgba(255,107,0,0.15);
  animation: spin-slow 30s linear infinite;
}
.hero-deco-2 {
  width: 300px; height: 300px;
  top: 100px; right: 10%;
  border-color: rgba(255,107,0,0.2);
  animation: spin-slow 20s linear infinite reverse;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.5);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-badge i { font-size: 12px; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,107,0,0.8), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Hero Founder Strip ── */
.hero-founder-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(20,10,0,0.78) 60%, rgba(255,107,0,0.18) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,107,0,0.25);
}
.hfs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hfs-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hfs-est {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  white-space: nowrap;
}
.hfs-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,107,0,0.35);
  flex-shrink: 0;
}
.hfs-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hfs-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.hfs-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.hfs-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}
.hfs-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.hfs-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.hfs-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}
.hfs-link:hover .hfs-arrow {
  transform: translateX(4px);
}

/* Mobile — hero founder strip */
@media (max-width: 600px) {
  .hfs-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 20px;
  }
  .hfs-est { display: none; }
  .hfs-divider { display: none; }
  .hfs-name { font-size: 14px; }
  .hfs-link { align-self: flex-start; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--orange);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.stats-container {
  display: flex;
  align-items: stretch;
  max-width: 100%;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  gap: 4px;
  position: relative;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-left: 2px;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.25);
  align-self: stretch;
  margin: 16px 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--orange);
}
.about-badge img {
  width: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.about-img-accent {
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about-content {
  padding-right: 16px;
}

.about-lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-body {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.section-deco-ball {
  position: absolute;
  width: 500px; height: 500px;
  bottom: -200px; left: -150px;
  border-radius: 50%;
  border: 40px solid rgba(255,107,0,0.04);
  pointer-events: none;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs {
  position: relative;
  overflow: hidden;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.program-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.program-card:hover {
  background: rgba(255,107,0,0.08);
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.program-card:hover::before { transform: scaleX(1); }

.program-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,0,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.program-icon i {
  font-size: 20px;
  color: var(--orange);
}
.program-card:hover .program-icon {
  background: var(--orange);
}
.program-card:hover .program-icon i {
  color: var(--white);
}

.program-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.program-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

.programs-deco {
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   VIOLENCE PREVENTION & WORKSHOPS SECTION
   ============================================================ */
.vp-section {
  background: var(--warm-gray);
  position: relative;
  overflow: hidden;
}

/* Feature rows (image + text) */
.vp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.vp-feature-reverse {
  direction: rtl;
}
.vp-feature-reverse > * {
  direction: ltr;
}

/* Feature image */
.vp-feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vp-feature-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.vp-feature-img:hover img {
  transform: scale(1.04);
}

/* Image badge overlay */
.vp-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.4);
  border-radius: 100px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.vp-img-badge i {
  color: var(--orange);
  font-size: 14px;
}
.vp-img-badge--alt {
  left: auto;
  right: 20px;
}

/* Feature content */
.vp-feature-content h3 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 12px 0 16px;
}
.vp-feature-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Checklist */
.vp-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vp-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}
.vp-checklist li i {
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
}

/* Peace / Handshake banner */
.vp-peace-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.vp-peace-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.vp-peace-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.88) 0%,
    rgba(17, 17, 17, 0.60) 55%,
    rgba(255, 107, 0, 0.15) 100%
  );
  display: flex;
  align-items: center;
  padding: 60px;
}
.vp-peace-text {
  max-width: 560px;
  color: var(--white);
}
.vp-peace-text i {
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}
.vp-peace-text h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  font-style: italic;
}
.vp-peace-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .vp-feature,
  .vp-feature-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .vp-feature-img img { height: 300px; }
  .vp-peace-banner { height: 360px; }
  .vp-peace-overlay { padding: 32px; }
}

@media (max-width: 600px) {
  .vp-peace-banner { height: 480px; }
  .vp-peace-overlay {
    padding: 28px;
    align-items: flex-end;
    background: linear-gradient(
      to top,
      rgba(17, 17, 17, 0.95) 0%,
      rgba(17, 17, 17, 0.5) 60%,
      transparent 100%
    );
  }
}

/* ============================================================
   GET INVOLVED
   ============================================================ */
.get-involved {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gi-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.92) 0%,
    rgba(17, 17, 17, 0.75) 60%,
    rgba(255, 107, 0, 0.3) 100%
  );
}

.gi-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}

.gi-text { max-width: 700px; }

.gi-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.gi-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.gi-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   CHAPTERS / BENEFITS
   ============================================================ */
.chapters {
  background: var(--warm-gray);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
}
.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.benefit-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-orange);
}
.benefit-icon i {
  font-size: 22px;
  color: var(--white);
}

.benefit-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.benefit-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ============================================================
   PARTNER PROGRAMS
   ============================================================ */
.partners { position: relative; }

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.partner-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: var(--transition);
}
.partner-card.featured {
  background: rgba(255,107,0,0.08);
  border-color: rgba(255,107,0,0.3);
}
.partner-card.featured::after { opacity: 1; }
.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,0,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.partner-card:hover::after { opacity: 1; }

.partner-icon {
  width: 64px; height: 64px;
  background: rgba(255,107,0,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.partner-icon i {
  font-size: 26px;
  color: var(--orange);
}

.partner-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.partner-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.partner-card p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.partner-link:hover { gap: 12px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.impact { background: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--warm-gray);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.quote-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--black);
  font-size: 15px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--gray-mid);
}

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsors { position: relative; overflow: hidden; }

.sponsors-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sponsors-desc {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.sponsor-benefits-list {
  margin-bottom: 40px;
}
.sponsor-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sponsor-benefits-list li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sponsor-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
  text-align: center;
}
.sponsor-tier i { font-size: 28px; }
.sponsor-tier span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sponsor-tier.gold {
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,165,0,0.1));
  border: 1px solid rgba(255,215,0,0.3);
  color: #FFD700;
}
.sponsor-tier.silver {
  background: linear-gradient(135deg, rgba(192,192,192,0.15), rgba(160,160,160,0.1));
  border: 1px solid rgba(192,192,192,0.3);
  color: #C0C0C0;
}
.sponsor-tier.bronze {
  background: linear-gradient(135deg, rgba(205,127,50,0.15), rgba(180,100,30,0.1));
  border: 1px solid rgba(205,127,50,0.3);
  color: #CD7F32;
}
.sponsor-tier.community {
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(224,90,0,0.1));
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange);
}
.sponsor-tier:hover { transform: translateY(-4px); }

/* ============================================================
   SHOP CTA
   ============================================================ */
.shop-cta { background: var(--white); }

.shop-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.shop-content { max-width: 560px; }
.shop-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.shop-icon {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0.12;
}
.shop-icon i {
  font-size: 64px;
  color: var(--orange);
  animation: float 3s ease-in-out infinite;
}
.shop-icon i:nth-child(2) { animation-delay: 0.5s; }
.shop-icon i:nth-child(3) { animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,0,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--orange); font-size: 18px; }

.contact-item h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}
.contact-item a {
  color: var(--orange);
  transition: var(--transition);
}
.contact-item a:hover { opacity: 0.8; }

.contact-socials {
  display: flex;
  gap: 12px;
  padding-top: 32px;
}

/* ---- Contact Form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  resize: vertical;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option {
  background: var(--dark);
  color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,107,0,0.05);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

/* Social Buttons */
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1fr;
  gap: 40px;
}

.footer-logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255,107,0,0.3));
}

.footer-tagline {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.footer-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-links-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a {
  font-size: 14px;
  color: var(--gray-text);
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.toast i { color: var(--orange); font-size: 18px; }
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   BASKETBALL TEXTURE OVERLAY
   ============================================================ */
/* Applied via pseudo-element on dark sections */
.bg-dark::before,
.bg-nearblack::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,107,0,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,107,0,0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.bg-dark > *, .bg-nearblack > * { position: relative; z-index: 1; }

/* ============================================================
   SCROLL REVEAL ENHANCEMENT
   ============================================================ */
[data-aos] { will-change: transform, opacity; }

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
  height: 4px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
  opacity: 0.4;
}

/* ============================================================
   ANIMATED ORANGE GRADIENT ACCENT
   ============================================================ */
.text-orange {
  background: linear-gradient(90deg, var(--orange), #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   STATS BAR — inline number+suffix display
   ============================================================ */
.stat-item {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

/* ============================================================
   PROGRAM CARD — perspective context
   ============================================================ */
.programs-grid {
  perspective: 1200px;
}
.program-card {
  transform-style: preserve-3d;
}

/* ============================================================
   BENEFITS — hover orange glow
   ============================================================ */
.benefit-item:hover .benefit-icon {
  box-shadow: 0 0 20px rgba(255,107,0,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Tablet: 1024px --- */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 540px; }
  .about-content { padding-right: 0; }
  .sponsors-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* --- Mobile: 768px --- */
@media (max-width: 768px) {
  .section-padding { padding: 72px 0; }

  /* Nav */
  .hamburger { display: flex; z-index: 1100; }
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .nav-link {
    font-size: 20px;
    padding: 12px 20px;
  }

  /* Hero */
  .hero-content { padding: 100px 24px 80px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  /* Stats */
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-divider { display: none; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* GI */
  .gi-bg { background-attachment: scroll; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Partners */
  .partner-cards { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }

  /* Sponsors */
  .sponsor-tiers { grid-template-columns: 1fr 1fr; }

  /* Shop */
  .shop-inner { flex-direction: column; text-align: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; }
}

/* --- Small Mobile: 480px --- */
@media (max-width: 480px) {
  .programs-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 38px; letter-spacing: -1px; }
  .gi-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
}
