:root {
	--bg: #ffffff;
	--surface-1: #f5f1ef;
	--surface-2: #dfd2ca;
	/*	-- surface-2: #e3d8d1; */

	--text: #1f1f1f;
	--muted: #5a5a5a;

	/* Akzent nehmen wir erstmal aus dem Logo-Feeling: warmes Taupe */
	--accent: #8b776b;

	--radius: 18px;
	--shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

body {
	background: var(--bg);
	color: var(--text);
}

body.minilayout {
	background: var(--surface-2);
	color: var(--text);
}

.section {
	padding: 6rem 0;
}

.section--plain {
	background: var(--bg);
}

.section--soft {
	background: var(--surface-1);
}

.section--alt {
	background: var(--surface-2);
}

.card-soft {
	border: 0;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
  	overflow-x: hidden;
}

/* Basis: keine Bootstrap-Fokusfarben übernehmen */
.btn-brand,
.btn-brand-2 {
	border-radius: 999px;
	padding: 0.85rem 1.35rem;
	font-weight: 500;
	transition: all 0.2s ease;
	box-shadow: none;
	line-height: 1.2;
	min-height: 48px;
}

/* PRIMARY */
.btn-brand {
	background: var(--accent);
	border: 1px solid var(--accent);
	color: #ffffff;
}

.btn-brand:hover,
.btn-brand:focus {
	background: #7c6a5f; /* minimal dunkler */
	border-color: #7c6a5f;
	color: #ffffff;
	box-shadow: var(--shadow);
}

.btn-brand:active {
	background: #6f5f55;
	border-color: #6f5f55;
	color: #ffffff;
}

/* SECONDARY / SOFT */
.btn-brand-2 {
	background: transparent;
	border: 1px solid var(--accent);
	color: var(--accent);
}

.btn-brand-2:hover,
.btn-brand-2:focus {
	background: var(--surface-1);
	border-color: var(--accent);
	color: var(--accent);
	box-shadow: var(--shadow);
}

.btn-brand-2:active {
	background: var(--surface-2);
	border-color: var(--accent);
	color: var(--accent);
}

/* Fokus-Outline sauber entfernen */
.btn-brand:focus-visible,
.btn-brand-2:focus-visible {
	outline: none;
	box-shadow: var(--shadow);
}

.btn-lg {
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

.navbar {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--muted);
	font-size: 0.85rem;
	margin-bottom: 0.75rem;
}

footer.section {
	margin-top: 2rem;
}

h1,
h2,
h3 {
	letter-spacing: -0.01em;
}

h1.small{
	font-size:20px;
	color: var(--accent);
}

.icon-pill {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* background: var(--surface-2); */
	background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
	color: var(--accent);
	font-size: 1.4rem;
}

.icon-pill-2 {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* background: var(--surface-2); */
	background: var(--accent);
	color: var(--surface-1);
	font-size: 1.4rem;
}

@media (max-width: 768px) {
	.section-pad {
		padding: 4rem 0;
	}
}
@media (max-width: 576px) {
	.navbar-brand img {
		height: 40px !important;
	}
}

.list-item {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	color: var(--text);
}
.list-item i {
	color: var(--accent);
	margin-top: 0.1rem;
}

.badge-soft {
	background: var(--surface-1);
	color: var(--text);
	border: 1px solid rgba(0, 0, 0, 0.06);
	padding: 0.55rem 0.75rem;
	border-radius: 999px;
	font-weight: 500;
}

.link-soft {
	color: var(--accent);
	text-decoration: none;
}
.link-soft:hover {
	text-decoration: underline;
	color: var(--accent);
}

.form-control {
	border-radius: 14px;
	border: 1px solid rgba(0‚, 0, 0, 0.1);
}
‚ .form-control:focus {
	border-color: rgba(139, 119, 107, 0.55);
	box-shadow: 0 0 0 3px rgba(139, 119, 107, 0.18);
}

.logo-hier-entsteht {
  max-width: 100%;
  width: 360px;     /* Desktop-Wunschgröße */
  height: auto;
}
@media (max-width: 576px) {
  .logo-hier-entsteht {
    width: 280px;
  }
}