/* ============================================
   COLLEGE OF NURSING SCIENCE — DESIGN TOKENS
   All colors, fonts, and shared values live here.
   Change a value once, it updates everywhere.
   ============================================ */

:root {
  /* Brand colors */
  --navy:    #1A2B4A;
  --teal:    #2A7F6F;
  --teal-lt: #3AA08E;
  --gold:    #C9952A;
  --cream:   #F8F5F0;
  --white:   #FFFFFF;
  --gray:    #6B7280;
  --light:   #EEF2F7;
  --text:    #1E1E2E;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --nav-height: 68px;
  --section-padding: 96px 5%;
  --max-width: 1200px;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 20px 40px rgba(26, 43, 74, 0.12);
  --transition-fast: 0.2s;
  --transition-slow: 0.3s;
}
