/**
 * Hörwelt Ehningen - Full Custom Theme
 * Purple brand color with Inter/Crimson Pro typography and German preferences
 */

/* Load Inter Variable - Latin (Critical) */
@font-face {
	font-family: 'Inter Variable';
	font-style: normal;
	font-display: swap;
	font-weight: 100 900;
	src: url('/fonts/inter/inter-latin-wght-normal.woff2') format('woff2-variations');
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
		U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Load Crimson Pro Variable - Latin (Critical) */
@font-face {
	font-family: 'Crimson Pro Variable';
	font-style: normal;
	font-display: swap;
	font-weight: 200 900;
	src: url('/fonts/crimson-pro/crimson-pro-latin-wght-normal.woff2') format('woff2-variations');
	unicode-range:
		U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
		U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Override font families and colors to use custom fonts and brand colors */
:root {
	/* Font families - Override app.css defaults */
	--font-sans: 'Inter Variable', 'Inter', system-ui, -apple-system, sans-serif;
	--font-serif: 'Crimson Pro Variable', 'Crimson Pro', Georgia, serif;
	--font-family: var(--font-sans);

	/* DaisyUI colors to match brand */
	--color-base-100: oklch(100% 0 0);
	--color-base-200: oklch(97% 0 0);
	--color-base-300: oklch(94% 0 0);
	--color-base-content: oklch(20% 0 0);
	--color-primary: oklch(39% 0.07 227.392);
	--color-primary-content: oklch(98% 0.003 247.858);
	--color-secondary: oklch(87% 0 0);
	--color-secondary-content: oklch(26% 0 0);
	--color-accent: oklch(87% 0 0);
	--color-accent-content: oklch(26% 0 0);
	--color-neutral: oklch(87% 0 0);
	--color-neutral-content: oklch(26% 0 0);
	--color-info: oklch(44% 0.11 240.79);
	--color-info-content: oklch(90% 0.058 230.902);
	--color-success: oklch(43% 0.095 166.913);
	--color-success-content: oklch(90% 0.093 164.15);
	--color-warning: oklch(47% 0.137 46.201);
	--color-warning-content: oklch(92% 0.12 95.746);
	--color-error: oklch(44% 0.177 26.899);
	--color-error-content: oklch(88% 0.062 18.334);
	--radius-selector: 1rem;
	--radius-field: 1rem;
	--radius-box: 1rem;
	--size-selector: 0.25rem;
	--size-field: 0.25rem;
	--border: 1px;
	--depth: 1;
	--noise: 0.1;
}

/* Ensure German text looks good */
@layer base {
	/* Slightly tighter letter spacing for German compound words */
	body {
		letter-spacing: -0.01em;
	}
}
