/**
 * HearFluent Global Styles
 */

:root {
	--hf-primary-900: #0a1628;
	--hf-primary-800: #0f2847;
	--hf-primary-700: #153a61;
	--hf-accent-400: #22d3ee;
	--hf-secondary-500: #f97316;
	--hf-text-primary: #f1f5f9;
	--hf-text-secondary: #94a3b8;
	--hf-text-muted: #64748b;
	--hf-bg-card: #0f2847;
	--hf-border-default: rgba(255, 255, 255, 0.1);
	--hf-radius-lg: 0.75rem;
	--hf-radius-xl: 1rem;
	--hf-radius-full: 9999px;
	--hf-space-4: 1rem;
	--hf-space-6: 1.5rem;
	--hf-space-8: 2rem;
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: system-ui, -apple-system, sans-serif;
	background-color: var(--hf-primary-900);
	color: var(--hf-text-primary);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

/* WordPress specific */
.wp-site-blocks {
	min-height: 100vh;
}

::selection {
	background-color: var(--hf-accent-400);
	color: #0f172a;
}
