/**
 * Objects Portal — Shared CSS
 *
 * Common variables, reset, and base styles used across all portal pages:
 *   - objects-portal.html
 *   - my-projects.html
 *   - objects-dashboard.html
 */

/* ============================================================
   CSS Variables (brand tokens)
   ============================================================ */
:root {
    --bg-cream: #f5f0e6;
    --bg-cream-dark: #ebe5d8;
    --violet: #c4b5fd;
    --violet-dark: #a78bfa;
    --violet-light: #ddd6fe;
    --violet-bg: #ede9fe;
    --black: #000000;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --border: #d4cfc3;
    --success: #22c55e;
    --error: #dc2626;
    --warning: #f59e0b;
    --green-accent: #4ade80;
}

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

/* ============================================================
   Base
   ============================================================ */
body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.5;
}
