/*
Theme Name: CFSA Landing Theme
Theme URI: https://example.com/cfsa
Author: CFSA
Author URI: https://example.com
Description: High-conversion VSL landing page for Certified Financial Systems Architect program. Minimal, clean, premium design optimized for conversions.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cfsa-landing
Tags: one-column, custom-colors, elementor-ready, landing-page
*/

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */
:root {
  --background: 0 0% 100%;
  --foreground: 207 73% 11%;
  --card: 0 0% 100%;
  --card-foreground: 207 73% 11%;
  --popover: 0 0% 100%;
  --popover-foreground: 207 73% 11%;
  --primary: 38 63% 44%;
  --primary-foreground: 207 73% 11%;
  --secondary: 0 0% 96%;
  --secondary-foreground: 207 73% 11%;
  --muted: 0 0% 96%;
  --muted-foreground: 207 50% 30%;
  --accent: 38 63% 44%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 0 0% 90%;
  --input: 0 0% 90%;
  --ring: 38 63% 44%;
  --radius: 0.5rem;
  --navy: 207 73% 11%;
  --gold: 38 63% 44%;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: hsl(var(--border));
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: normal;
}

body {
  margin: 0;
  line-height: inherit;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(var(--navy));
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

p {
  color: hsl(var(--navy));
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

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

button {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-navy {
  color: hsl(var(--navy));
}

.bg-navy {
  background-color: hsl(var(--navy));
}

.text-gold {
  color: hsl(var(--gold));
}

.bg-gold {
  background-color: hsl(var(--gold));
}

.border-gold {
  border-color: hsl(var(--gold));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-background {
  background-color: hsl(var(--background));
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.min-h-screen {
  min-height: 100vh;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

/* ==========================================================================
   Spacing
   ========================================================================== */
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.p-8 {
  padding: 2rem;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* ==========================================================================
   Sizing
   ========================================================================== */
.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-xs {
  max-width: 20rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-full {
  width: 100%;
}

/* ==========================================================================
   Aspect Ratio
   ========================================================================== */
.aspect-video {
  aspect-ratio: 16 / 9;
}

/* ==========================================================================
   Borders & Shadows
   ========================================================================== */
.border {
  border-width: 1px;
}

.border-border {
  border-color: hsl(var(--border));
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* ==========================================================================
   Button Styles (CTA)
   ========================================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
  background-color: hsl(var(--gold));
  color: hsl(var(--navy));
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-cta:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

/* ==========================================================================
   Video Container
   ========================================================================== */
.video-container {
  aspect-ratio: 16 / 9;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Offer Box
   ========================================================================== */
.offer-box {
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  text-align: center;
}

/* ==========================================================================
   Check Icon (SVG)
   ========================================================================== */
.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--gold));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-icon-sm {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--gold));
  flex-shrink: 0;
}

/* ==========================================================================
   Section Backgrounds
   ========================================================================== */
.section-alt {
  background-color: hsl(var(--secondary) / 0.5);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (min-width: 768px) {
  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:w-auto {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */
.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Elementor Compatibility */
.elementor-page .site-content {
  padding: 0;
}

.elementor-page .site-main {
  padding: 0;
}
