@font-face {
     font-family: "TheMixC5-Plain";
     src: url("./fonts/TheMixC5-5_Plain.woff2") format("woff2");
     src: url("./fonts/TheMixC5-5_Plain.woff") format("woff");
     font-weight: normal;
     font-style: normal;
}
@font-face {
     font-family: "TheMixC5-Bold";
     src: url("./fonts/TheMixC5-7_Bold.woff2") format("woff2");
     src: url("./fonts/TheMixC5-7_Bold.woff") format("woff");
     font-weight: normal;
     font-style: normal;
}

@font-face {
     font-family: "Dax-Condensed-Bold";
     src: url("./fonts/dax_condensed_bold.woff2") format("woff2");
     src: url("./fonts/dax_condensed_bold.woff") format("woff");
     font-weight: normal;
     font-style: normal;
}

/* ── Root Variables ─────────────────────────────── */
:root {
  --wpd-orange:  #F5A100;
  --wpd-blue:    #0e4194;
  --wpd-light:   #feeed8;
  --wpd-lightblue: #bcdaf4;
  --wpd-darktext: #1e2d3d;
  --font-dax:  'Dax-Condensed-Bold', Calibri, sans-serif;
  --font-body: 'TheMixC5-Plain', Calibri, sans-serif;
  --gutter: clamp(0rem, 5vw, 5.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--wpd-darktext);
  background: #fff;
  margin: 0;
  padding: 0;
}

a{
	color:#fff;
}

 /* ── Zentrierter Content-Wrapper, max 1280 px ────────────── */
.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden; /* clippt SVGs die über den Rand hinausragen */
}


.mood-header {
  position: relative;
  width: 100%;
height:490px;
max-width:1300px;
margin:0 auto;
  overflow: hidden;
}

.mood-footer {
  position: relative;
  width: 100%;
height:330px;
max-width:1300px;
margin:0 auto;
  overflow: hidden;
}

.mood-header__bg {
  position: absolute;
  inset: 0;
  background: url('./img/headerbild_strompool.jpg')
    center center / cover no-repeat;
  z-index: 0;
}

.mood-header__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 50%,
    rgba(0,0,0,0.25) 85%
  );
}

.mood-header__logo-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
 
  width: 80%;
}



.mood-header__logo-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}


.mood-header__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110%;
  z-index: 20;
  line-height: 0;
}

.mood-header__wave svg {
  width: 100%;
  height: auto;
  display: block;
}


.header-caption-bar {
  position: absolute;
  top: 4rem;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;                  /* transparent gap between the two lines */
}
.header-caption-bar span {
  display: inline-block;
  background: var(--wpd-orange);
  color: #fff;
  font-family: var(--font-dax);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-indent:6rem;
  padding: 0.3rem 0.9rem;
  line-height: 1.5;
}

/* ── 2. INTRO ROW (round image + bullets) ───────── */
.intro-section {
  background: #fff;
  padding: 3.5rem 0 4.5rem;
}
/* inner-row carries the same gutter as col-blue-bg padding */
.intro-section .inner-row {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.round-img-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 1rem;
}
.round-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 0px solid var(--wpd-orange);
}
.intro-text h2 {
  font-family: var(--font-dax);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--wpd-blue);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.intro-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.intro-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  color: var(--wpd-blue);
}
.intro-bullets li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wpd-orange);
}

/* ── 3. TWO-COL: blue text + image ─────────────── */
.content-block {
  padding: 0;
}
.col-blue-bg {
  background: var(--wpd-lightblue);
  padding: 4rem var(--gutter);
}
.col-blue-bg h3 {
  font-family: var(--font-dax);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--wpd-blue);
  margin-bottom: 1.2rem;
}
.col-blue-bg p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #3a4a5a;
  margin-bottom: 1rem;
  color: var(--wpd-blue);
}
.col-blue-bg p strong {
  color: var(--wpd-blue);
}
.col-img-fill {
  padding: 0;
  min-height: 320px;
  overflow: hidden;
}
.col-img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

/* ── 4. QUOTE / TESTIMONIAL ─────────────────────── */
.quote-section {
  position: relative;
  padding: 5rem 2rem;
  overflow: hidden;
}
.quote-bg-img {
  position: absolute;
  width: 95%;
  height: 80%;
  opacity: 1;
  top:34px;
}
.quote-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-dax);
  font-size: 7rem;
  line-height: 0.4;
  color: var(--wpd-orange);
  display: block;
  margin-bottom: 1rem;
}
.quote-text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--wpd-blue);
  margin-bottom: 1.5rem;
  font-style:italic;
}
.quote-author {
  font-family: var(--font-dax);
  font-size: 1rem;
  color: var(--wpd-orange);
  letter-spacing: 0.08em;
}
.quote-author span {
  display: block;
  font-weight: 400;
  color: var(--wpd-blue);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  font-style: normal;
}

/* ── 5. TWO-COL: text + round image ─────────────── */
.text-img-section {
  background: var(--wpd-light);
  padding: 3.5rem 0;
}
.text-img-section .inner-row {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.text-img-section .col-text {
  padding: 1rem 2rem 1rem 0;
}
.text-img-section h3 {
  font-family: var(--font-dax);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--wpd-blue);
  margin-bottom: 1.2rem;
}
.text-img-section p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #3a4a5a;
  margin-bottom: 0.9rem;
}
.round-img-wrap-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.round-img-right {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 0px solid var(--wpd-orange);
}

/* ── 6. LAST ROW: image with caption + text ──────── */
.last-row {
  background: #fff;
  padding: 0;
}
.last-row-img-col {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding-left: var(--gutter);
  padding-top: var(--gutter);
}
.last-row-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}
.img-caption-bar {
  position: absolute;
  bottom: 1rem;
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;                  /* transparent gap between the two lines */
}
.img-caption-bar span {
  display: inline-block;
  background: var(--wpd-orange);
  color: #fff;
  font-family: var(--font-dax);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.9rem;
  line-height: 1.5;
}
.last-row-text-col {
  padding: 3rem 2.5rem;
  background: #fff;
}
.last-row-text-col h3 {
  font-family: var(--font-dax);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--wpd-blue);
  margin-bottom: 1.2rem;
}
.last-row-text-col p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #3a4a5a;
  margin-bottom: 0.9rem;
}
.cta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--wpd-orange);
  color: #fff;
  font-family: var(--font-dax);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover {
  background: var(--wpd-blue);
  color: #fff;
  transform: translateY(-2px);
}


.footer-section {
  background: #0e4194;
  padding: 3.5rem 0 2.5rem;
  color:#fff;
}
 /* inner-row carries the same gutter as col-blue-bg padding */
.footer-section .inner-row {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.footer-text {
  color: #fff;
}
.footer-text h2 {
  font-family: var(--font-dax);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

/* ── Contact Modal ──────────────────────────────── */
.modal-header {
  color: #fff;
  border-bottom: 3px solid var(--wpd-orange);
  padding: 1.2rem 1.5rem;
}
.modal-header .modal-title {
  font-family: var(--font-dax);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color:var(--wpd-blue);
}
.modal-header .btn-close {
  filter: invert(1) brightness(2);
}
.modal-body {
  padding: 1.8rem 1.5rem 1rem;
}
.modal-footer {
  border-top: 1px solid #e5e5e5;
  padding: 1rem 1.5rem 1.5rem;
}
.form-label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wpd-blue);
  margin-bottom: 0.3rem;
}
.form-label .req {
  color: var(--wpd-orange);
  margin-left: 2px;
}
.form-control, .form-control:focus {
  border: 1.5px solid #d0dce8;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--wpd-darktext);
  box-shadow: none;
}
.form-control:focus {
  border-color: var(--wpd-orange);
  outline: none;
}
.form-control.is-invalid {
  border-color: #dc3545;
}
.invalid-feedback {
  font-size: 0.8rem;
}
/* Honeypot – vollständig unsichtbar */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
  tab-index: -1;
}
.form-hint {
  font-size: 0.8rem;
  color: #7a8a9a;
  margin-top: 0.5rem;
}
/* Senden Button */
#btnSend {
  background: var(--wpd-orange);
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.65rem 2rem;
  border-radius: 4px;
  transition: background 0.2s;
}
#btnSend:hover { background: var(--wpd-blue); }
#btnSend:disabled { background: #aaa; cursor: not-allowed; }
/* Success / Error message */
#formFeedback {
  display: none;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  font-size: 0.92rem;
  margin-top: 0.8rem;
}
#formFeedback.success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #43a047;
}
#formFeedback.error {
  background: #fdecea;
  color: #c62828;
  border-left: 4px solid #e53935;
}

@media (min-width: 376px) {
	.mood-footer {
		height:200px;
	}
	
	.header-caption-bar {
	  top: 2.1rem;
	}
	.header-caption-bar span {
	  font-size: 1.6rem;
	  font-weight: 700;
	  letter-spacing: 0.05em;
	  text-indent:1rem;
	}
}

@media (min-width: 576px) {
  .mood-header__logo-wrap { width: 470px; }
	.mood-header {
		height:800px;
	}
	.mood-footer {
		height:235px;
	}
}
@media (min-width: 768px) {
  .mood-header__logo-wrap { width: max(360px, 470px); }   /* min 470px */
  .mood-footer {
		height:285px;
	}
}
@media (min-width: 800px) {
   .mood-header__wave {
	  width: 100%;
	}
}
@media (min-width: 992px) {
	.mood-header__logo-wrap { width: 570px; }   /* 1140/2 */
	--gutter: 3.5rem;
	
	.header-caption-bar {
	  top: 3.4rem;
	}
	.header-caption-bar span {
	  font-size: 1.9rem;
	  font-weight: 700;
	  letter-spacing: 0.05em;
	  text-indent:3rem;
	}
}

@media (min-width: 1400px) {
	.mood-header__logo-wrap { width: 660px; }   /* 1320/2 */
	.mood-header {
		height:800px;
	}
	.mood-footer {
		height:330px;
	}
	
	.header-caption-bar {
	  top: 4rem;
	}
	.header-caption-bar span {
	  font-size: 2.6rem;
	  font-weight: 700;
	  letter-spacing: 0.05em;
	  text-indent:4rem;
	}
}

/* ── Responsive tweaks ──────────────────────────── */
@media (max-width: 768px) {
.round-img-wrap { margin-bottom: 1.5rem; padding-right: 0; }
.round-img { width: 260px; height: 260px; margin: 0 auto;}
.round-img-wrap-right { margin-top: 2rem; }
.round-img-right { width: 260px; height: 260px; margin: 0 auto;}
.col-blue-bg { padding: 2rem 1.5rem; }
.text-img-section .col-text { padding: 1rem 1.5rem; }
.last-row-text-col { padding: 2rem 1.5rem; }
.hero { min-height: 300px; }
.quote-mark { font-size: 5rem; }
.last-row-img-col{ padding:0 !important; }
--gutter: 1.5rem;
}

@media (max-width: 576px) {
.hero-logo { display: none; }
.round-img { width: 220px; height: 220px; }
}