@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

:root {
    /* --- BRAND COLORS (From Easter/Bloom Specs) --- */
    --brand-green: #1A7A4C;   /* Main Logo Green */
    --brand-dark: #0B4225;    /* Deep Green */
    --brand-coral: #F27A77;   /* Accent Coral */
    --brand-pink: #F9B7B2;    /* Soft Pink Accent */

    /* --- LIGHT MODE (Default) --- */
    --bg-base: #f3f4f6;
    --surface: #ffffff;
    --surface-hover: #f9fafb;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --input-bg: #f9fafb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] {
    /* --- DARK MODE --- */
    --bg-base: #0f172a;       /* Deep slate background */
    --surface: #1e293b;       /* Elevated surface */
    --surface-hover: #334155;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;
    --input-bg: #0f172a;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

/* --- GLOBAL RESETS --- */
* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    margin: 0;
    padding: 0;
}

/* Beautiful Scrollbars */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }