@import url('reset.css');

/*-----------FONTS-----------*/

/* jost-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*-----------FONTGESTALTUNG-----------*/

body {
  font-family: 'poppins';
  color: #0a1b34;
  overflow-x: hidden;
}

h1 {
  font-family: 'poppins';
  font-weight: 400;
  font-size: 25px;
  line-height: 40px;
  margin-bottom: 10px;
}

h2 {
  font-family: 'jost';
  font-weight: 400;
  font-size: 35px;
  margin-bottom: 12px;
}

h3 {
  font-family: 'cormorant garamond';
  font-weight: 700;
  font-size: 45px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

p {
  font-family: 'poppins';
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
}

a {
  font-family: 'poppins';
  font-weight: 500;
  font-size: 18px;
  text-decoration: underline;
  cursor: pointer;
  color: #fff;
}

li {
  font-family: 'poppins';
  font-weight: 400;
  font-size: 16px;
  list-style: disc;
  line-height: 22px;
}

li strong {
  font-family: 'poppins';
  font-weight: 600;
  font-size: 16px;
  list-style: disc;
  margin: 0px;
}

strong {
  font-family: 'poppins';
  font-weight: 600;
  font-size: 16px;
}

/*-----------NAVI-----------*/

.logo {
  position: fixed;
  width: 130px;
  height: auto;
  top: 0px;
  left: 5%;
  z-index: 9999;
}

nav {
  position: fixed;
  background: #0a1b34;
  width: 100%;
  z-index: 101;
  top: 0;
  text-align: right;
  padding: 52px 0;
  z-index: 100;
}

nav ul {
  margin-right: 5%;
}

nav ul li {
  display: inline-block;
  margin: 0 2%;
}

nav ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}

nav ul li strong {
  color: #0025a6;
  font-weight: 600;
}

nav ul li a:hover {
  border-bottom: 3px solid #b18d45;
}

.navi {
  display: none;
}

.burger-nav {
  position: fixed;
  right: 0;
  top: -6px;
  color: #fff;
  z-index: 9999;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 40px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: #0a1b34;
  border-radius: 23px 0px 10px 0px;
  padding: 16px 21px 21px 19px;
}

.burger-nav b {
  transition: all 0.4s ease-in-out;
  float: left;
  margin-left: 0;
  font-family: 'Roboto';
  font-style: normal;
}

.burger-nav-anim {
  top: -5px;
  color: #fff;
}

.burger-nav-anim b:first-of-type {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-nav-anim b:nth-of-type(2) {
  opacity: 0;
}

.burger-nav-anim b:last-of-type {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -80%;
}

.full-screen-nav {
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100vh;
  background: #0a1b34;
  display: table;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.full-screen-nav ul {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.full-screen-nav ul li a {
  padding: 20px;
  display: block;
  font-size: 30px;
  color: #fff;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

.fadeIn {
  opacity: 1 !important;
  visibility: visible !important;
}

.fadeUp {
  opacity: 1 !important;
  margin-top: 0 !important;
}

/*-----------ASIDE-----------*/

aside img {
  position: fixed;
  background-color: #b18d45;
  width: 45px;
  z-index: 999;
  right: 0;
  border-radius: 15px 0px 0px 15px;
  transition: 0.5s;
}

aside img:hover {
  background-color: #0a1b34;
}

.phone {
  top: 300px;
}

.mail {
  top: 360px;
}

.calendar {
  top: 420px;
}

/* ---------Popup-------------*/

/* Checkbox verstecken */
#popup-toggle {
  display: none;
}

/* Overlay (leicht abgedunkelt) */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup schließen */
#popup-toggle:not(:checked) + .overlay {
  display: none;
}

/* Popup Box */
.popup2 {
  background: #b18d45;
  color: #fff;
  padding: 40px;
  width: 550px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Schließen (X) */
.close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* Optional: Hover-Effekt fürs X */
.close:hover {
  opacity: 0.7;
}

/*-----------SUBNAV-----------*/

.subnav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #b18d45;
  /* Hintergrund über volle Breite */
  display: flex;
  justify-content: center;
  /* Links zentriert */
  gap: 20px;
  /* Abstand zwischen Links */
  padding: -3px 0;
  z-index: 999;
}

.subnav a {
  color: #fff;
  padding: 8px 15px;
  font-size: 13px;
  background-color: #b18d45;
  /* gleiche Farbe — wirkt wie Buttons */
  text-decoration: none;
  border-radius: 3px;
  line-height: 23px;
}

/*-----------HEADER - 1 START-----------*/
header {
  position: relative;
}

/* =========================
   Basis Header
========================= */

.header1,
.header2,
.header3,
.header4,
.header5,
.header6 {
  width: 100%;
  min-height: 95vh;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 1;
  border-bottom-left-radius: 200% 61%;
  border-bottom-right-radius: 200% 61%;
}

.header1 {
  top: -16px;
}

/* =========================
   Bilder
========================= */

.header1 {
  background-image: url('../images/spass-im-wasser.webp');
}

.header2 {
  background-image: url('../images/ueberuns-selbsterfuellt.webp');
}

.header3 {
  background-image: url('../images/wohlbefinden-leistungen.webp');
}

.header4 {
  background-image: url('../images/ablauf-figur.webp');
}

.header5 {
  background-image: url('../images/erfahrungen-gluecklich.webp');
}

.header6 {
  background-image: url('../images/selbsterfuellt.webp');
}

/* =========================
   Desktop
========================= */

@media (min-width: 1366px) {
  .header1,
  .header2,
  .header3,
  .header4,
  .header5,
  .header6 {
    background-size: cover;
    background-attachment: fixed;
  }
}

/* =========================
   Mobile
========================= */

@media (max-width: 1366px) {
  .header1,
  .header2,
  .header3,
  .header4,
  .header5,
  .header6 {
    background-size: cover;
    /* 🔥 GANZES Bild sichtbar */
    background-attachment: scroll;
  }
}

#stoerer,
#stoerer2,
#stoerer3,
#stoerer4,
#stoerer5,
#stoerer6 {
  position: absolute;
  left: 50px;
  bottom: 20vh;
  padding: 30px 50px;
  z-index: 2;
  /* Text über allem */
}

#stoerer {
  color: #fff;
  text-shadow: #444 1px 0 10px;
}

#stoerer2 {
  color: #0a1b34;
  text-shadow: #444444a5 1px 0 10px;
}

#stoerer3 {
  color: #0a1b34;
  text-shadow: #44444468 1px 0 10px;
}

#stoerer4 {
  color: #fff;
  text-shadow: #444 1px 0 10px;
}

#stoerer5 {
  color: #0a1b34;
  text-shadow: #44444489 1px 0 10px;
}

#stoerer6 {
  color: #0a1b34;
  text-shadow: #44444489 1px 0 10px;
}

.gold-trennstrich {
  border: none;
  height: 3px;
  background-color: #b18d45;
  width: 250px;
  /* Länge des Strichs */
  margin: 15px 0;
  /* Abstand oben/unten */
}
hr.gold-trennstrich2 {
  border: 0;
  width: 250px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #b18d45;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 80px;
  transition: background 0.3s;
  transition: transform 0.4s ease;
  /* Weicher Übergang */
}

.btn:hover {
  background-color: #444;
  transform: scale(1.05);
  /* Vergrößert den Button */
}

.arrow {
  font-size: 1.2em;
}

.gold-trennstrich-header {
  border: none;
  height: 3px;
  background-color: #b18d45;
  width: 250px;
  /* Länge des Strichs */
  margin: 15px 0;
  /* Abstand oben/unten */
}

.palme {
  position: absolute;
  bottom: -259px;
  right: 0;
  width: 724px;
  height: 380px;
  background-image: url('../images/palme.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 0;
}

.scroll-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-70%);
  z-index: 2;
  display: block;
  cursor: pointer;
  animation: bounce 2.2s infinite ease-in-out;
}

.scroll-arrow img {
  width: 50px;
  /* Größe des Pfeils */
  height: auto;
}

/* Keyframes für sanfte Auf-und-Ab-Bewegung */
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/*-----------AUFBAU-----------*/

html {
  scroll-behavior: smooth;
}

/* ----------- Start SECTION - 1 ----------- */

#start .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 150px 90px;
}

#start .col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}

#start .col {
  width: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#start .col img:hover {
  transform: translateY(-5px) scale(1.05);
}

.start-img {
  width: 60%;
  margin-left: 35%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#start .col:first-child .btn {
  align-self: flex-start;
}

@media (max-width: 1450px) {
  #start .col:first-child h2 {
    font-size: 25px;
  }

  #start .col:first-child h3 {
    font-size: 37px;
  }

  #start .col:first-child p,
  #start .col:first-child strong,
  #start .col:first-child a {
    font-size: 15px;
    font-size: 14px;
    line-height: 25px;
  }

  .start-img {
    width: 75%;
    margin-left: 25%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 1250px) {
  #start .col:first-child h2 {
    font-size: 25px;
  }

  #start .col:first-child h3 {
    font-size: 37px;
  }

  #start .col:first-child p,
  #start .col:first-child strong,
  #start .col:first-child a {
    font-size: 14px;
    line-height: 20px;
  }

  .start-img {
    width: 80%;
    margin-left: 20%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 1000px) {
  #start .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 280px 90px 150px 90px;
  }

  .start-img {
    width: 89%;
    margin-left: 14%;
  }
}

@media (max-width: 900px) {
  #start .col:first-child {
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    align-self: center;
    text-align: center;
  }

  #start .col:first-child .btn {
    align-self: center;
  }

  .start-img {
    width: 60%;
    margin-left: 20%;
  }

  #start .content {
    flex-direction: column;
    align-items: flex-start;
    /* normale Ausrichtung */
  }

  #start .col {
    width: 100%;
  }
}

@media (max-width: 650px) {
  #start .col:first-child h3 {
    font-size: 30px;
  }

  #start .col:first-child h2 {
    font-size: 20px;
  }
}

@media (max-width: 450px) {
  #start .content {
    padding: 280px 60px 150px 60px;
  }

  .start-img {
    width: 80%;
    margin-left: 10%;
  }
}

/* -----------START SECTION - 2 ----------- */

#start2 .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* <<< zentriert die Columns vertikal */
  gap: 50px;
  padding: 0px 90px 90px 90px;
}

/* Linkes Column vertikal zentrieren */
#start2 .col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* <<< Inhalt im linken Column vertikal zentrieren */
}

#start2 .col {
  width: 50%;
}

/* Bild in zweiter Column */
.start2-img {
  width: 80%;
  margin-right: 20%;
  /* richtige Proportionen */
  border-radius: 20px;
  /* abgerundete Ecken */
  display: block;
  object-fit: cover;
  transition: transform 0.2s ease;
  /* Weicher Übergang */
}

.start2-img:hover {
  transform: scale(1.05);
}

/* Button wieder normale Breite */
#start2 .col:first-child .btn {
  align-self: flex-start;
}

.icon-list {
  padding: 0;
  margin: 20px 0;
  padding-left: 20px;
}

.icon-list li {
  margin-bottom: 20px;
  position: relative;
  list-style: none;
}

.icon-list li::before {
  content: '';
  position: absolute;
  top: 3px;
  left: -24px;
  width: 1rem;
  height: 1rem;
  background-image: url('../images/liste-pfeil.png');
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1450px) {
  .start2-img {
    width: 90%;
    margin-right: 10%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
  }

  #start2 .col:nth-of-type(2) h2 {
    font-size: 25px;
  }

  #start2 .col:nth-of-type(2) h3 {
    font-size: 37px;
  }

  #start2 .col:nth-of-type(2) p,
  #start .col:nth-of-type(2) strong,
  #start .col:nth-of-type(2) a {
    font-size: 15px;
    line-height: 25px;
  }
}

@media (max-width: 1250px) {
  .start2-img {
    width: 80%;
    margin-right: 20%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
  }

  #start2 .col:nth-of-type(2) h2 {
    font-size: 25px;
  }

  #start2 .col:nth-of-type(2) h3 {
    font-size: 37px;
  }

  #start2 .col:nth-of-type(2) p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 1000px) {
  #start2 .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 0px 90px 150px 90px;
  }

  .start2-img {
    width: 89%;
    margin-right: 14%;
  }
}

@media (max-width: 900px) {
  #start2 .col:nth-of-type(2) {
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    align-self: center;
    text-align: center;
  }

  #start2 .col:nth-of-type(2) .btn {
    align-self: center;
  }

  .start2-img {
    width: 100%;
  }

  #start2 .content {
    flex-direction: column;
    align-items: flex-start;
    /* normale Ausrichtung */
  }

  #start2 .col {
    width: 100%;
  }

  #start2 .gold-trennstrich {
    width: 120px;
    /* oder die Breite, die du möchtest */
    height: 3px;
    /* Beispielhöhe */
    background-color: #d4af37;
    /* Goldfarbe */
    border: none;
    margin: 20px auto;
    /* WICHTIG: zentriert */
    display: block;
  }

  #start2 .icon-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 40px auto;
    /* zentriert */
    text-align: center;
    /* Text und Inhalt zentriert */
    max-width: 600px;
    /* optional: verhindert, dass die Liste zu breit wird */
  }

  #start2 .icon-list li {
    gap: 10px;
    /* Abstand zwischen Icon und Text */
    margin-bottom: 12px;
  }

  #start2 .icon-list .icon {
    display: none;
  }
}

@media (max-width: 500px) {
  #start2 .content {
    padding: 0px 5% 150px 5%;
  }

  #start2 .col:nth-of-type(2) {
    padding: 0px 10% 0px 10%;
  }
}

@media (max-width: 650px) {
  #start2 .col:nth-of-type(2) h3 {
    font-size: 30px;
  }

  #start2 .col:nth-of-type(2) h2 {
    font-size: 20px;
  }

  .start2-img {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .start2-img {
    width: 100%;
    margin-left: 0%;
  }
}

/* ----------- UEBERUNS SECTION - 1 ----------- */

#ueberuns1 {
  text-align: center;
  /* Zentriert den Textinhalt */
  display: flex;
  /* Flexbox für Zentrierung */
  flex-direction: column;
  /* Stapelt die Elemente vertikal */
  align-items: center;
  /* Zentriert horizontal alle Elemente */
  justify-content: center;
  /* Optional: vertikal zentrieren, falls Höhe gesetzt */
  gap: 1em;
  /* Abstand zwischen den Elementen */
  padding-top: 100px;
  padding-bottom: 280px;
  /* Optional: Innenabstand */
}

#ueberuns1 p {
  max-width: 1000px;
  /* Lesefreundliche Breite */
}

/* ----------- UEBERUNS SECTION - 2 ----------- */

.ueberuns2 {
  background-color: #0a1b34;
  padding: 60px 20px;
  color: #fff;
  margin-bottom: 50px;
}

.container {
  max-width: 600px;
  margin: 0 auto;

  /* 2 Spalten → Bild+Text als vertikale Karten */
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

.profile {
  display: flex;
  flex-direction: column;
  /* Bild über Text */
  align-items: center;
  text-align: left;
}

/* Bildbox */
.image-wrapper {
  background-color: #b38b4d;
  border-radius: 12px;
  width: 100%;
  max-width: 260px;
  margin-top: -210px;
}

.image-wrapper img {
  width: 100%;
  height: 314px;
  /* feste Höhe für alle Bilder */
  object-fit: cover;
  /* Bild wird zugeschnitten, nicht verzerrt */
  border-radius: 8px;
  margin-bottom: -3px;
}

.text {
  margin-top: 20px;
  width: 80%;
  padding-top: 50px;
  text-align: center;
}

.text h2 {
  margin-bottom: 10px;
}

.text p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
#ueberuns2-geschichten h3 {
  text-align: center;
}

/* RESPONSIVE: ab 768px alles untereinander */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }

  .text {
    text-align: center;
  }

  .gold-trennstrich {
    width: 90px;
    /* oder deine gewünschte Breite */
    height: 3px;
    /* Dicke des Strichs */
    border: none;
    /* Standard-HR-Linie entfernen */
    margin: 10px auto;
    /* zentriert */
    display: block;
    /* wichtig zum Zentrieren */
  }
}

.image-wrapper {
  overflow: hidden;
  /* wichtig, damit das Bild beim Zoomen nicht übersteht */
  border-radius: 12px;
  /* oder deine gewünschte Rundung */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover-Effekt */
.image-wrapper:hover {
  transform: scale(1.15);
  /* gesamter Wrapper wächst minimal */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.image-wrapper:hover img {
  transform: scale(1.09);
  /* Bild zoomt etwas stärker für Tiefe */
}

/* ----------- UEBERUNS SECTION - 3 ----------- */

#ueberuns3 .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* <<< zentriert die Columns vertikal */
  gap: 50px;
  padding: 230px 90px;
}

/* Linkes Column vertikal zentrieren */
#ueberuns3 .col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* <<< Inhalt im linken Column vertikal zentrieren */
}

#ueberuns3 .col {
  width: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ueberuns3 .col img:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Bild in zweiter Column */
.ueberuns3-img {
  width: 60%;
  margin-left: 35%;
  /* max. 90 % seiner eigenen Column */
  height: auto;
  /* richtige Proportionen */
  border-radius: 20px;
  /* abgerundete Ecken */
  display: block;
  object-fit: cover;
  /* Bild schön zentriert */
  transition: transform 0.3s ease;
}

/* Button wieder normale Breite */
#ueberuns3 .col:first-child .btn {
  align-self: flex-start;
}

@media (max-width: 1450px) {
  #ueberuns3 .col:first-child h2 {
    font-size: 25px;
  }

  #ueberuns3 .col:first-child h3 {
    font-size: 37px;
  }

  #ueberuns3 .col:first-child p,
  #stueberuns3art .col:first-child strong,
  #ueberuns3 .col:first-child a {
    font-size: 15px;
    font-size: 14px;
    line-height: 25px;
  }

  .ueberuns3-img {
    width: 75%;
    margin-left: 25%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 1250px) {
  #ueberuns3 .col:first-child h2 {
    font-size: 25px;
  }

  #ueberuns3 .col:first-child h3 {
    font-size: 37px;
  }

  #ueberuns3 .col:first-child p,
  #ueberuns3 .col:first-child strong,
  #ueberuns3 .col:first-child a {
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
  }

  .ueberuns3-img {
    width: 80%;
    margin-left: 20%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 1000px) {
  #ueberuns3 .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  #ueberuns1 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding-top: 250px;
    padding: 280px 60px 250px 60px;
  }

  .ueberuns3-img {
    width: 89%;
    margin-left: 14%;
  }
}

@media (max-width: 769px) {
  .container .profile:nth-of-type(2) {
    padding-top: 300px;
  }
}

@media (max-width: 700px) {
  #ueberuns3 .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 69px 90px;
  }
}

@media (max-width: 900px) {
  #ueberuns3 .col:first-child {
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    align-self: center;
    text-align: center;
  }

  #ueberuns3 .col:first-child .btn {
    align-self: center;
  }

  .ueberuns3-img {
    width: 60%;
    margin-left: 20%;
  }

  #ueberuns3 .content {
    flex-direction: column;
    align-items: flex-start;
    /* normale Ausrichtung */
  }

  #ueberuns3 .col {
    width: 100%;
  }
}

@media (max-width: 450px) {
  #ueberuns3 .content {
    padding: 80px 60px 150px 60px;
  }

  .ueberuns3-img {
    width: 80%;
    margin-left: 10%;
  }
}

/*-----------Leistungen - Section 1-----------*/

#leistungen1 {
  text-align: center;
  /* Zentriert den Textinhalt */
  display: flex;
  /* Flexbox für Zentrierung */
  flex-direction: column;
  /* Stapelt die Elemente vertikal */
  align-items: center;
  /* Zentriert horizontal alle Elemente */
  justify-content: center;
  /* Optional: vertikal zentrieren, falls Höhe gesetzt */
  gap: 1em;
  /* Abstand zwischen den Elementen */
  padding-top: 100px;
  padding-bottom: 66px;
  /* Optional: Innenabstand */
}

#leistungen1 p {
  max-width: 600px;
  /* Lesefreundliche Breite */
}

@media (max-width: 1000px) {
  #leistungen1 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding-top: 250px;
    padding-bottom: 66px;
    padding-left: 50px;
    padding-right: 50px;
  }

  #leistungen-sec-2 {
    padding: 60px 20px 140px 20px;
  }
}

/* =========================
   Globaler Overflow-Schutz
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

#leistungen-sec-2 {
  padding: 60px 20px 120px;
  overflow-x: hidden;
}

.leistungen-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
  max-width: 1308px;
  width: 100%;
  margin: 0 auto;
}

.leistung-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.leistung-item:hover {
  transform: translateY(-4px);
}

.leistung-item img {
  width: 100%;
  height: auto;
  max-height: 365px;
  display: block;
  object-fit: cover;
}

/* =========================
   Textbereich
========================= */

.leistung-text {
  background: #c5c9ce;
  padding: 25px 30px;
  border-radius: 0px 0px 20px 20px;
}

.leistung-text h3 {
  color: #fff;
  margin-top: 0;
}

/* =========================
   Icon Liste
========================= */

.icon-listi {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.icon-listi li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.icon-listi .icon {
  width: 13px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {
  #leistungen-sec-2 {
    padding: 40px 16px 80px;
  }

  .leistungen-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .leistung-item:hover {
    transform: none;
  }

  .leistung-item img {
    max-height: 300px;
  }
}

/* ----------- Der Ablauf SECTION - 1 ----------- */

#ablauf .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* <<< zentriert die Columns vertikal */
  gap: 50px;
  padding: 150px 90px;
}

/* Linkes Column vertikal zentrieren */
#ablauf .col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* <<< Inhalt im linken Column vertikal zentrieren */
}

#ablauf .col {
  width: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ablauf .col img:hover {
  transform: translateY(-5px) scale(1.03);
}

/* Bild in zweiter Column */
.ablaufs-img {
  width: 60%;
  margin-left: 35%;
  /* max. 90 % seiner eigenen Column */
  height: auto;
  /* richtige Proportionen */
  border-radius: 20px;
  /* abgerundete Ecken */
  display: block;
  object-fit: cover;
  /* Bild schön zentriert */
  transition: transform 0.3s ease;
}

/* Button wieder normale Breite */
#ablauf .col:first-child .btn {
  align-self: flex-start;
}

@media (max-width: 1450px) {
  #ablauf .col:first-child h2 {
    font-size: 25px;
  }

  #ablauf .col:first-child h3 {
    font-size: 37px;
  }

  #ablauf .col:first-child p,
  #ablauf .col:first-child strong,
  #ablauf .col:first-child a {
    font-size: 15px;
    font-size: 14px;
    line-height: 25px;
  }

  .ablaufs-img {
    width: 75%;
    margin-left: 25%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 1250px) {
  #ablauf .col:first-child h2 {
    font-size: 25px;
  }

  #ablauf .col:first-child h3 {
    font-size: 37px;
  }

  #ablauf .col:first-child p,
  #ablauf .col:first-child strong,
  #ablauf .col:first-child a {
    font-size: 14px;
    line-height: 20px;
  }

  .ablaufs-img {
    width: 80%;
    margin-left: 20%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 1000px) {
  #ablauf .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 280px 90px 150px 90px;
  }

  .ablaufs-img {
    width: 89%;
    margin-left: 14%;
  }
}

@media (max-width: 900px) {
  #ablauf .col:first-child {
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    align-self: center;
    text-align: center;
  }

  #ablauf .col:first-child .btn {
    align-self: center;
  }

  .ablaufs-img {
    width: 60%;
    margin-left: 20%;
  }

  #ablauf .content {
    flex-direction: column;
    align-items: flex-start;
    /* normale Ausrichtung */
  }

  #ablauf .col {
    width: 100%;
  }
}

@media (max-width: 650px) {
  #ablauf .col:first-child h3 {
    font-size: 30px;
  }

  #ablauf .col:first-child h2 {
    font-size: 20px;
  }
}

@media (max-width: 450px) {
  #ablauf .content {
    padding: 280px 60px 150px 60px;
  }

  .ablaufs-img {
    width: 80%;
    margin-left: 10%;
  }
}

/*----------- Ablauf - Section 2 - Phasen -----------*/

#ablauf-phasen {
  padding: 0px 90px 160px 90px;
}

.ablauf-container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Spalten */
.ablauf-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
}

/* Boxen */
.ablauf-box {
  display: flex;
  flex: 1;
  /* sorgt dafür, dass ALLE Boxen gleich hoch werden */
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #c5c9ce;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ablauf-box:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Textbereich */
.ablauf-text {
  padding: 25px;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.ablauf-text h3 {
  margin-top: 0;
  color: #ffffff;
}

.ablauf-text p {
  margin-top: 0;
  color: #ffffff;
}

/* Bildbereich */
.ablauf-img {
  width: 40%;
  display: flex;
}

.ablauf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bild passt sich an die Text-Höhe an */
  display: block;
}

/* ----------- RESPONSIVE ----------- */

@media (max-width: 900px) {
  .ablauf-container {
    grid-template-columns: 1fr;
    /* einspaltig */
  }
}

@media (max-width: 650px) {
  .ablauf-box {
    flex-direction: column;
    /* Bild unter Text */
  }

  .ablauf-box {
    display: flex;
    flex: 1;
    height: 100%;
    border-radius: 12px;
    overflow: visible;
    background: #c5c9ce;
  }

  .ablauf-text,
  .ablauf-img {
    width: 100%;
  }

  .ablauf-img img {
    height: 220px;
    /* besondere Höhe auf kleineren Screens */
    border-radius: 0px 0px 12px 12px;
  }

  .ablauf-text p {
    margin-top: 0;
    color: #ffffff;
    width: 85%;
  }
}

@media (max-width: 500px) {
  #ablauf-phasen {
    padding: 0px 50px 160px 50px;
  }
}

@media (max-width: 400px) {
  #ablauf-phasen {
    padding: 0px 10px 160px 10px;
  }
}

/* ----------- Erfahrungen SECTION - 1 ----------- */

#erfahrungen1 {
  text-align: center;
  /* Zentriert den Textinhalt */
  display: flex;
  /* Flexbox für Zentrierung */
  flex-direction: column;
  /* Stapelt die Elemente vertikal */
  align-items: center;
  /* Zentriert horizontal alle Elemente */
  justify-content: center;
  /* Optional: vertikal zentrieren, falls Höhe gesetzt */
  gap: 1em;
  /* Abstand zwischen den Elementen */
  padding-top: 100px;
  padding-bottom: 66px;
  /* Optional: Innenabstand */
}

#erfahrungen1 p {
  max-width: 600px;
  /* Lesefreundliche Breite */
}

@media (max-width: 1000px) {
  #erfahrungen1 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding-top: 250px;
    padding-bottom: 66px;
    padding-left: 50px;
    padding-right: 50px;
  }

  #erfahrungen1-sec-2 {
    padding: 60px 20px 140px 20px;
  }
}

/* ----------- Erfahrungen SECTION - 2 ----------- */

/*----- Vorher/Nachher Bereich -----*/
#vohernachher {
  padding: 60px 20px 140px 20px;
}

.vn-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.vn-item {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vn-item img {
  width: 100%;
  height: auto;
  /* WICHTIG: Bild verzerrt sich nicht */
  object-fit: cover;
  /* verhindert Verziehen bei zugeschnittenen Bildern */
  display: block;
}

.vn-item:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Responsive: unter 900px → zwei Spalten */
@media (max-width: 900px) {
  .vn-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: unter 600px → einspaltig */
@media (max-width: 600px) {
  .vn-container {
    grid-template-columns: 1fr;
  }
}

/* ----------- Erfahrungen SECTION - 3 ----------- */

#erfahrungen3 {
  text-align: center;
  /* Zentriert den Textinhalt */
  display: flex;
  /* Flexbox für Zentrierung */
  flex-direction: column;
  /* Stapelt die Elemente vertikal */
  align-items: center;
  /* Zentriert horizontal alle Elemente */
  justify-content: center;
  /* Optional: vertikal zentrieren, falls Höhe gesetzt */
  gap: 1em;
  /* Abstand zwischen den Elementen */
  padding-top: 100px;
  padding-bottom: 66px;
  /* Optional: Innenabstand */
}

#erfahrungen3 p {
  max-width: 600px;
  /* Lesefreundliche Breite */
}

@media (max-width: 1000px) {
  #erfahrungen3 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding-top: 250px;
    padding-bottom: 66px;
    padding-left: 50px;
    padding-right: 50px;
  }

  #erfahrungen3-sec-2 {
    padding: 60px 20px 140px 20px;
  }
}

@media (max-width: 900px) {
  #erfahrungen3 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding-top: 0px;
    padding-bottom: 66px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* ---------- erfahrungen slider ---------- */

/* Außen 90px Abstand */
.erfahrungen-outer-wrapper {
  width: 100%;
  padding: 30px 90px 90px 90px;
  box-sizing: border-box;
}

/* Sichtbarer Bereich ohne Padding */
.erfahrungen-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Track */
.erfahrungen-slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

/* EINZIGER wichtiger Fix: width MUSS 100% der sichtbaren Fläche sein */
.erfahrungen-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  box-sizing: border-box;
  padding: 40px;
  background: #f5f5f5;
  border-radius: 14px;
}

.erfahrungen-slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.erfahrungen-slider-controls button {
  background: #b38b4d;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 20px;
  border-radius: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
  /* Weicher Übergang */
}

.erfahrungen-slider-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.erfahrungen-slider-wrapper:hover {
  transform: translateY(-5px) scale(1.02);
}

.erfahrungen-slider-controls button:hover {
  background: #333;
  transform: scale(1.1);
  /* Vergrößert den Button */
}

.erfahrungen-slider-controls {
  position: relative;
  z-index: 10;
  /* Buttons über dem Slider */
}

.erfahrungen-slider-controls button {
  position: relative;
  z-index: 10;
  /* Falls einzeln nötig */
}

@media (max-width: 600px) {
  .erfahrungen-outer-wrapper {
    width: 100%;
    padding: 30px 50px 90px 50px;
    box-sizing: border-box;
  }

  .erfahrungen-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    padding: 25px;
    background: #f5f5f5;
    border-radius: 14px;
  }
}

.erfahrungen-button {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.erfahrungen-button {
  align-items: center;
  justify-content: center;
}

/*-----------Laufband Erfahrungen-----------*/

.laufband-container {
  overflow: hidden;
  width: 100%;
  padding: 80px 0;
  background-color: #c5c9ce;
  margin-bottom: 10px;
}

.laufband-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.laufband-track:hover {
  animation-play-state: paused;
}

.laufband-track img {
  width: 400px;
  height: auto;
  margin: 0 5px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.laufband-track img:hover {
  transform: scale(1.3);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-1600px);
  }
}

#erf-lauf-but {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding-top: 10px;
  padding-bottom: 66px;
}

@media (max-width: 700px) {
  .laufband-track {
    animation: none !important;
    transform: translateX(0) !important;
  }

  .laufband-container {
    overflow-x: auto;
    cursor: grab;
    scroll-behavior: smooth;
  }

  .laufband-container:active {
    cursor: grabbing;
  }
}

/*-----------POPUP AKTIONEN-----------*/

:root {
  --popup-bg: #c6cbd0;
  --accent: #b18d45;
  --text: #ffffff;
}

body {
  margin: 0;
  font-family: system-ui;
}

.overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
}

.popup {
  width: 70%;
  max-width: 760px;
  min-width: 300px;
  background: var(--popup-bg);
  color: var(--text);
  padding: 40px 32px 32px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  text-align: left;
}

/* CLOSE */
.close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.badge-circle {
  position: absolute;
  top: 0px;
  right: 40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;

  background: url('../images/kugel.png') no-repeat center center;
  background-size: contain;
  /* Keine Verzerrung, kein Zuschnitt */

  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-6deg);
  text-align: center;
}

.badge-circle h3 {
  font-size: 25px;
  color: var(--text);
  margin: 0;
  letter-spacing: 1px;
}

.popup h2 {
  margin-top: 0;
  font-size: 25px;
}

.popup p {
  line-height: 1.5;
  padding-bottom: 20px;
}

hr.gold-trennstrich {
  border: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

.actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn {
  background: var(--accent);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.15s;
  z-index: 6;
}

.btn:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .popup h2,
  .popup p,
  .popup h3 {
    width: 80%;
  }
}

/* Ab 769px alles zentriert untereinander */
@media (max-width: 769px) {
  .popup {
    text-align: center;
    /* Text zentrieren */
    padding-top: 145px;
    /* Platz für Kreis oben */
  }

  /* Kreis ganz oben, mittig */
  .badge-circle {
    position: absolute;
    top: 1px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-0deg);
  }

  /* Überschriften wieder linksbündig innerhalb der zentrierten Box vermeiden */
  .popup h2,
  .popup h3,
  .popup p {
    text-align: center;
    width: 100%;
  }

  .popup h2 {
    margin-top: 60px;
  }

  /* Button mittig – bleibt gleich, aber hier nochmal falls nötig */
  .actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .popup {
    width: 100%;
    padding: 28px 20px;
    border-radius: 0px;
  }

  .badge-circle {
    width: 110px;
    height: 110px;
    top: 0px;
    right: 6px;
  }

  .badge-circle h3 {
    font-size: 0.75rem;
  }

  .popup h2 {
    margin-top: 90px;
  }
}

/*-----------FOOTER-----------*/

/* Wrapper sorgt dafür, dass absolute Elemente NICHT zum Header springen */
.footer-wrapper {
  position: relative;
  width: 100%;
  z-index: 0;
}

/* Footercontainer (liegt über der Palme) */
.kontakt1 {
  background-color: #0a1b34;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  border-top-left-radius: 200% 61%;
  border-top-right-radius: 200% 61%;
  overflow: hidden;
  display: block;
  z-index: 10;
}

/* Palme unter dem ganzen Kontaktbereich */
.palme2 {
  position: absolute;
  top: -248px;
  left: 0;
  width: 671px;
  height: 460px;
  background-image: url('../images/palme2.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Ab 600px ausblenden */
@media (max-width: 650px) {
  .palme2 {
    top: -58px;
    left: 0;
    width: 400px;
    height: 400px;
  }
}

/* Ab 600px ausblenden */
@media (max-width: 400px) {
  .palme2 {
    top: -58px;
    left: 0;
    width: 300px;
    height: 260px;
  }
}

.kontakt1 .content {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 170px 80px 90px 50px;
}

.kontakt1 .col {
  flex: 1;
  min-width: 250px;
}

.kontakt1 .col:nth-of-type(2) {
  margin-top: 180px;
}

.gold-trennstrich-footer {
  border: none;
  height: 3px;
  background-color: #b18d45;
  width: 250px;
  /* Länge des Strichs */
  margin: 15px 0;
  /* Abstand oben/unten */
}

.scroll-arrow2 {
  position: absolute;
  top: 37px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: block;
  cursor: pointer;
  animation: bounce 2.9s infinite ease-in-out;
}

.scroll-arrow2 img {
  width: 50px;
  height: auto;
}

@media (max-width: 900px) {
  #kontakt1 .content {
    flex-direction: column;
    gap: 30px;
  }
}

/*-----------RESPONSIVE-----------*/

@media screen and (max-width: 1366px) {
  header {
    background-attachment: scroll;
  }
}

@media screen and (max-width: 1000px) {
  .logo {
    position: absolute;
  }

  .logo {
    position: fixed;
    width: 130px;
    height: auto;
    top: 0px;
    left: 5%;
    z-index: 9999;
    border-radius: 0px 0px 13px 13px;
    background-color: #0a1b34;
    padding: 10px;
  }

  header {
    height: 75vh;
  }

  nav {
    background: none;
    box-shadow: 0 0 0;
  }

  nav ul {
    display: none;
  }

  .navi {
    display: block;
  }

  h1 {
    font-family: 'poppins';
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  h2 {
    font-family: 'jost';
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 12px;
  }

  h3 {
    font-family: 'cormorant garamond';
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
}

/* --------- RESPONSIVE FOOTER SPALTEN --------- */

/* Unter 995px → 2 Spalten */
@media (max-width: 995px) {
  .kontakt1 .content {
    flex-wrap: wrap;
    gap: 40px;
    padding: 200px 40px 70px 40px;
  }

  .kontakt1 .col {
    flex: 0 0 calc(50% - 40px);
    /* zwei Spalten */
    min-width: unset;
  }

  .kontakt1 .col:nth-of-type(2) {
    margin-top: 110px;
    /* Abstand entfernen für mobile */
  }

  .palme {
    position: absolute;
    bottom: -368px;
    right: 0;
    width: 544px;
    height: 380px;
  }
}

/* Unter 675px → 1 Spalte */
@media (max-width: 675px) {
  .kontakt1 .content {
    flex-direction: column;
    padding: 180px 30px 60px 30px;
    gap: 25px;
  }

  .kontakt1 .col {
    flex: 1 0 100%;
    /* einspaltig */
  }

  .kontakt1 .col:nth-of-type(2) {
    margin-top: 10px;
    /* Abstand entfernen für mobile */
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 650px) {
  h1 {
    font-family: 'poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  h2 {
    font-family: 'jost';
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 12px;
  }

  h3 {
    font-family: 'cormorant garamond';
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  p {
    font-family: 'poppins';
    font-weight: 400;
    font-size: 12px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  a {
    font-family: 'poppins';
    font-weight: 400;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    color: #fff;
  }

  li {
    font-family: 'poppins';
    font-weight: 400;
    font-size: 12px;
    list-style: disc;
    line-height: 22px;
  }

  ul li {
    font-family: 'poppins';
    font-weight: 400;
    font-size: 12px;
    list-style: disc;
    line-height: 22px;
  }

  strong {
    font-family: 'poppins';
    font-weight: 600;
    font-size: 12px;
  }

  li strong {
    font-family: 'poppins';
    font-weight: 600;
    font-size: 12px;
  }

  #stoerer,
  #stoerer2,
  #stoerer3,
  #stoerer4,
  #stoerer5,
  #stoerer6 {
    left: 50px;
    padding: 29px;
  }
}

@media screen and (max-width: 450px) {
  aside img {
    width: 40px;
  }

  .mail {
    top: 250px;
  }

  .phone {
    top: 320px;
  }

  .maps {
    top: 390px;
  }

  .calendar {
    top: 460px;
  }

  #stoerer,
  #stoerer2,
  #stoerer3,
  #stoerer4,
  #stoerer5,
  #stoerer6 {
    left: 20px;
    padding: 29px 0px;
  }
}

/* Grundlayout */
#impressum {
  padding: 4rem 2rem;
  /* Außenabstand */
}

#impressum a {
  color: #b38b4d;
  font-size: 16px;
}

.imp-container {
  max-width: 1300px;
  margin: 0 auto;
  /* zentrieren */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  /* Abstand zwischen Spalten */
}

/* Spalten */
.imp-column {
  min-width: 0;
  /* verhindert Overflow */
}

/* Responsive: ab Tablet / Mobile einspaltig */
@media screen and (max-width: 1000px) {
  #impressum {
    padding: 14rem 1.5rem;
  }
}

/* Responsive: ab Tablet / Mobile einspaltig */
@media screen and (max-width: 900px) {
  .imp-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #impressum {
    padding: 16rem 1.5rem;
  }
}
