﻿/* 🎨 KufeArt Tablet - CSS Variables */

:root {
    /* 🎨 COLORS */
    --primary: #2c3e50;
    --primary-light: #34495e;
    --primary-dark: #1a252f;
    --secondary: #3498db;
    --secondary-light: #5dade2;
    --secondary-dark: #2980b9;
    --success: #27ae60;
    --success-light: #2ecc71;
    --success-dark: #229954;
    --warning: #f39c12;
    --warning-light: #f5b041;
    --warning-dark: #d68910;
    --danger: #e74c3c;
    --danger-light: #ec7063;
    --danger-dark: #c0392b;
    --info: #17a2b8;
    --info-light: #5bc0de;
    --info-dark: #138496;
    /* 🌈 GRAYS */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;
    /* 📐 SPACING */
    --space-xs: 0.25rem; /* 4px */
    --space-sm: 0.5rem; /* 8px */
    --space-md: 0.75rem; /* 12px */
    --space-lg: 1rem; /* 16px */
    --space-xl: 1.5rem; /* 24px */
    --space-2xl: 2rem; /* 32px */
    --space-3xl: 3rem; /* 48px */
    --space-4xl: 4rem; /* 64px */
    /* 📝 TYPOGRAPHY */
    --font-xs: 0.75rem; /* 12px */
    --font-sm: 0.875rem; /* 14px */
    --font-md: 1rem; /* 16px */
    --font-lg: 1.125rem; /* 18px */
    --font-xl: 1.25rem; /* 20px */
    --font-2xl: 1.5rem; /* 24px */
    --font-3xl: 1.875rem; /* 30px */
    --font-4xl: 2.25rem; /* 36px */

    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    /* 🔲 BORDERS */
    --border-radius-sm: 0.25rem;
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;
    --border-radius-2xl: 1rem;
    /* 🌟 SHADOWS */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* ⏱️ TRANSITIONS */
    --transition: all 0.2s ease;
    --transition-fast: all 0.1s ease;
    --transition-slow: all 0.3s ease;
    /* 📱 TABLET SPECIFIC */
    --header-height: 70px;
    --sidebar-width: 280px;
    --tablet-min-width: 768px;
    --tablet-max-width: 1024px;
    /* 🎯 DEPARTMENT COLORS */
    --kitchen-color: #e67e22;
    --kitchen-light: #f39c12;
    --kitchen-dark: #d35400;
    --bar-color: #9b59b6;
    --bar-light: #af7ac5;
    --bar-dark: #8e44ad;
}

/* 🌙 DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1a1a;
        --gray-50: #2d2d2d;
        --gray-100: #3d3d3d;
        --gray-900: #ffffff;
        --black: #ffffff;
    }
}
