/* ==========================================================================
   CCAK DESIGN SYSTEM & CSS VARIABLES
   Chishtiya College of Art, Commerce and Science, Khuldabad
   ========================================================================== */

:root {
  /* Brand Colors - Academic Royal Blue Palette */
  --primary: #003366;          /* Deep Royal Blue */
  --primary-dark: #002244;     /* Navy Dark */
  --primary-light: #0055a5;    /* Vibrant Royal Blue */
  --primary-subtle: #e6f0fa;   /* Ice Blue Light Tint */
  --accent: #d4af37;           /* Academic Gold / Warm Ochre */
  --accent-light: #fef9e7;     /* Warm Ivory Accent */
  
  /* Neutral Palette */
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #1e293b;        /* Slate 900 */
  --text-muted: #64748b;       /* Slate 500 */
  --text-inverse: #ffffff;
  --border: #e2e8f0;           /* Slate 200 */
  --border-light: #f1f5f9;
  
  /* Status & Accents */
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;
  
  /* Typography */
  --font-heading: 'Cinzel', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4.5rem;
  
  /* Borders & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Layout */
  --container-max: 1280px;
  --transition: all 0.2s ease-in-out;
}
