/**
 * NH Makelaar — Design tokens
 */
:root {
	/* Colors */
	--nh-color-primary: #1ea69a;
	--nh-color-primary-dark: #179086;
	--nh-color-primary-light: #2bc4b6;
	--nh-color-headings: #1a1a1a;
	--nh-color-accent: #87cefa;
	--nh-color-accent-dark: #5bb3e6;
	--nh-color-text: #1a1a1a;
	--nh-color-text-muted: #555555;
	--nh-color-text-light: #ffffff;
	--nh-color-background: #ffffff;
	--nh-color-background-alt: #f7f7f7;
	--nh-color-border: #e0e0e0;
	--nh-color-success: #2e7d32;
	--nh-color-error: #c62828;
	--nh-color-warning: #f9a825;

	/* Typography */
	--nh-font-heading: 'Rubik', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	--nh-font-body: 'Rubik', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	--nh-font-size-xs: 0.75rem;
	--nh-font-size-sm: 0.875rem;
	--nh-font-size-base: 1rem;
	--nh-font-size-md: 1.125rem;
	--nh-font-size-lg: 1.5rem;
	--nh-font-size-xl: 2rem;
	--nh-font-size-2xl: 2.5rem;
	--nh-line-height-tight: 1.25;
	--nh-line-height-normal: 1.5;
	--nh-line-height-relaxed: 1.7;
	--nh-font-weight-normal: 400;
	--nh-font-weight-semibold: 600;
	--nh-font-weight-bold: 700;

	/* Spacing */
	--nh-space-1: 0.25rem;
	--nh-space-2: 0.5rem;
	--nh-space-3: 0.75rem;
	--nh-space-4: 1rem;
	--nh-space-5: 1.25rem;
	--nh-space-6: 1.5rem;
	--nh-space-8: 2rem;
	--nh-space-10: 2.5rem;
	--nh-space-12: 3rem;
	--nh-space-16: 4rem;
	--nh-space-20: 5rem;

	/* Container */
	--nh-container-width: 1280px;
	--nh-container-padding: 2rem;

	/* Border radius */
	--nh-radius-sm: 3px;
	--nh-radius-md: 6px;
	--nh-radius-lg: 10px;

	/* Shadows */
	--nh-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
	--nh-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
	--nh-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

	/* Transitions */
	--nh-transition-fast: 150ms ease;
	--nh-transition-base: 250ms ease;

	/* Z-index */
	--nh-z-header: 100;
	--nh-z-modal: 1000;
	--nh-z-toast: 1100;
}
