/* Seniorenhilfe Hannover — statisches Rebuild. Farben/Typo aus dem Genesis-Sample-Original übernommen. */

@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/source-sans-pro-normal-latin-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/source-sans-pro-normal-latin-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/source-sans-pro-normal-latin-700.woff2') format('woff2');
}

:root {
	--color-text: #333;
	--color-bg: #fff;
	--color-accent: #c3251d;
	--color-green: #00d084;
	--color-green-dark: #00a868;
	--color-muted: #666;
	--color-border: #e3e3e3;
	--max-width: 800px;
}

* { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
	font-size: 17px;
}

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

a { color: var(--color-accent); text-decoration: underline; }
a:hover, a:focus { color: #8f1b15; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Skip link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--color-accent);
	color: #fff;
	padding: 10px 16px;
	z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Header */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--color-border);
	padding: 18px 0;
}
.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding img { width: 44px; height: auto; }
.site-title { margin: 0; font-size: 1.3rem; line-height: 1.2; }
.site-title a { color: var(--color-text); text-decoration: none; font-weight: 700; }
.site-description { margin: 2px 0 0; font-size: 0.85rem; color: var(--color-muted); }

/* Main content */
.content {
	padding: 36px 0 48px;
}

.entry-title {
	font-size: 1.9rem;
	margin: 0 0 24px;
	text-align: center;
}

.banner {
	background: var(--color-green);
	color: #fff;
	text-align: center;
	padding: 22px 20px;
	border-radius: 6px;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 20px;
}

h2.subhead {
	text-align: center;
	font-weight: 400;
	color: var(--color-muted);
	margin: 4px 0;
	font-size: 1.15rem;
}
h2.subhead.phone { color: var(--color-accent); font-weight: 700; }
h2.subhead a { color: inherit; text-decoration: none; }

.hero-image { margin: 28px 0; text-align: center; }
.hero-image img { border-radius: 8px; margin: 0 auto; }

.services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px 28px;
	margin: 32px 0;
}
.service h3 {
	margin: 0 0 4px;
	font-size: 1.1rem;
	color: var(--color-accent);
}
.service p { margin: 0; color: var(--color-muted); }

.section { margin: 40px 0; }
.section h2 {
	font-size: 1.4rem;
	border-bottom: 2px solid var(--color-green);
	padding-bottom: 6px;
	margin-bottom: 14px;
}

.list-check { padding-left: 1.2em; margin: 14px 0; }
.list-check li { margin-bottom: 4px; }

.helpers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	margin: 24px 0;
}
.helper { text-align: center; }
.helper img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 10px;
}
.helper h4 { margin: 0 0 6px; }
.helper p { margin: 0; color: var(--color-muted); font-size: 0.95rem; }

.cta {
	text-align: center;
	background: #f7f7f7;
	border-radius: 8px;
	padding: 28px 20px;
	margin: 40px 0 0;
}
.cta h3 { margin: 0 0 8px; }
.cta .phone-link {
	display: inline-block;
	margin-top: 10px;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-accent);
	text-decoration: none;
}

figure { margin: 0 0 1.4em; }
figure img { border-radius: 6px; }
figcaption { font-size: 0.9rem; color: var(--color-muted); margin-top: 6px; text-align: center; }

.entry-content h1,
.entry-content h2 { margin-top: 1.6em; }
.entry-content h1:first-child,
.entry-content h2:first-child { margin-top: 0; }

address { font-style: normal; }

.legal dl { margin: 0; }
.legal dt { font-weight: 700; margin-top: 1.2em; }
.legal dd { margin: 0.2em 0 0; }

/* Footer */
.site-footer {
	background: #333;
	color: #eee;
	padding: 28px 0;
	margin-top: 48px;
}
.site-footer a { color: #fff; }
.footer-nav ul {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	font-size: 0.9rem;
}
.footer-copy { font-size: 0.85rem; color: #aaa; margin: 0; }

@media (max-width: 640px) {
	body { font-size: 16px; }
	.banner { font-size: 1.2rem; }
	.entry-title { font-size: 1.5rem; }
}
