/* ========================================
   MindHub Design System — Orange-White Theme
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Primary Orange Palette */
    --orange-50: #FFF8F0;
    --orange-100: #FFEDD5;
    --orange-200: #FFD1A1;
    --orange-300: #FFA559;
    --orange-400: #FF8C42;
    --orange-500: #FF6B35;
    --orange-600: #E85D2C;
    --orange-700: #CC4A1A;
    --orange-800: #A63B14;
    --orange-900: #7A2B0E;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Semantic */
    --bg-primary: var(--white);
    --bg-secondary: var(--orange-50);
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --accent: var(--orange-500);
    --accent-light: var(--orange-200);
    --accent-dark: var(--orange-700);

    /* Glass Effects */
    --glass-bg: rgba(255, 248, 240, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-bg-dark: rgba(255, 237, 213, 0.6);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(204, 74, 26, 0.06);
    --shadow-md: 0 8px 32px rgba(204, 74, 26, 0.10);
    --shadow-lg: 0 16px 48px rgba(204, 74, 26, 0.14);
    --shadow-xl: 0 24px 64px rgba(204, 74, 26, 0.18);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.25s var(--ease-out);
    --transition-slow: all 0.4s var(--ease-out);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    color: var(--text-primary);
    background: var(--orange-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility: hide scrollbar but keep scroll */
.hide-scrollbar::-webkit-scrollbar {
    width: 0;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.25);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 53, 0.4);
}