/*
Theme Name: We Pass Prop Firm
Theme URI: https://wepasspropfirm.com/
Author: We Pass Prop Firm Desk
Author URI: https://wepasspropfirm.com/
Description: Premium Custom WordPress Theme for We Pass Prop Firm — Guaranteed Prop Challenge Passing & Funded Capital Services. Includes Light Theme Header/Footer, Canvas & Full-Width layouts, Blog Archive, Single Post & Custom 404.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: Proprietary
License URI: https://wepasspropfirm.com/
Text Domain: wepasspropfirm
Tags: custom-header, custom-menu, full-width-template, theme-options, translation-ready, blog, dark-theme, responsive-layout
*/

/* ── DESIGN SYSTEM & CONSTANTS ── */
:root {
  --bg-base: #060813;              /* Deep Slate Dark Base */
  --bg-card: rgba(13, 17, 34, 0.55); /* Glassmorphic Deep Navy Cards */
  --bg-card-hover: rgba(20, 26, 51, 0.75);
  
  --accent-green: #00e676;         /* Neon Emerald Green */
  --accent-green-hover: #00c853;
  --accent-green-rgb: 0, 230, 118;
  --accent-cyan: #00e5ff;          /* Technical Cyan Glow */
  --accent-cyan-rgb: 0, 229, 255;
  --accent-gold: #f5c842;          /* Star Rating Gold */
  
  --text-primary: #f0f4ff;         /* High-contrast light text */
  --text-secondary: #94a3b8;       /* Slate-400 descriptions */
  --text-muted: #475569;           /* Slate-600 details */
  --border-subtle: rgba(30, 45, 69, 0.4);
  --border-glow: rgba(0, 230, 118, 0.15);
  
  --header-bg-light: #ffffff;
  --header-border-light: rgba(15, 23, 42, 0.08);
  --header-text-main: #0f172a;
  --header-text-hover: #00c853;
  --header-btn-bg: #00c853;
  --header-btn-text: #ffffff;

  --footer-bg-light: #ffffff;
  --footer-card-bg-light: #f8fafc;
  --footer-border-light: rgba(15, 23, 42, 0.08);
  --footer-text-main: #0f172a;
  --footer-text-muted: #64748b;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-base);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 54px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wppf-canvas-body {
  padding-top: 0 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  body { padding-top: 48px; }
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-cyan);
}

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

/* WordPress Alignment & Media Support */
.aligncenter { display: block; margin: 0 auto 20px; }
.alignright { float: right; margin: 0 0 20px 20px; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-secondary); text-align: center; margin-top: 6px; }

/* ── BUTTON SYSTEM ── */
.beo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.beo-btn-primary {
  background: var(--accent-green);
  color: #060813;
  border: 1px solid var(--accent-green);
  box-shadow: 0 10px 25px rgba(0, 230, 118, 0.15);
}

.beo-btn-primary:hover {
  background: #00c853;
  border-color: #00c853;
  color: #060813;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 230, 118, 0.25);
}

.beo-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: white;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.beo-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateY(-2px);
}

/* Eyebrows & Title Styling */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 20px;
  max-width: 800px;
}

.section-title span {
  background: linear-gradient(135deg, #FFFFFF 30%, #CFD8DC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title strong {
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 48px;
}

/* Glow Backdrop Spots */
.glow-spot-1 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 50vh;
  background: radial-gradient(ellipse at center, rgba(var(--accent-green-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-spot-2 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 45vw;
  height: 40vh;
  background: radial-gradient(ellipse at center, rgba(var(--accent-cyan-rgb), 0.05) 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
