/* ==========================================
   SUMAPUR THEME - variables.css
   Theme variables for easy customization
   ========================================== */

:root {
    /* Brand Colors */
    --primary: #a371c5;
    --primary-dark: #7a4fa0;
    --footer-bg: #5b307a;

    /* Text Colors */
    --text-main: #333333;
    --text-muted: #555555;
    --text-light: #666666;

    /* Background Colors */
    --bg-main: #ffffff;
    --bg-secondary: #f7f0fc;

    /* Border Colors */
    --border-light: #e0cff0;
    --border-dark: #c9aee0;

    /* Sidebar */
    --sidebar-title-bg: #a371c5;
    --sidebar-title-text: #ffffff;
    --sidebar-title-before: #7a4fa0;

    /* Layout */
    --header-height: 60px;
    --sidebar-width: 300px;
    --content-max-width: 1200px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition: 0.3s ease;
    --transition-fast: 0.2s ease;

    /* Aliases for main.css compatibility */
    --color-primary: var(--primary);
    --color-primary-dark: var(--primary-dark);
    --color-text: var(--text-main);
    --color-text-muted: var(--text-muted);
    --color-text-light: var(--text-light);
    --color-bg: var(--bg-main);
    --color-bg-secondary: var(--bg-secondary);
    --color-border: var(--border-light);
    --color-border-dark: var(--border-dark);
}