/* ============================================================
   CREATION BASKETBALL ACADEMY — SHARED STYLES
   Used across program detail pages (Youth, Performance, Pro)
   ============================================================ */

:root {
  --black: #0a0a0a;
  --off-black: #141414;
  --bone: #f5f1ea;
  --bone-dark: #ece6db;
  --white: #ffffff;
  --gold: #c9a449;
  --gold-deep: #a0822e;
  --gold-light: #e2c478;
  --gray-line: #2a2a2a;
  --gray-text: #6b6b6b;
  --gray-light: #e8e6e1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 48px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(201, 164, 73, 0.15);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  height: 44px;
  transition: opacity 0.3s;
}
.nav-brand:hover .nav-logo { opacity: 0.8; }
.nav-brand-text {
  display: none;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.18em;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 12px 22px;
  transition: all 0.3s;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--black) !important; }

/* ===== PAGE HEADER ===== */
.page-header {
  min-height: 70vh;
  background: var(--black);
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 48px 80px;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  filter: grayscale(0.3);
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.95) 100%),
    radial-gradient(circle at 30% 50%, rgba(201, 164, 73, 0.15) 0%, transparent 55%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.3); }
.program-tag {
  display: inline-block;
  background: rgba(201, 164, 73, 0.15);
  color: var(--gold);
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 164, 73, 0.3);
}
.page-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-title .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.page-lede {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* ===== METADATA STRIP ===== */
.metadata-strip {
  background: var(--off-black);
  color: var(--white);
  padding: 40px 48px;
  border-top: 1px solid rgba(201, 164, 73, 0.2);
  border-bottom: 1px solid rgba(201, 164, 73, 0.2);
}
.metadata-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.meta-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.meta-item:last-child { border-right: none; }
.meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.meta-value {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* ===== CHAPTER STYLING ===== */
.chapter {
  padding: 120px 48px;
}
.chapter-light { background: var(--bone); }
.chapter-dark { background: var(--black); color: var(--white); }
.chapter-accent { background: var(--off-black); color: var(--white); }

.chapter-inner {
  max-width: 960px;
  margin: 0 auto;
}
.chapter-wide {
  max-width: 1400px;
  margin: 0 auto;
}

.chapter-number {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.35em;
  margin-bottom: 20px;
}
.chapter-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.chapter-title .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.chapter-light .chapter-title .italic { color: var(--gold-deep); }

.chapter-prose p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 24px;
  font-weight: 400;
}
.chapter-light .chapter-prose p { color: var(--off-black); }
.chapter-dark .chapter-prose p,
.chapter-accent .chapter-prose p { color: rgba(255, 255, 255, 0.8); }
.chapter-prose strong { font-weight: 600; }
.chapter-dark .chapter-prose strong,
.chapter-accent .chapter-prose strong { color: var(--white); }

/* ===== SCHEDULE CARDS ===== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(201, 164, 73, 0.25);
}
.schedule-card {
  padding: 48px 36px;
  border-right: 1px solid rgba(201, 164, 73, 0.25);
  border-bottom: 1px solid rgba(201, 164, 73, 0.25);
  transition: background 0.3s;
}
.schedule-card:nth-child(3n) { border-right: none; }
.schedule-card:hover { background: rgba(201, 164, 73, 0.05); }
.schedule-card-accent {
  background: rgba(201, 164, 73, 0.08);
}
.schedule-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.schedule-time {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
}
.schedule-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.schedule-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

/* ===== CURRICULUM GRID ===== */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.curriculum-item {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}
.curriculum-item:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 73, 0.05);
}
.curriculum-num {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 18px;
}
.curriculum-title {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.curriculum-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* ===== PRICING CARD ===== */
.pricing-card {
  background: var(--white);
  padding: 56px 48px;
  border: 1px solid var(--gray-light);
  margin-top: 60px;
  text-align: center;
  position: relative;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.pricing-main {
  font-family: 'Anton', sans-serif;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-currency {
  font-size: 32px;
  vertical-align: super;
  margin-right: 4px;
}
.pricing-amount {
  font-size: 88px;
}
.pricing-period {
  font-size: 16px;
  color: var(--gray-text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-left: 4px;
}
.pricing-alt {
  font-size: 14px;
  color: var(--gray-text);
  font-style: italic;
  margin-bottom: 36px;
}
.pricing-includes {
  list-style: none;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}
.pricing-includes li {
  font-size: 15px;
  padding: 10px 0;
  color: var(--off-black);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pricing-includes li::before {
  content: '✓';
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-item {
  border-top: 1px solid var(--gray-light);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--gray-light); }
.faq-question {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.faq-answer {
  font-size: 16px;
  line-height: 1.75;
  color: var(--off-black);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--bone);
  padding: 120px 48px;
  text-align: center;
}
.cta-band-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-band-title .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--gold-deep);
}
.cta-band-sub {
  font-size: 17px;
  color: var(--gray-text);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--gold); color: var(--black); }
.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 48px 40px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--gray-line);
}
.footer-brand-wrap { margin-bottom: 24px; }
.footer-logo { height: 60px; display: block; }
.footer-brand-text {
  display: none;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  letter-spacing: 0.18em;
  color: var(--white);
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 600;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav { padding: 14px 24px; }
  .nav-logo { height: 36px; }
  .nav-links { display: none; }
  .page-header { padding: 120px 24px 60px; min-height: 60vh; }
  .metadata-strip { padding: 32px 24px; }
  .metadata-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .meta-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 24px; }
  .meta-item:nth-child(3), .meta-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }
  .chapter { padding: 80px 24px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-card { border-right: none; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 40px 28px; }
  .pricing-amount { font-size: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-band { padding: 80px 24px; }
}
