/* Centralized color scheme for Artemis Website */

:root {
    /* Primary Colors */
    --primary-dark: #061024;    /* Deeper Blue */
    --primary-light: #0e2248;   /* Lighter Blue */
    --secondary-color: #ffd700;  /* Gold */
    --secondary-dark: #d4af37;  /* Darker Gold */
    
    /* Background Colors */
    --bg-light: #f9f9f7;        /* Light cream/beige */
    --bg-dark: #0a192f;         /* Dark blue background */
    --bg-gradient: linear-gradient(to bottom, var(--primary-dark), #030813);
    
    /* Text Colors */
    --text-primary: #333333;    /* Main text color */
    --text-light: #ffffff;      /* Light text color */
    --text-secondary: rgba(255, 255, 255, 0.7); /* Semi-transparent light text */
    
    /* Accent Colors */
    --accent-blue: #4e7fff;     /* Accent blue */
    --accent-gold: #ffd700;     /* Gold accent - replacing purple */
    
    /* Effects */
    --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    --box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0 6px 16px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.7s ease;
}
