/**
 * Rohrreinigung Schäfer – Design-System (HTML-Version)
 * Farben und Struktur wie Original – modernisierter Feinschliff.
 */

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

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

body {
	margin: 0;
	font-family: var(--font-family);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

:root {
	--brand-primary: #e07045;
	--brand-primary-rgb: 224, 112, 69;
	--brand-primary-hover: #c85f38;
	--brand-secondary: #002ca3;
	--brand-nav-bg: #e07045;
	--brand-nav-active: #2e323b;
	--brand-whatsapp: #25D366;
	--text: #1f1f1f;
	--text-muted: #5c5c5c;
	--text-inverse: #fff;
	--surface: #fff;
	--surface-alt: #fafafa;
	--border: #ebebeb;
	--border-strong: #d4d4d4;
	/* Spacing */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--container-max: 1200px;
	--container-wide: 1400px;
	--container-padding: clamp(1.25rem, 5vw, 3rem);
	--font-base: 16px;
	--line-height-base: 1.65;
	--line-height-tight: 1.25;
	--font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.875rem;
	--text-hero: clamp(2rem, 5vw, 3.25rem);
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
	--radius: 8px;
	--radius-lg: 10px;
	--radius-xl: 12px;
	--radius-full: 9999px;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.06);
	--shadow-cta: 0 2px 8px rgba(var(--brand-primary-rgb), 0.2);
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out: cubic-bezier(0, 0, 0.2, 1);
	--duration-fast: 0.2s;
	--duration-normal: 0.3s;
	--btn-min-height: 48px;
	--bottom-bar-height: 56px;
}

body.schaefer-child-theme {
	background-color: var(--surface);
	color: var(--text);
	font-size: var(--font-base);
	line-height: var(--line-height-base);
	font-family: var(--font-family);
}

/* Volle Seitenbreite – kein zentriertes Kasten-Layout mehr */
.schaefer-child-theme .container.bg_container {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
