/* ==========================================================================
   units.d017.css
   Design tokens, font-face, reset, base element styles.
   SaaS Novia -- Novia Digital GmbH, Hamburg.
   ========================================================================== */

:root {
	--color-bg: #FAFBFC;
	--color-surface: #FFFFFF;
	--color-ink: #232A33;
	--color-slate: #5B6672;
	--color-line: #E3E7EB;
	--color-accent: #FF5A1E;
	--color-accent-ink: #C7440F;
	--color-inverse-bg: #10151B;
	--color-inverse-ink: #F2F4F6;
	--color-inverse-slate: #9AA3AC;
	--glow-accent: rgba(255, 90, 30, .08);
	--glow-accent-strong: rgba(255, 90, 30, .16);
	--shadow-lift: 0 24px 48px rgba(16, 21, 27, .14);
	--shadow-card: 0 1px 0 rgba(35, 42, 51, .06);
	--font-display: "Unbounded", "Segoe UI", Arial, sans-serif;
	--font-text: "Manrope", "Segoe UI", Arial, sans-serif;
	--container-w: 1180px;
	--radius-s: 4px;
	--radius-m: 10px;
	--ease-standard: cubic-bezier(.2, .7, .3, 1);
}

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/manrope-variable.woff2") format("woff2");
}

@font-face {
	font-family: "Unbounded";
	font-style: normal;
	font-weight: 600 800;
	font-display: swap;
	src: url("../fonts/unbounded-variable.woff2") format("woff2");
}

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, dd,
figure, blockquote {
	margin: 0;
	padding: 0;
}

ul, ol {
	list-style: none;
}

body {
	background: var(--color-bg);
	color: var(--color-ink);
	font-family: var(--font-text);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--color-ink);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.01em;
}

h5, h6 {
	font-family: var(--font-text);
	font-weight: 700;
	line-height: 1.3;
}

p {
	color: var(--color-slate);
}

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

img {
	max-width: 100%;
	display: block;
}

button {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

input,
textarea {
	font-family: inherit;
	font-size: inherit;
	color: var(--color-ink);
}

table {
	border-collapse: collapse;
	width: 100%;
}

th, td {
	text-align: left;
	vertical-align: top;
}

blockquote {
	font-style: normal;
}

hr {
	border: 0;
	border-top: 1px solid var(--color-line);
	margin: 0;
}

/* TODO: pruefen ob die Zeilenhoehe bei sehr langen Ueberschriften auf dem iPad noch passt */
