/* =============================================================
   FORTIS JIU JITSU ACADEMY — Main Stylesheet (Developer Version)
   =============================================================

   DESIGN SYSTEM OVERVIEW
   ─────────────────────────────────────────────────────────────
   Color palette:
     --obsidian  #0A0C14   Primary dark background
     --charcoal  #111318   Slightly lighter dark (stats bar, cards)
     --dark-mid  #0D0F1A   Mid-dark (about section, FAQ)
     --gold      #C8A951   Primary accent (all highlights, CTAs)
     --gold-light #F5C842  Gold hover state
     --cream     #FAF7F0   Light section background (schedule)
     --cream-dark #EDE8DC  Gradient end for testimonials

   Typography:
     Display headings  → Bebas Neue (Google Fonts)
     Sub-headings      → Oswald (Google Fonts)
     Body / UI text    → Inter (Google Fonts)

   WP NOTE: Remove the @import below and enqueue via functions.php:
     wp_enqueue_style('google-fonts',
       'https://fonts.googleapis.com/css2?family=Bebas+Neue
        &family=Oswald:wght@300;400;500;600;700
        &family=Inter:wght@300;400;500;600&display=swap');
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────────────────────────────
   CSS RESET & BASE
   Minimal reset — box-sizing, no default margin/padding.
   ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0A0C14;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS (CSS Custom Properties)
   Change these to retheme the entire site.
   ───────────────────────────────────────────────────────────── */
:root {
  --gold: #C8A951;          /* Primary accent — buttons, borders, highlights */
  --gold-light: #F5C842;    /* Gold hover state */
  --obsidian: #0A0C14;      /* Darkest background */
  --charcoal: #111318;      /* Slightly lighter dark */
  --dark-mid: #0D0F1A;      /* Mid-dark sections */
  --cream: #FAF7F0;          /* Light section bg (schedule) */
  --cream-dark: #EDE8DC;    /* Gradient end */
  --container-max: 1280px;  /* Max content width */
  --container-pad: clamp(1rem, 4vw, 3rem); /* Responsive horizontal padding */
}

/* ─────────────────────────────────────────────────────────────
   LAYOUT — CONTAINER
   WP NOTE: In a theme, use .container inside page templates.
   The max-width + auto margin pattern is standard WP practice.
   ───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
   ───────────────────────────────────────────────────────────── */
.font-display { font-family: 'Bebas Neue', sans-serif; }
.font-sub     { font-family: 'Oswald', sans-serif; }
.font-body    { font-family: 'Inter', sans-serif; }
.text-gold    { color: var(--gold); }
.text-white   { color: #fff; }
.text-cream   { color: var(--cream); }
/* Gold accent text — used in section titles for the highlighted word */
.text-gold-gradient { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   EYEBROW LABEL
   Small uppercase label above section titles.
   The ::before and ::after pseudo-elements add decorative gold lines.
   ───────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 48px;
  background: var(--gold);
  opacity: 0.6;
}

/* ─────────────────────────────────────────────────────────────
   SECTION HEADING
   Used for all major section titles (H2).
   Font size is fluid: clamp(min, preferred, max).
   ───────────────────────────────────────────────────────────── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   Three variants:
     .btn-gold         → Solid gold (primary CTA)
     .btn-outline-gold → Transparent with gold border (secondary CTA)
     .btn-ghost-gold   → Subtle gold-tinted background (tertiary)
   ───────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--obsidian);         /* Dark text on gold for contrast */
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid rgba(200,169,81,0.5);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-outline-gold:hover { background: rgba(200,169,81,0.08); border-color: var(--gold); }

.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(200,169,81,0.08);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid rgba(200,169,81,0.35);
  transition: background 0.2s ease;
}
.btn-ghost-gold:hover { background: rgba(200,169,81,0.15); }

/* ─────────────────────────────────────────────────────────────
   GOLD HORIZONTAL RULE
   Decorative divider — fades in/out at edges via gradient.
   ───────────────────────────────────────────────────────────── */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ─────────────────────────────────────────────────────────────
   FADE-UP SCROLL ANIMATION
   Elements with .fade-up start invisible and slide up when
   they enter the viewport. Triggered by IntersectionObserver
   in main.js which adds the .visible class.
   ───────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────────
   LEVEL BADGES
   Pill-shaped labels used in schedule rows and program cards.
   Four variants: kids, beginner, intermediate, all-levels.
   ───────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-kids         { background: rgba(100,200,100,0.12); color: #6DC86D; border: 1px solid rgba(109,200,109,0.3); }
.badge-beginner     { background: rgba(150,200,255,0.12); color: #7EB4FF; border: 1px solid rgba(126,180,255,0.3); }
.badge-intermediate { background: rgba(200,100,200,0.12); color: #E080D8; border: 1px solid rgba(224,128,216,0.3); }
.badge-all-levels   { background: rgba(200,169,81,0.15);  color: var(--gold); border: 1px solid rgba(200,169,81,0.3); }

/* ─────────────────────────────────────────────────────────────
   FORM INPUTS
   Unified style for all text inputs, selects, and textareas.
   Dark semi-transparent background with gold focus border.
   WP NOTE: These classes can be applied to CF7 / WPForms fields
   via their CSS class settings.
   ───────────────────────────────────────────────────────────── */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 4px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-input:focus { border-color: rgba(200,169,81,0.5); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }

/* Uppercase label above each form field */
.form-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ─────────────────────────────────────────────────────────────
   TOAST NOTIFICATION
   Appears bottom-right. JS adds .show class to animate in,
   then removes it after 3.5 seconds.
   ───────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 20px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-success { background: #1a2a1a; color: #6DC86D; border: 1px solid rgba(109,200,109,0.3); }
.toast-error   { background: #2a1a1a; color: #FF7070; border: 1px solid rgba(255,112,112,0.3); }

/* ─────────────────────────────────────────────────────────────
   FLOATING TRIAL BUTTON
   Fixed bottom-center button visible only on mobile.
   Gives mobile users a persistent CTA without scrolling.
   ───────────────────────────────────────────────────────────── */
.floating-trial {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: none;
}
@media (max-width: 768px) { .floating-trial { display: block; } }

/* ─────────────────────────────────────────────────────────────
   FAQ ACCORDION
   Pure CSS open/close using max-height transition.
   JS toggles .open class on both .accordion-trigger and
   .accordion-body. The + icon rotates 45° when open.
   ───────────────────────────────────────────────────────────── */
.accordion-item { border-bottom: 1px solid rgba(200,169,81,0.1); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
/* The +/× icon circle */
.accordion-trigger .icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(200,169,81,0.1);
  border: 1px solid rgba(200,169,81,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.3s ease;
}
/* Rotate + to × when open */
.accordion-trigger.open .icon { transform: rotate(45deg); }
/* Collapsed state: max-height 0 hides content without display:none */
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body.open { max-height: 300px; }
.accordion-body p {
  padding-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ─────────────────────────────────────────────────────────────
   NAVBAR
   Fixed top navigation. Starts transparent, gains dark
   background + blur when user scrolls past 20px (JS adds
   .scrolled class).
   WP NOTE: Replace with header.php template part.
   ───────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,12,20,0.97);
  box-shadow: 0 1px 0 rgba(200,169,81,0.1);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
/* Logo: image + text stacked */
.navbar-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-logo img { width: 40px; height: 40px; object-fit: contain; }
.navbar-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-logo-text .name { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.08em; color: #fff; }
.navbar-logo-text .sub  { font-family: 'Oswald', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
/* Desktop nav links — hidden on mobile */
.navbar-links { display: flex; align-items: center; gap: 28px; }
.navbar-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.navbar-links a:hover { color: var(--gold); }
/* Underline slide-in on hover */
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.navbar-links a:hover::after { transform: scaleX(1); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
/* EN/FR language toggle pill */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.lang-btn { padding: 6px 10px; font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.lang-btn.active { background: rgba(200,169,81,0.15); color: var(--gold); }
/* Founder membership link in navbar */
.navbar-founder {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,169,81,0.05);
  transition: background 0.2s;
}
.navbar-founder:hover { background: rgba(200,169,81,0.12); }
/* Hamburger icon — 3 lines */
.navbar-mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.navbar-mobile-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.3s ease; }
/* Full-screen mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  z-index: 999;
  background: rgba(10,12,20,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 1.5rem; color: rgba(255,255,255,0.5); }
/* Switch to mobile layout below 1024px */
@media (max-width: 1024px) {
  .navbar-links, .navbar-actions { display: none; }
  .navbar-mobile-toggle { display: flex; }
}

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
   Full-viewport section with background image, two overlays,
   and a diagonal clip-path bottom edge.
   WP NOTE: clip-path survives most WP sanitizers when in an
   external stylesheet. Elementor/Divi may override it.
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Diagonal bottom edge — creates visual flow into next section */
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  margin-bottom: -4rem; /* Compensate for clip-path cutoff */
}
/* Background image div — JS sets background-image and adds .loaded to trigger slow zoom */
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; transition: transform 8s ease-out; }
.hero-bg.loaded { transform: scale(1.06); } /* Ken Burns effect */
/* Overlay 1: left-to-right dark gradient for text legibility */
.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,12,20,0.92) 0%, rgba(10,12,20,0.65) 50%, rgba(10,12,20,0.45) 100%); }
/* Overlay 2: bottom-to-top dark gradient to blend into next section */
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,20,1) 0%, rgba(10,12,20,0.3) 40%, transparent 70%); }
/* Subtle gold radial glow on left side */
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 20% 50%, rgba(200,169,81,0.06) 0%, transparent 60%); }
/* Content row: text left, logo right */
.hero-content { position: relative; z-index: 10; display: flex; align-items: center; gap: 48px; padding: 96px 0 128px; width: 100%; }
.hero-text { flex: 1; }
/* Each hero element fades in with a staggered delay (set in transition-delay) */
.hero-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s; }
.hero-badge.loaded { opacity: 1; transform: translateY(0); }
.hero-badge-line { height: 1px; width: 32px; background: var(--gold); }
.hero-badge-text { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 9vw, 7.5rem); letter-spacing: 0.03em; line-height: 0.95; color: #fff; margin-bottom: 16px; opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s; }
.hero-title.loaded { opacity: 1; transform: translateY(0); }
.hero-tagline { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 440px; margin-bottom: 32px; opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s; }
.hero-tagline.loaded { opacity: 1; transform: translateY(0); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s; }
.hero-ctas.loaded { opacity: 1; transform: translateY(0); }
/* Right column: large logo with glow */
.hero-logo-wrap { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-logo-glow { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,81,0.2) 0%, transparent 70%); transform: scale(1.3); }
.hero-logo { width: 480px; height: 480px; object-fit: contain; position: relative; z-index: 1; }
/* Animated scroll indicator at bottom center */
.hero-scroll { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 4px; opacity: 0; transition: opacity 0.8s ease 1.2s; }
.hero-scroll.loaded { opacity: 1; }
.hero-scroll-text { font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.hero-scroll-arrow { color: var(--gold); animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
/* On tablet/mobile: hide logo, stack content vertically */
@media (max-width: 1024px) {
  .hero-logo-wrap { display: none; }
  .hero-content { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────────────────────
   STATS BAR
   Four-column bar between hero and programs.
   Each stat has a gold dot + uppercase label.
   ───────────────────────────────────────────────────────────── */
.stats-bar { background: var(--charcoal); border-top: 1px solid rgba(200,169,81,0.1); border-bottom: 1px solid rgba(200,169,81,0.1); padding: 20px 0; position: relative; z-index: 5; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 8px 16px; border-right: 1px solid rgba(200,169,81,0.1); }
.stat-item:last-child { border-right: none; }
.stat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.stat-text { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.8rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); text-transform: uppercase; }
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(200,169,81,0.1); }
}

/* ─────────────────────────────────────────────────────────────
   PROGRAMS SECTION
   3-column grid of program cards on desktop, 2 on tablet, 1 on mobile.
   Private lessons section below has its own bordered container.
   ───────────────────────────────────────────────────────────── */
.programs-section { background: var(--obsidian); padding: 112px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-subtitle { font-family: 'Inter', sans-serif; font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 520px; margin: 12px auto 0; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px; }
/* Individual program card */
.program-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(200,169,81,0.12); border-radius: 8px; padding: 28px; transition: border-color 0.2s ease, transform 0.2s ease; }
.program-card:hover { border-color: rgba(200,169,81,0.35); transform: translateY(-3px); }
.program-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.program-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.04em; color: #fff; }
.program-age-level { font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.program-desc { font-family: 'Inter', sans-serif; font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.program-features { display: flex; flex-direction: column; gap: 8px; }
/* Gold dot bullet points */
.program-feature { display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.program-feature::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
/* Private lessons bordered container */
.private-section { background: rgba(200,169,81,0.04); border: 1px solid rgba(200,169,81,0.15); border-radius: 12px; padding: 48px; }
.private-header { text-align: center; margin-bottom: 40px; }
.private-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 32px; }
.private-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(200,169,81,0.15); border-radius: 8px; padding: 28px; }
.private-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.04em; color: #fff; margin-bottom: 4px; }
.private-card-sub { font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.private-cta { text-align: center; }
.private-cta p { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
@media (max-width: 1024px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .programs-grid { grid-template-columns: 1fr; } .private-grid { grid-template-columns: 1fr; } .private-section { padding: 28px 20px; } }

/* ─────────────────────────────────────────────────────────────
   SCHEDULE SECTION
   Light cream background with dark schedule table.
   Day tabs switch the visible rows via JS (no page reload).
   WP NOTE: For dynamic schedule management, use TablePress
   or a custom post type with ACF.
   ───────────────────────────────────────────────────────────── */
.schedule-section { background: var(--cream); padding: 112px 0; position: relative; }
/* SVG wave divider at top — replaces clip-path for WP compatibility */
.schedule-wave-top { position: absolute; top: 0; left: 0; right: 0; overflow: hidden; line-height: 0; }
.schedule-wave-top svg { display: block; width: 100%; }
/* Day selector tabs */
.day-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.day-tab { padding: 8px 16px; border-radius: 4px; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(10,12,20,0.06); color: rgba(10,12,20,0.6); border: 1px solid transparent; transition: all 0.2s; cursor: pointer; }
.day-tab.active { background: var(--obsidian); color: var(--gold); border-color: rgba(200,169,81,0.3); }
/* Dark table on light background */
.schedule-table { background: var(--obsidian); border: 1px solid rgba(200,169,81,0.15); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(10,12,20,0.3); }
/* 4-column header row */
.schedule-table-head { display: grid; grid-template-columns: 1fr 2fr 1.5fr 1fr; padding: 16px 24px; border-bottom: 1px solid rgba(200,169,81,0.15); background: rgba(200,169,81,0.05); }
.schedule-table-head span { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
/* Data rows — injected by JS from scheduleData object in main.js */
.schedule-row { display: grid; grid-template-columns: 1fr 2fr 1.5fr 1fr; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s; }
.schedule-row:last-child { border-bottom: none; }
.schedule-row:hover { background: rgba(200,169,81,0.04); }
.schedule-time { display: flex; align-items: center; gap: 8px; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.schedule-class { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.875rem; color: rgba(255,255,255,0.9); }
.schedule-instructor { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.schedule-note { text-align: center; margin-top: 24px; font-family: 'Inter', sans-serif; font-size: 0.8rem; color: rgba(10,12,20,0.45); }
/* Mobile: hide instructor column, collapse to 3 columns */
@media (max-width: 640px) {
  .schedule-table-head { grid-template-columns: 1fr 2fr 1fr; }
  .schedule-table-head span:nth-child(3) { display: none; }
  .schedule-row { grid-template-columns: 1fr 2fr 1fr; }
  .schedule-instructor { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   INSTRUCTORS SECTION
   Two-column layout: photo frame left, bio + credentials right.
   Replace the .instructor-photo-initial placeholder with an
   <img> tag once Coach Lev's photo is available.
   ───────────────────────────────────────────────────────────── */
.instructors-section { background: var(--obsidian); padding: 112px 0; position: relative; }
.instructors-wave-top { position: absolute; top: 0; left: 0; right: 0; overflow: hidden; line-height: 0; }
.instructors-wave-top svg { display: block; width: 100%; }
.instructor-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.instructor-photo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
/* Photo frame — swap the initial div for an <img> when photo is ready */
.instructor-photo-frame { width: 320px; height: 380px; border-radius: 8px; background: rgba(200,169,81,0.06); border: 1px solid rgba(200,169,81,0.2); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.instructor-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.instructor-photo-initial { font-family: 'Bebas Neue', sans-serif; font-size: 6rem; color: var(--gold); opacity: 0.4; }
/* Star icon accent bottom-right of photo */
.instructor-photo-accent { position: absolute; bottom: -16px; right: -16px; width: 80px; height: 80px; border-radius: 8px; background: rgba(200,169,81,0.08); border: 1px solid rgba(200,169,81,0.2); display: flex; align-items: center; justify-content: center; }
.instructor-belt-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(200,169,81,0.1); border: 1px solid rgba(200,169,81,0.25); border-radius: 4px; font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.instructor-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4vw, 3.5rem); letter-spacing: 0.04em; color: #fff; margin-bottom: 8px; }
.instructor-bio { font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.instructor-credentials { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.instructor-credential { display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.instructor-credential-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@media (max-width: 768px) { .instructor-layout { grid-template-columns: 1fr; gap: 40px; } .instructor-photo-frame { width: 240px; height: 280px; } }

/* ─────────────────────────────────────────────────────────────
   ABOUT SECTION
   Two-column: text + self-defence box left, values grid + belt
   progression right.
   ───────────────────────────────────────────────────────────── */
.about-section { background: var(--dark-mid); padding: 112px 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.about-text p { font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
/* Self-defence callout box */
.self-defence-box { background: rgba(200,169,81,0.04); border: 1px solid rgba(200,169,81,0.15); border-radius: 8px; padding: 28px; margin-top: 32px; }
.self-defence-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.04em; color: var(--gold); margin-bottom: 16px; }
.self-defence-points { display: flex; flex-direction: column; gap: 10px; }
/* Checkmark bullet points */
.self-defence-point { display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.self-defence-point::before { content: '✓'; color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
/* 2x2 values grid */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(200,169,81,0.1); border-radius: 8px; padding: 24px; }
.value-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.04em; color: var(--gold); margin-bottom: 8px; }
.value-desc { font-family: 'Inter', sans-serif; font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.5); }
/* Belt progression color strips */
.belt-section { margin-top: 48px; }
.belt-section-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 16px; }
.belt-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.belt-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.belt-strip { width: 48px; height: 12px; border-radius: 3px; }
.belt-label { font-family: 'Oswald', sans-serif; font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
@media (max-width: 768px) { .about-layout { grid-template-columns: 1fr; gap: 40px; } .values-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS SECTION
   3-column card grid on light cream background.
   ───────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(200,169,81,0.1); border-radius: 8px; padding: 28px; transition: border-color 0.2s; }
.testimonial-card:hover { border-color: rgba(200,169,81,0.3); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-family: 'Inter', sans-serif; font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
/* Initial avatar circle */
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(200,169,81,0.12); border: 1px solid rgba(200,169,81,0.25); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--gold); }
.testimonial-name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.85); }
.testimonial-program { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--gold); }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─────────────────────────────────────────────────────────────
   FAQ SECTION
   Category filter buttons + accordion list.
   Filter buttons show/hide .accordion-item elements by data-cat.
   WP NOTE: Use WP Accordion plugin or Elementor Accordion widget
   for a no-code equivalent.
   ───────────────────────────────────────────────────────────── */
.faq-section { background: var(--dark-mid); padding: 112px 0; }
.faq-categories { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 48px; }
.faq-cat-btn { padding: 8px 18px; border-radius: 4px; font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: all 0.2s; }
.faq-cat-btn.active { background: rgba(200,169,81,0.12); color: var(--gold); border-color: rgba(200,169,81,0.3); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-cta { text-align: center; margin-top: 64px; padding: 40px; background: rgba(200,169,81,0.04); border: 1px solid rgba(200,169,81,0.15); border-radius: 8px; }
.faq-cta p { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; }

/* ─────────────────────────────────────────────────────────────
   CONTACT SECTION
   Two-column: info + social left, form card right.
   WP NOTE: Replace the <form> with a CF7 shortcode:
     [contact-form-7 id="your-form-id"]
   Apply .form-input class to CF7 fields via Additional CSS.
   ───────────────────────────────────────────────────────────── */
.contact-section { background: linear-gradient(180deg, #0A0C14 0%, #080A12 100%); padding: 112px 0; position: relative; }
.contact-wave-top { position: absolute; top: 0; left: 0; right: 0; overflow: hidden; line-height: 0; }
.contact-wave-top svg { display: block; width: 100%; }
.contact-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 100%, rgba(200,169,81,0.05) 0%, transparent 60%); }
.contact-layout { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 4px; background: rgba(200,169,81,0.1); border: 1px solid rgba(200,169,81,0.2); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.contact-info-label { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 2px; }
.contact-info-value { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.65); white-space: pre-line; }
.social-links { display: flex; gap: 12px; }
/* Social icon buttons — hover handled by CSS (no inline handlers) */
.social-btn { width: 40px; height: 40px; border-radius: 4px; background: rgba(255,255,255,0.04); border: 1px solid rgba(200,169,81,0.15); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: all 0.2s; }
.social-btn:hover { background: rgba(200,169,81,0.1); border-color: rgba(200,169,81,0.4); }
/* Form card */
.contact-form-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(200,169,81,0.15); border-radius: 12px; padding: 32px; }
.contact-divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
.contact-divider-line { flex: 1; height: 1px; background: rgba(200,169,81,0.15); }
.contact-divider-text { font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.contact-form-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.04em; color: #fff; margin-bottom: 24px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
/* Success state shown after form submission */
.success-box { padding: 32px; text-align: center; border-radius: 8px; background: rgba(200,169,81,0.08); border: 1px solid rgba(200,169,81,0.25); }
.success-icon { color: var(--gold); font-size: 2rem; margin-bottom: 8px; }
.success-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.05em; color: #fff; }
.success-sub { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 6px; }
@media (max-width: 1024px) { .contact-layout { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────
   FOOTER
   WP NOTE: Move to footer.php template part.
   Use wp_nav_menu() for the Quick Links column.
   ───────────────────────────────────────────────────────────── */
footer { background: var(--obsidian); border-top: 1px solid rgba(200,169,81,0.12); }
.footer-grid-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
/* Footer link hover — CSS only, no inline handlers */
footer a:hover { color: var(--gold) !important; }
@media (max-width: 768px) {
  .footer-grid-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
}
