/* gold.css */
.theme-gold {
  /* Colors */
  --bg-primary: #050402;
  --bg-secondary: #0d0a06;
  --bg-tertiary: #17130b;
  
  --text-primary: #ffffff;
  --text-secondary: #e6dfd7;
  --text-muted: #b5ac9d;

  /* Accent Colors */
  --accent-color: #c5a880;
  --accent-gradient: linear-gradient(135deg, #c5a880 0%, #a3875f 50%, #7d633f 100%);
  --accent-glow: rgba(197, 168, 128, 0.3);
  --accent-hover: #e8d0ad;
  
  /* Glassmorphism Styles */
  --glass-bg: rgba(13, 10, 6, 0.75);
  --glass-border: rgba(197, 168, 128, 0.15);
  --glass-shadow: rgba(0, 0, 0, 0.7);
  --glass-glow: rgba(197, 168, 128, 0.04);

  /* Card Colors */
  --card-bg: #0f0c08;
  --card-border: rgba(197, 168, 128, 0.08);
  --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
  
  /* Inputs */
  --input-bg: rgba(5, 4, 2, 0.8);
  --input-border: rgba(197, 168, 128, 0.2);
  --input-focus-border: #c5a880;

  /* Verification / OTP code inputs — needs its own colour so the digits stay
     legible against the modal background in every theme. */
  --code-input-bg: #0f0c06;
  --code-input-text: #e8d0ad;
  --code-input-border: rgba(197, 168, 128, 0.45);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
  
  /* Separator */
  --separator-color: rgba(197, 168, 128, 0.08);

  /* Hero academy title */
  --hero-title-color: #8b5e34;
}

.bg-pattern-gold {
    background-color: var(--bg-secondary);
    background-image: radial-gradient(rgba(197, 168, 128, 0.15) 1.5px, transparent 1.5px), radial-gradient(rgba(197, 168, 128, 0.1) 1px, transparent 1px);
    background-size: 32px 32px, 16px 16px;
    background-position: 0 0, 8px 8px;
}
