/*
Theme Name: CSA
Theme URI: https://championssportsacademy.com/csa-theme
Description: A premium sports-focused WordPress theme for Champions Sports Academy Private Limited. Classic sports club palette — forest green, crisp white, deep navy and gold.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: csa
Tags: sports, custom-colors, grid-layout, responsive-layout, translation-ready
*/

/* ============================================================
   CORE DESIGN TOKENS  —  Cricket Club Palette
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-primary:    #f4f6f4;
  --bg-secondary:  #ffffff;
  --bg-accent:     #e6efe8;
  --bg-dark:       #0d1f3c;
  --bg-dark-2:     #162a50;
  --bg-glass:      rgba(255, 255, 255, 0.12);
  --border-glass:  rgba(255, 255, 255, 0.20);

  /* Brand */
  --color-primary:       #1a5c38;
  --color-primary-rgb:   26, 92, 56;
  --color-primary-light: #237a4b;
  --color-secondary:     #c9a84c;
  --color-secondary-rgb: 201, 168, 76;
  --color-navy:          #0d1f3c;

  /* Text */
  --color-text:   #1c2b1e;
  --color-muted:  #526658;
  --color-light:  #ffffff;
  --color-border: #cdd9ce;

  /* Typography */
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:  'Inter',  -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width:     1280px;
  --header-height: 76px;

  /* Radii */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;

  /* Shadows */
  --shadow-sm:   0 2px 8px  rgba(26, 92, 56, 0.08);
  --shadow-md:   0 6px 24px rgba(26, 92, 56, 0.13);
  --shadow-lg:   0 16px 48px rgba(13, 31, 60, 0.18);
  --shadow-glow: 0 0 20px   rgba(26, 92, 56, 0.22);

  /* Transitions */
  --transition-fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
}
