/* Color Scheme Definitions */

/* Default: Cool Grey */
[data-theme="gray"],
:root {
    --primary-color: #374151;
    --primary-dark: #1f2937;
    --primary-light: #4b5563;
    --accent-color: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;        /* Light grey page background */
    --bg-tertiary: #f3f4f6;
    --table-stripe: #fafafa;        /* Very light grey for table stripes */
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
}

/* Field Green */
[data-theme="green"] {
    --primary-color: #2d5016;
    --primary-dark: #1d3510;
    --primary-light: #3d6b22;
    --accent-color: #4a7c2c;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f1e8;        /* Light tan page background */
    --bg-tertiary: #f3f4f6;
    --table-stripe: #fafafa;        /* Very light grey for table stripes */
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
}

/* Ocean Blue */
[data-theme="ocean"] {
    --primary-color: #0c4a6e;
    --primary-dark: #082f49;
    --primary-light: #0369a1;
    --accent-color: #0891b2;
    --bg-primary: #ffffff;
    --bg-secondary: #f0f9ff;        /* Light blue page background */
    --bg-tertiary: #e0f2fe;
    --table-stripe: #fafafa;        /* Very light grey for table stripes */
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #cbd5e1;
}

/* Golden Hour */
[data-theme="sunset"] {
    --primary-color: #b45309;       /* Warm amber */
    --primary-dark: #92400e;
    --primary-light: #d97706;
    --accent-color: #f59e0b;        /* Golden */
    --bg-primary: #ffffff;
    --bg-secondary: #fffbeb;        /* Light warm cream page background */
    --bg-tertiary: #fef3c7;         /* Light gold */
    --table-stripe: #fafafa;        /* Very light grey for table stripes */
    --text-primary: #1c1917;
    --text-secondary: #78716c;
    --text-muted: #a8a29e;
    --border-color: #e7e5e4;
}

/* Corduroy - 1970s Earthy Warmth */
[data-theme="corduroy"] {
    --primary-color: #8b6f47;      /* Warm brown */
    --primary-dark: #6b5435;
    --primary-light: #a78a5f;
    --accent-color: #b5956a;        /* Caramel */
    --bg-primary: #fefdfb;
    --bg-secondary: #f5f0e8;        /* Light warm beige page background */
    --bg-tertiary: #ebe4d7;         /* Deeper beige */
    --table-stripe: #fafafa;        /* Very light grey for table stripes */
    --text-primary: #3e2e1f;
    --text-secondary: #6b5d4f;
    --text-muted: #9b8b7a;
    --border-color: #d9cfc0;
}

/* Night Mode - Cool Grey theme */
[data-theme="gray"][data-night-mode] {
    --bg-primary: #1e1e1e;
    --bg-secondary: #0f1419;
    --bg-tertiary: #2a2a2a;
    --table-stripe: #282828;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: #374151;
}

/* Night Mode - Field Green theme */
[data-theme="green"][data-night-mode] {
    --primary-color: #5a9438;       /* Brighter green for visibility */
    --primary-dark: #4a7c2c;
    --primary-light: #6ba045;
    --accent-color: #7bb34f;
    --bg-primary: #1a1f15;          /* Dark with stronger green tint */
    --bg-secondary: #13170f;
    --bg-tertiary: #252d1f;
    --table-stripe: #1f2319;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --border-color: #3d4a35;
}

/* Night Mode - Ocean Blue theme */
[data-theme="ocean"][data-night-mode] {
    --primary-color: #06b6d4;       /* Brighter cyan for visibility */
    --primary-dark: #0891b2;
    --primary-light: #22d3ee;
    --accent-color: #67e8f9;
    --bg-primary: #0f1a23;          /* Dark with stronger blue tint */
    --bg-secondary: #0a1117;
    --bg-tertiary: #1a2836;
    --table-stripe: #141f28;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --border-color: #1e3a52;
}

/* Night Mode - Golden Hour theme */
[data-theme="sunset"][data-night-mode] {
    --primary-color: #fbbf24;       /* Bright gold for visibility */
    --primary-dark: #f59e0b;
    --primary-light: #fcd34d;
    --accent-color: #fde68a;
    --bg-primary: #1f1b10;          /* Dark with stronger warm tint */
    --bg-secondary: #151209;
    --bg-tertiary: #2d2618;
    --table-stripe: #221e14;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --border-color: #4a3f25;
}

/* Night Mode - Corduroy theme */
[data-theme="corduroy"][data-night-mode] {
    --primary-color: #c4a77d;       /* Brighter caramel for visibility */
    --primary-dark: #b5956a;
    --primary-light: #d4b88e;
    --accent-color: #e4c9a0;
    --bg-primary: #1c1910;          /* Dark with stronger brown tint */
    --bg-secondary: #131008;
    --bg-tertiary: #282318;
    --table-stripe: #211d14;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --border-color: #493f2d;
}

/* Night mode specific overrides */
[data-night-mode] body {
    background: var(--bg-secondary);
}

[data-night-mode] .navbar {
    background: var(--bg-primary) !important;
}

[data-night-mode] .card,
[data-night-mode] .table {
    background: var(--bg-primary);
}

[data-night-mode] .card-header {
    background: var(--bg-tertiary);
    border-bottom-color: var(--border-color);
}

[data-night-mode] footer {
    background: var(--bg-primary);
    border-top-color: var(--border-color);
}

[data-night-mode] .dropdown-menu {
    background: var(--bg-primary);
}

[data-night-mode] .dropdown-item {
    color: var(--text-primary);
}

[data-night-mode] .dropdown-item:hover {
    background: var(--bg-tertiary);
}

/* Make nav links lighter in night mode */
[data-night-mode] .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

[data-night-mode] .nav-link:hover {
    color: white !important;
}

[data-night-mode] .nav-link.active {
    color: white !important;
}
