/**
 * CanonTurkiye design tokens — light/dark themes.
 */

:root {
	--ct-font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
	--ct-font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

	--ct-radius-sm: 6px;
	--ct-radius-md: 10px;
	--ct-radius-lg: 16px;
	--ct-radius-full: 999px;

	--ct-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
	--ct-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
	--ct-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);

	--ct-space-1: 0.25rem;
	--ct-space-2: 0.5rem;
	--ct-space-3: 0.75rem;
	--ct-space-4: 1rem;
	--ct-space-5: 1.25rem;
	--ct-space-6: 1.5rem;
	--ct-space-8: 2rem;
	--ct-space-10: 2.5rem;
	--ct-space-12: 3rem;
	--ct-space-16: 4rem;

	--ct-container: 1200px;
	--ct-container-wide: 1400px;

	--ct-transition: 180ms ease;
}

:root,
[data-theme="light"] {
	color-scheme: light;

	--ct-color-brand: #c41230;
	--ct-color-brand-dark: #9e0e26;
	--ct-color-brand-light: #fde8ec;

	--ct-color-bg: #f8f9fb;
	--ct-color-surface: #ffffff;
	--ct-color-surface-2: #f1f3f6;
	--ct-color-border: #dde1e8;
	--ct-color-border-strong: #b8bec9;

	--ct-color-text: #1a1d24;
	--ct-color-text-muted: #5c6470;
	--ct-color-text-inverse: #ffffff;

	--ct-color-link: #c41230;
	--ct-color-link-hover: #9e0e26;

	--ct-color-success: #0d7a4e;
	--ct-color-warning: #b45309;
	--ct-color-error: #b91c1c;
	--ct-color-info: #1d4ed8;

	--ct-header-bg: rgba(255, 255, 255, 0.92);
	--ct-footer-bg: #1a1d24;
	--ct-footer-text: #c8cdd6;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		color-scheme: dark;

		--ct-color-brand: #e8364f;
		--ct-color-brand-dark: #c41230;
		--ct-color-brand-light: #3d1520;

		--ct-color-bg: #0f1117;
		--ct-color-surface: #1a1d24;
		--ct-color-surface-2: #242830;
		--ct-color-border: #2e3340;
		--ct-color-border-strong: #454c5c;

		--ct-color-text: #eef0f4;
		--ct-color-text-muted: #9aa3b2;
		--ct-color-text-inverse: #ffffff;

		--ct-color-link: #f06b7e;
		--ct-color-link-hover: #ff8a9a;

		--ct-header-bg: rgba(15, 17, 23, 0.94);
		--ct-footer-bg: #0a0c10;
		--ct-footer-text: #8b93a1;
	}
}

[data-theme="dark"] {
	color-scheme: dark;

	--ct-color-brand: #e8364f;
	--ct-color-brand-dark: #c41230;
	--ct-color-brand-light: #3d1520;

	--ct-color-bg: #0f1117;
	--ct-color-surface: #1a1d24;
	--ct-color-surface-2: #242830;
	--ct-color-border: #2e3340;
	--ct-color-border-strong: #454c5c;

	--ct-color-text: #eef0f4;
	--ct-color-text-muted: #9aa3b2;
	--ct-color-text-inverse: #ffffff;

	--ct-color-link: #f06b7e;
	--ct-color-link-hover: #ff8a9a;

	--ct-header-bg: rgba(15, 17, 23, 0.94);
	--ct-footer-bg: #0a0c10;
	--ct-footer-text: #8b93a1;
}
