/* Metanoia page – hero style aligned with anker/kontakt/lifegroup */

:root {
	--bg: #ffffff;
	--text: #0b0b0b;
	--muted: rgba(0, 0, 0, 0.68);
	--card: rgba(255, 255, 255, 0.92);
	--border: rgba(0, 0, 0, 0.10);
	--shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
	--radius: 28px;
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Rubik", sans-serif;
	font-weight: 300;
	background: var(--bg);
	color: var(--text);
}

.mainframe {
	margin: 0px 0px 200px 0px;
	text-align: center;
	width: 100%;
	padding: 0;
}

/* Buttons */
.round-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 2px solid #fff;
	color: #fff;
	background-color: transparent;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 0.95rem;
	cursor: pointer;
	transition: 0.35s ease;
	text-decoration: none;
	white-space: nowrap;
}

.round-button:hover {
	background-color: #fff;
	color: #000;
}

.round-button.secondary {
	border-color: rgba(255, 255, 255, 0.6);
	color: rgba(255, 255, 255, 0.9);
}

.round-button.secondary:hover {
	border-color: #fff;
	background-color: #fff;
	color: #000;
}

/* Hero (TitlePicture pattern - kontakt style) */
.TitlePicture {
	background-image: url('/home/resources/metanoia.jpg');
	background-size: cover;
	background-position: 50% 40%;
	height: 800px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.TitleText {
	z-index: 2;
	color: white;
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.1;
	padding: 40px;
	max-width: 700px;
}

.TitleText p {
	font-weight: 300;
	margin-top: 6px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.95);
}

.title-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.title-note {
	margin-top: 12px;
	font-size: 0.95rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.85);
}

/* Section action buttons (for white/light backgrounds) */
.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
	justify-content:baseline;
}

.round-button-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 2px solid #000;
	color: #000;
	background-color: transparent;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 0.95rem;
	cursor: pointer;
	transition: 0.35s ease;
	text-decoration: none;
	white-space: nowrap;
}

.round-button-dark:hover {
	background-color: #000;
	color: #fff;
}

.round-button-dark.secondary {
	border-color: rgba(0, 0, 0, 0.35);
	color: rgba(0, 0, 0, 0.85);
}

.round-button-dark.secondary:hover {
	border-color: #000;
	background-color: #000;
	color: #fff;
}

/* Page sections */
.page {
	background: var(--bg);
	padding: 80px 0 110px;
	width: 100%;
	margin: 0;
	box-sizing: border-box;
}

.section {
	max-width: 1100px;
	margin: 0 auto 48px;
	padding: 0 20px;
	box-sizing: border-box;
}

.section-header {
	text-align: left;
	margin-bottom: 18px;
    margin-top: 50px;
}

.section-header h2 {
	font-size: 2rem;
	font-weight: 520;
	letter-spacing: 0.01em;
	margin: 0 0 10px;
}

.section-header p {
	margin: 0;
	max-width: 75ch;
	color: var(--muted);
	line-height: 1.6;
	font-size: 1.05rem;
}

.grid-3,
.grid-2 {
	display: grid;
	gap: 16px;
}

.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
	text-align: left;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card h3 {
	margin: 0 0 10px;
	font-size: 1.25rem;
	font-weight: 520;
}

.card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.list-card {
	padding: 22px;
}

.checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.checklist li {
	position: relative;
	padding-left: 34px;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.85);
}

.checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 999px;
	font-weight: 600;
}

.bullets {
	margin: 0;
	padding-left: 18px;
	color: rgba(0, 0, 0, 0.85);
	line-height: 1.6;
}

.bullets li {
	margin: 8px 0;
}

.divider {
	height: 1px;
	background: rgba(0, 0, 0, 0.10);
	margin: 16px 0;
}

.steps {
	margin: 0;
	padding-left: 20px;
	color: rgba(0, 0, 0, 0.88);
	line-height: 1.6;
}

.steps li {
	margin: 10px 0;
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

/* Lifegroup-style image + text blocks */
.contentContainer {
	padding: 50px 0px;
	display: flex;
	width: 100%;
	align-items: center;
	vertical-align: middle;
	gap: 10px;
	margin: 0;
	box-sizing: border-box;
}

.contentContainer.reverse {
	flex-direction: row-reverse;
}

.contentContainer > img {
	width: 40vw;
	height: 40vw;
	max-width: 520px;
	max-height: 520px;
	object-fit: cover;
	object-position: center;
	margin: 0px 50px 0px 50px;
	border-radius: 50px;
	aspect-ratio: 1 / 1;
}

.contentTextContainer {
	text-align: left;
	display: block;
	padding: 0px 40px;
	line-height: 1.5;
	font-size: 1.15em;
	max-width: 700px;
}

.contentTextContainer h2 {
	font-size: 1.8rem;
	font-weight: 520;
	margin: 0 0 10px;
}

.bullet-points {
	padding-left: 20px;
	margin: 16px 0 0;
	list-style-type: disc;
}

/* Responsive */
@media (max-width: 980px) {
    .page{
        padding: 0px;
    }
	.TitlePicture {
		height: 90vh;
		background-position: 50% 30%;
	}

	.TitleText {
		padding: 26px;
	}

	.grid-3 {
		grid-template-columns: 1fr;
	}

	.grid-2 {
		grid-template-columns: 1fr;
	}

	.contentContainer {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		margin: 0;
		padding: 30px 0;
		box-sizing: border-box;
	}

	.contentContainer.reverse {
		flex-direction: column;
	}

	.contentContainer > img {
		width: 70%;
		height: auto;
		max-width: 400px;
		max-height: 400px;
		padding: 10px;
		margin: 0;
		border-radius: 40px;
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}

	.contentTextContainer {
		padding: 20px;
		max-width: none;
	}
}

@media (max-width: 520px) {
	.TitleText {
		max-width: none;
		padding: 20px;
	}

	.section-header h2 {
		font-size: 1.65rem;
	}
}
