/* ==========================================================================
   RANCHO LOS MINIS - DESIGN TOKENS & LUXURY EQUESTRIAN THEME
   ========================================================================== */

:root {
  /* --- Primary Equestrian & Gold Palette --- */
  --color-primary: #0f2b1d;           /* British Racing Green / Deep Forest */
  --color-primary-dark: #091a11;      /* Obsidian Forest */
  --color-primary-light: #1b432e;     /* Emerald Spruce */
  --color-primary-soft: rgba(15, 43, 29, 0.06);

  /* Luxury Champagne Gold & Brass */
  --color-gold: #cba135;              /* Royal Gold */
  --color-gold-light: #e5c058;        /* Champagne Gold Highlight */
  --color-gold-dark: #a88220;         /* Antique Burnished Brass */
  --color-gold-gradient: linear-gradient(135deg, #cba135 0%, #ecd07a 50%, #b38b25 100%);
  --color-gold-soft: rgba(203, 161, 53, 0.12);

  /* Rich Leather & Saddle Tones */
  --color-leather: #42281a;           /* Deep Saddle Leather */
  --color-leather-light: #6e432c;     /* Chestnut Leather */
  --color-terracotta: #a3562a;

  /* Neutrals & Luxury Backgrounds */
  --color-bg-light: #fbf9f5;          /* Warm Alabaster / Ivory */
  --color-bg-surface: #ffffff;        /* Pure White Card Surface */
  --color-bg-cream: #f4eee3;          /* Warm Linen */
  --color-bg-dark: #121815;           /* Midnight Equestrian Green */
  --color-bg-darker: #0b0f0d;         /* Deepest Obsidian */

  /* Text Colors */
  --color-text-main: #242926;         /* Charcoal Forest */
  --color-text-muted: #5e6863;        /* Soft Sage Muted */
  --color-text-light: #fbf9f5;        /* Light Ivory for dark sections */
  --color-text-gold: #cba135;

  /* Accents & Status */
  --color-status-available: #1e7e34;  /* Forest Emerald */
  --color-status-reserved: #d97706;   /* Amber */
  --color-status-breeding: #7c3aed;   /* Royal Purple */
  --color-whatsapp: #25d366;

  /* --- Typography --- */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- Elevations & Shadows --- */
  --shadow-sm: 0 2px 8px rgba(15, 43, 29, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 43, 29, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 43, 29, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 43, 29, 0.18);
  --shadow-gold: 0 10px 30px rgba(203, 161, 53, 0.25);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.15);

  /* --- Border Radius --- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1320px;
  --navbar-height: 88px;
}
