/*
Theme Name: Susrut Medilearn
Theme URI: https://susrutmedlearn.in
Author: Antigravity
Description: A premium, highly animated WordPress theme recreated for Medilearn, optimized for medical training and eye care courses.
Version: 1.0
Text Domain: medilearn
*/

:root {
  /* Colors */
  --primary-color: #3e7fbc;
  --primary-dark: #2d6aa2;
  --primary-light: #e8f2fa;
  --accent-color: #3579b9;
  --bg-main: #ffffff;
  --bg-alt: #f4f8fd;
  --bg-card: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.85);
  
  /* Text Colors */
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  /* Layout */
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(62, 127, 188, 0.08);
  --shadow-lg: 0 16px 40px rgba(62, 127, 188, 0.12);
  
  /* Font Stack */
  --font-primary: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
