/* ======================================================
   VARIABLES & THEME CONFIGURATION
   ====================================================== */

:root {
    /* Color Palette - Light Mode */
    --primary: #775144;
    --primary-dark: #2A0800;
    --secondary: #C09891;

    --bg-color: #F7F3F0;
    --surface-color: #EFE3DD;
    --card-bg: #FFFFFF;

    --heading: #2A0800;
    --text-color: #3B2924;
    --text-light: #775144;

    /* Typography */
    --font-primary: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Layout & Transitions */
    --container-max-width: 1320px;
    --transition-speed: 0.35s;
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 35px;
    --radius-full: 999px;
}

/* Color Palette - Dark Mode */
[data-theme="dark"] {
    --primary: #C09891;
    --primary-dark: #E2B9AF;
    --secondary: #775144;

    --bg-color: #121212;
    --surface-color: #1E1E1E;
    --card-bg: #272727;

    --heading: #F5F5F5;
    --text-color: #ECECEC;
    --text-light: #BDBDBD;
}
