@import "common.css";
:root {
	--main-color: #DD6822;
	--text-color: #333333;
	--heading-color: #1a1a1a;
	--bg-light-gray: #f8f8f8;
	--bg-beige: #f7f1e3;
	--bg-dark: #222222;
	--bg-white: #ffffff;
	--border-color: #cccccc;
}
html {
	box-sizing: border-box;
}

*, *::before, *::after {
	box-sizing: inherit;
}

body, html, h1, h2, h3, h4, p, ul, ol, li {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	box-sizing: border-box;
}

/* .hero-section {
	position: relative;
	height: 60vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #111111;
	background-size: cover;
	background-position: center;
	padding: 20px;
	box-sizing: border-box;
} */
.hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #111111;
   background-image:  url("../../img/header-energie-klarheit-wirkung.jpg");
    background-size: cover;
    background-position: center ;
    padding: 20px;
    box-sizing: border-box;
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(202, 211, 211, 0.336);
	z-index: 1;
}

.hero-content {
	max-width: 800px;
	padding: 20px;
	z-index: 2;
}

.hero-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.5rem);
	font-weight: 400;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-text {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.hero-button {
	background-color:#F42B37;
	color: #ffffff;
	border: none;
	padding: 15px 30px;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 1px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
	background-color: var(--main-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
	color: #fff;
	text-decoration: none;
}

.details-section {
	background-color: #f8f8f8;
	padding: 60px 20px;
	text-align: center;
}

.content-container {
	max-width: 900px;
	margin: 0 auto 50px auto;
}

.main-heading {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: #222;
	margin-bottom: 20px;
}

.pers {
	font-size: clamp(0.5rem, 1.1rem, 1.2rem);
	font-weight: 600;
	line-height: 1.2;
	color: #333;
	text-decoration: none;
}

.pers:hover {
	color: #131212;
	text-decoration: none;
}

.intro-paragraph,
.quote-paragraph {
	font-size: clamp(0.9rem, 1.2vw, 1rem);
	color: #0e0e0e;
	margin-bottom: 20px;
}

.rainbow-dots-image {
	width: 100%;
	max-width: 400px;
	height: auto;
	margin: 20px auto 30px auto;
	display: block;
}

.card-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 30px;
}

.card {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	flex: 1 1 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.card-image {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 5px;
}

.card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #222;
	margin-bottom: 10px;
}

.card p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #666;
	margin-bottom: 15px;
}
.card-text{
    color: #0e0e0eb0;
    font-weight: bold;
}

.card .card-button {
	background-color: #080808;
	color: #ffffff;
	text-decoration: none;
	padding: 8px 32px;
	border-radius: 5px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-top: auto;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.card .card-button:hover {
	background-color: #DD6822;
	
}

.pers-button {
	background-color: #000000;
	color: #ffffff;
	text-decoration: none;
	padding: 12px 20px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	display: inline-block;
	text-align: center;
	max-width: 100%;
}

.pers-button:hover {
	background-color: #DD6822;
}

.details-section .card-button {
	display: flex;
	flex-direction: column;
	text-transform: none;
}

.details-section .card-button > span:nth-child(2) {
	color: #aaa;
	font-size: 12px;
}

.details-section .card-button:hover > span:nth-child(2) {
	color: #fff;
}

.powerup-section {
	padding: 80px 20px;
	background-color: #ffffff;
	font-family: 'Roboto', sans-serif;
}

.content-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
}

.program-col {
	flex: 1 1 500px;
}

.image-col {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.image-container {
	position: relative;
	max-width: 500px;
}

.program-image {
	width: 100%;
	height: auto;
	display: block;
}

/* .btn-discover {
  background-color: #0e0700;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-discover:hover {
  background-color: #d66a00;
} */

.leistungen-section {
	padding: 60px 20px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}

.intro-text {
	max-width: 800px;
	margin: 0 auto 40px;
	line-height: 1.6;
	color: #555;
	font-size: 1.1em;
}

.section-title {
	font-size: 2.5em;
	margin-bottom: 50px;
	font-weight: 600;
}

.services-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.service-card {
	background-color: #cccaca71;
	padding: 15px 10px;
	border-radius: 8px;
	box-shadow: 0 3px 6px -4px rgb(0 0 0 / 41%);
	font-size: 1.1em;
	font-weight: 400;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	min-width: 250px;
	flex-grow: 1;
	flex-basis: calc(33.33% - 20px);
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 2em;
	}

	.intro-text {
		font-size: 1em;
	}

	.services-container {
		flex-direction: column;
		align-items: stretch;
	}

	.service-card {
		padding: 20px;
		min-width: 100%;
		height: auto;
	}
}

.text-col {
	text-align: left;
}

.program-title {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 600;
	line-height: 1.2;
	color: #333;
	margin-bottom: 1rem;
}

.rocket-emoji {
	font-size: clamp(2rem, 3.5vw, 3rem);
}

.program-description {
	font-size: 1.2rem;
	line-height: 1.6;
	color: #0e0e0e;
	margin-bottom: 2rem;
}

.program-benefits {
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-size: 1.1rem;
	color: #1c1b1b;
}

.program-benefits li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
	line-height: 1.5;
}

.program-benefits li span {
	position: absolute;
	left: 0;
	color: #111111;
	font-size: 1.2rem;
}

.quote-section {
	position: relative;
	padding: 100px 20px;
	background-image: url("../../img/highlight-box-Hintergrund.JPG");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}

.quote-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.6);
    background-blend-mode: lighten;
	z-index: 1;
	backdrop-filter: blur(4px);
}

.quote-content {
	color: #1a1919;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
}

.quote-separator {
	width: 100%;
	max-width: 80px;
	height: 1px;
	background-color: #161515;
	margin: 40px auto;
}

.quote-text {
	font-size: 2.2em;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 25px;
}

.quote-author {
	font-size: 1rem;
	font-weight: 400;
	font-style: italic;
	color: rgba(26, 25, 25, 0.8);
}

.bio-section {
	padding: 80px 20px;
	font-family: 'Roboto', sans-serif;
}

.bio-container {
	display: flex;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	align-items: stretch;

}

.bio-card,
.bio-image-container {
	flex: 1 1 50%;
	min-width: 300px;
	box-sizing: border-box;
	border-radius: 10px;
}

.bio-card {
	background-color: #e8e8e8;
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.bio-subtitle {
	font-family: 'Roboto', sans-serif;
	font-size: 0.8rem;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: #f0f0f0;
	border-radius: 5px;
	padding: 8px 15px;
	margin-bottom: 40px;
	font-weight: 600;
}

.bio-title {
	font-family: 'Roboto', sans-serif;
	font-size: clamp(2.2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.2;
	color: #333;
	margin-bottom: 20px;
}

.bio-text {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 40px;
	max-width: 550px;
}


.bio-button {
	background-color: #F42B37;
	color: #ffffff;
	text-decoration: none;
	padding: 15px 30px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	display: inline-block;
	text-align: center;
	max-width: 100%;
}

.bio-button:hover {
	background-color: #DD6822;
}


.bio-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}


@media (max-width: 992px) {
	.bio-card {
		padding: 40px;
	}

	.bio-title {
		font-size: clamp(1.8rem, 5vw, 2.5rem);
	}
}

@media (max-width: 768px) {
	.bio-container, .cta-container {
		flex-direction: column;
	}

	.bio-content {
		align-items: center;
		text-align: center;
		padding: 20px;
	}

	.bio-card,
	.bio-image-container {
		flex: 1 1 100%;
	}

	.bio-card {
		padding: 30px;
	}

	.bio-image-container {
		min-height: 100px;
	}
}

.bold-team {
	font-weight: 900;
}


.impressions-section {
	background-color: #f8f8f8;
	padding: 40px 20px 80px 20px;
	text-align: center;
}

.impressions-title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 600;
	color: #0c0a0a;
	margin-bottom: 10px;
}

.impressions-subtitle {
	font-size: 1.1rem;
	font-weight: 400;
	color: #666;
	margin: 0;
	margin-bottom: 24px;
}

.testimonials-section {
	background-color: #f8f8f8;
	padding: 80px 20px;
	font-family: 'Roboto', sans-serif;
}

.testimonials-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 30px;
	padding: 20px;
}

.testimonial-card {
	flex: 1 1 250px;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	flex-direction: column;
	text-align: left;
	max-width: 350px;
}

.testimonial-header {
	text-align: center;
	margin-bottom: 20px;
}

.testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-quote {
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.5;
	color: #444;
	margin-top: 0;
	margin-bottom: 15px;
}

.testimonial-text {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #666;
	margin-bottom: 20px;
}

.testimonial-author {
	margin-bottom: 14px;
	font-size: 0.8rem;
	color: #777;
	font-style: italic;
	line-height: 1.4;
	text-align: center;
}

.cta-section {
	padding: 80px 20px;
	font-family: 'Roboto', sans-serif;
	background-color: #f8f8f8;
}

.cta-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	flex-direction: row;
	align-items: stretch;
	padding: 0;
}

.cta-image-col {
	flex: 1 1 50%;
	min-width: 300px;
}

.cta-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cta-text-col {
	background-color: #f7f1e3;
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	flex: 1 1 50%;
	min-width: 300px;
	box-sizing: border-box;
}

.cta-title {
	font-family: 'Roboto', serif;
	font-size: clamp(2.2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.2;
	color: #333;
	margin-bottom: 15px;
}

.cta-text {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 30px;
	max-width: 500px;
}

.cta-button {
	background-color: #F42B37;
	color: #ffffff;
	text-decoration: none;
	padding: 15px 30px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	white-space: nowrap;
}
.cta-button:hover {
	background-color:  #DD6822;
	color: #fff;
	text-decoration: none;
}


@media (max-width: 768px) {
	.cta-text-col {
		text-align: center;
		align-items: center;
	}
}

@media (max-width: 992px) {
	.bio-container {
		flex-direction: column;
	}

	.bio-image-container {
		max-height: 400px;
	}
}

@media (max-width: 576px) {
	.navbar {
		padding: 15px 10px;
	}

	.hero-content {
		padding: 10px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.card {
		padding: 20px;
	}
}

