/* ===================================================================
 * SPARK Platform - Tema Override'ları
 * Her tema html[data-theme="..."] selector'ı ile aktive olur
 * Varsayılan tema (spark_dark) her sayfanın inline :root bloğunda
 * Bu dosyadaki kurallar inline :root'tan yüksek specificity'e sahip
 * =================================================================== */

/* ==================== SPARK AYDINLIK ==================== */
html[data-theme="spark_light"] {
    --bg-base:       #f0f3f9;
    --bg-elevated:   #ffffff;
    --bg-card:       #ffffff;
    --bg-sidebar:    #1a1f2e;   /* Sidebar koyu kalır, marka tutarlılığı için */
    --border:        #d8dde5;
    --border-strong: #b8c0cc;
    --text-primary:  #1a1f2e;
    --text-secondary:#5a6378;
    --text-muted:    #8b95a8;
    --spark-blue:    #1627F9;
    --spark-blue-hover: #0d1cc8;
    --spark-green:   #2ea600;
    --blue-glow:     rgba(22, 39, 249, 0.15);
    --green-glow:    rgba(46, 166, 0, 0.20);
    --error:         #dc2626;
    --warn:          #d97706;
    --grid-line:     rgba(35, 44, 74, 0.08);
}

/* Light tema için body arka plan ızgarası daha hafif */
html[data-theme="spark_light"] body::after {
    opacity: 0.5;
}

/* ==================== GECE YARISI (cyberpunk) ==================== */
html[data-theme="midnight"] {
    --bg-base:       #000000;
    --bg-elevated:   #0a0a14;
    --bg-card:       #11111d;
    --bg-sidebar:    #050508;
    --border:        #2a2438;
    --border-strong: #4d3f6e;
    --text-primary:  #e8d8ff;
    --text-secondary:#9e8aa8;
    --text-muted:    #5a5478;
    --spark-blue:    #c026d3;   /* magenta */
    --spark-blue-hover: #d946ef;
    --spark-green:   #06b6d4;   /* cyan */
    --blue-glow:     rgba(192, 38, 211, 0.35);
    --green-glow:    rgba(6, 182, 212, 0.40);
    --error:         #f43f5e;
    --warn:          #fb923c;
    --grid-line:     rgba(192, 38, 211, 0.10);
}

/* ==================== GÜNEŞ (warm/dark) ==================== */
html[data-theme="solar"] {
    --bg-base:       #1c1410;
    --bg-elevated:   #2a1f17;
    --bg-card:       #2e2419;
    --bg-sidebar:    #1a1208;
    --border:        #3d2f1f;
    --border-strong: #5c4731;
    --text-primary:  #fcf4e8;
    --text-secondary:#c8b8a0;
    --text-muted:    #8d7e6a;
    --spark-blue:    #f59e0b;   /* amber */
    --spark-blue-hover: #fbbf24;
    --spark-green:   #84cc16;   /* lime */
    --blue-glow:     rgba(245, 158, 11, 0.32);
    --green-glow:    rgba(132, 204, 22, 0.35);
    --error:         #dc2626;
    --warn:          #fcd34d;
    --grid-line:     rgba(245, 158, 11, 0.08);
}
