/**
 * ADJDEV News — Design Tokens
 * Nilai default di sini di-override oleh inline <style> dari
 * Theme Options bila admin mengubah warna/layout (lihat
 * inc/typography/class-typography.php).
 */

:root {
	--adjdev-primary: #1a56db;
	--adjdev-secondary: #111827;
	--adjdev-accent: #e11d48;
	--adjdev-text: #111827;
	--adjdev-text-muted: #6b7280;
	--adjdev-background: #ffffff;
	--adjdev-surface: #f9fafb;
	--adjdev-border: #e5e7eb;
	--adjdev-success: #16a34a;
	--adjdev-warning: #d97706;
	--adjdev-error: #dc2626;

	--adjdev-container: 1280px;
	--adjdev-content-width: 760px;
	--adjdev-sidebar-width: 320px;
	--adjdev-radius: 10px;
	--adjdev-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);

	--adjdev-spacing-xs: 4px;
	--adjdev-spacing-sm: 8px;
	--adjdev-spacing-md: 16px;
	--adjdev-spacing-lg: 32px;
	--adjdev-spacing-xl: 64px;

	--adjdev-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--adjdev-font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--adjdev-font-size-body: 16px;
	--adjdev-font-size-h1: 2.4rem;
	--adjdev-font-size-h2: 1.85rem;
	--adjdev-font-size-h3: 1.5rem;
	--adjdev-font-size-h4: 1.25rem;
	--adjdev-font-size-h5: 1.1rem;
	--adjdev-font-size-h6: 1rem;
	--adjdev-font-weight-heading: 800;
}

/* Dark mode — diaktifkan via [data-adjdev-theme="dark"] pada <html>,
   di-set oleh inline script sebelum paint pertama (no flash). */
html[data-adjdev-theme="dark"] {
	--adjdev-text: #f3f4f6;
	--adjdev-text-muted: #9ca3af;
	--adjdev-background: #0b0f19;
	--adjdev-surface: #131826;
	--adjdev-border: #1f2937;
	--adjdev-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
}
