/* Revive Spin Studio — brand reskin
   Brand palette sampled from the brief images:
     #0A0A0A near-black bg
     #7B2CBF deep purple
     #9D4EDD light purple
     #FF6B35 flame orange
     #FFD60A gold accent
     #ffffff white
   Fonts:
     Bebas Neue — display caps
     Permanent Marker — handwritten accents
     Inter — body
*/

:root {
  --bg: #0A0A0A;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --purple: #7B2CBF;
  --purple-light: #9D4EDD;
  --purple-glow: rgba(123, 44, 191, 0.45);
  --orange: #FF6B35;
  --orange-light: #FF8C42;
  --gold: #FFD60A;
  --text: #ffffff;
  --text-mute: #b8b8b8;
  --border: rgba(255,255,255,0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-light); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-sub {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-mute);
  margin-top: 2px;
}
.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-menu a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color .2s;
}
.nav-menu a:not(.nav-cta):hover { color: var(--orange); }
.nav-cta {
  background: linear-gradient(135deg, #7B2CBF 0%, #B23A92 35%, #E14E5C 68%, #FF6B35 100%);
  color: var(--text) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--purple-glow); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.8) 60%, rgba(10,10,10,0.95) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(255,214,10,0.6);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.94;
  margin: 0 0 24px;
  letter-spacing: 4px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.7);
}
.hero-title .line-1 {
  display: block;
  background: linear-gradient(135deg, #fff 30%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 18px;
  font-weight: 500;
}
.hero-tagline .accent {
  color: var(--orange);
  font-weight: 700;
  font-family: 'Permanent Marker', cursive;
  letter-spacing: 1px;
}
.hero-quote {
  font-style: italic;
  color: var(--text-mute);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto 36px;
  padding: 12px 24px;
  border-left: 3px solid var(--purple-light);
  border-right: 3px solid var(--orange);
  background: rgba(255,255,255,0.03);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-location {
  color: var(--text-mute);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-location i { color: var(--orange); }
.hero-location strong { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all .2s;
  border: 0; /* no transparent border — it caused a light edge-fringe under gradients */
  cursor: pointer;
}
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, #7B2CBF 0%, #B23A92 35%, #E14E5C 68%, #FF6B35 100%);
  color: var(--text);
  box-shadow: 0 6px 20px var(--purple-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px var(--purple-glow); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 2px var(--orange); /* ring via shadow, not border */
}
.btn-outline:hover { background: var(--orange); color: var(--bg); transform: translateY(-2px); }
.btn-store {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border);
}
.btn-store:hover { background: rgba(255,255,255,0.12); color: var(--text); }

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
  position: relative;
}
.section-tag {
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 2px;
  margin: 0 0 48px;
  max-width: 820px;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ABOUT / BENEFITS ===== */
.section-about { background: var(--bg-2); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.benefit {
  padding: 36px 24px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform .25s, border-color .25s;
}
.benefit:hover { transform: translateY(-4px); border-color: var(--orange); }
.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,107,53,0.12);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--orange);
}
.benefit h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.benefit p {
  color: var(--text-mute);
  font-size: 0.93rem;
  margin: 0;
}

/* ===== CLASSES ===== */
.section-classes { background: var(--bg); }
.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}
.class-card {
  background: linear-gradient(180deg, rgba(123,44,191,0.08) 0%, rgba(255,107,53,0.04) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
}
.class-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
}
.class-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.class-list li {
  padding: 10px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.class-list li:last-child { border-bottom: none; }
.class-list li.highlight {
  color: var(--orange);
  font-weight: 700;
}
.classes-cta {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.app-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.form-link {
  text-align: center;
  margin-top: 16px;
}
.form-link a { color: var(--orange-light); font-weight: 600; }

/* ===== PRICING ===== */
.section-pricing { background: var(--bg-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}
.price-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform .25s, border-color .25s;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--purple-light); }
.price-card-featured {
  border-color: var(--orange);
  transform: scale(1.04);
  background: linear-gradient(180deg, rgba(123,44,191,0.12) 0%, rgba(255,107,53,0.06) 100%);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--bg);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.price-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--text);
  margin-bottom: 4px;
}
.price-amount .per {
  font-size: 0.95rem;
  color: var(--text-mute);
  font-family: 'Inter', sans-serif;
  margin-left: 4px;
}
.price-detail {
  color: var(--text-mute);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.pricing-extras {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.extra {
  padding: 14px 22px;
  background: rgba(123,44,191,0.18);
  border-radius: 10px;
  text-align: center;
  font-size: 0.95rem;
}
.extra i { color: var(--gold); margin-right: 8px; }

/* ===== TRAINERS ===== */
.section-trainers { background: var(--bg); }
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}
.trainer-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--purple-glow);
}
.trainer-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.trainer-body { padding: 24px 28px 28px; }
.trainer-body h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 2rem;
  margin: 0 0 4px;
  color: var(--orange);
  letter-spacing: 2px;
}
.trainer-role {
  color: var(--purple-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trainer-body p:last-of-type {
  color: var(--text-mute);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
}
.trainers-more {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.95rem;
}

/* ===== MERCH ===== */
.section-merch { background: var(--bg-2); }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.merch-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  padding-bottom: 22px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s;
}
.merch-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.merch-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.merch-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin: 20px 22px 4px;
}
.merch-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--orange);
  margin: 0 22px 8px;
}
.merch-card p {
  color: var(--text-mute);
  font-size: 0.9rem;
  margin: 0 22px 18px;
}
.merch-card .btn-block { margin: 0; }
.merch-note {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.95rem;
}
.merch-note strong { color: var(--gold); }

/* ===== CONTACT ===== */
.section-contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--purple-light); }
.contact-icon {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}
.contact-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.contact-card p {
  color: var(--text-mute);
  font-size: 0.95rem;
  margin: 0 0 12px;
}
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--orange); }
.contact-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  transition: all .2s;
}
.contact-social a:hover {
  background: linear-gradient(135deg, #7B2CBF 0%, #B23A92 35%, #E14E5C 68%, #FF6B35 100%);
  transform: translateY(-2px);
}

/* ===== VERSE STRIP ===== */
.verse-strip {
  padding: 64px 0;
  background: linear-gradient(135deg, #7B2CBF 0%, #B23A92 35%, #E14E5C 68%, #FF6B35 100%);
  text-align: center;
}
.verse-quote {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: 1px;
  line-height: 1.3;
}
.verse-ref {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 0 28px;
  background: #050505;
  border-top: 1px solid var(--border);
}
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
/* centre the footer brand/logo (brand-mark defaults to align-items:flex-start) */
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-brand .brand-mark { align-items: center; }
.footer-logo-img { margin-left: auto; margin-right: auto; }
.footer-tag {
  margin: 6px 0 0;
  color: var(--text-mute);
  font-size: 0.92rem;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--orange);
  color: var(--bg);
}
.footer-copy {
  margin: 0;
  color: var(--text-mute);
  font-size: 0.85rem;
}
.footer-copy a { color: var(--text-mute); }

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 50;
  transition: transform .2s;
}
.float-whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-menu .nav-cta { margin-top: 12px; text-align: center; }
  .hero { min-height: 80vh; padding: 60px 0; }
  .section { padding: 64px 0; }
  .section-title { margin-bottom: 32px; }
  .price-card-featured { transform: none; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}


/* === 2026-06-02 Faith feedback === */
.hero-icon img {
  height: 120px; width: auto; display: block; margin: 0 auto 18px;
  filter: drop-shadow(0 8px 24px rgba(123,44,191,0.5));
}
.footer-logo-img {
  height: 90px; width: auto; display: block;
  filter: drop-shadow(0 4px 12px rgba(123,44,191,0.4));
}
.brand-mark { padding: 0; }
.trainers-grid-compact {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 trainers = one row, no orphan */
  gap: 20px;
}
@media (max-width: 980px) {
  .trainers-grid-compact { grid-template-columns: repeat(3, 1fr); } /* 3+3, no orphan */
}
.trainer-card-compact {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding: 0;
  transition: transform .3s, box-shadow .3s;
}
.trainer-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px var(--purple-glow);
}
.trainer-card-compact img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.trainer-name {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  margin: 14px 0 16px;
  color: var(--orange);
  letter-spacing: 1px;
}
@media (max-width: 640px) {
  .trainers-grid-compact { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trainer-name { font-size: 1.25rem; margin: 10px 0 12px; }
}

/* === 2026-06-02: round logo in top nav === */
.brand-mark-logo {
  display: flex !important;
  align-items: center;
  padding: 0 !important;
}
.brand-mark-logo img {
  height: 60px; width: auto; display: block;
  filter: drop-shadow(0 2px 6px rgba(123,44,191,0.3));
  transition: transform 0.2s ease;
}
.brand-mark-logo:hover img { transform: scale(1.06); }
@media (max-width: 640px) {
  .brand-mark-logo img { height: 48px; }
}

