/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans‑serif;
  line-height: 1.5;
  color: #333;
  scroll-behavior: smooth;
  width: 100vw;
}


.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  padding: 20px;
}

/* Toggle Checkbox unsichtbar */
.burger-toggle {
  display: none;
}

/* Icon Linien bleiben wie bisher */
.burger {
  width: 30px;
  cursor: pointer;
  z-index: 1101;   /* sicher vor Nav */
  position: fixed;
  top: 20px;
  right: 20px;
}
.burger span {
  display: block;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}
/*
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.line {
  transition: all 0.3s ease;
}*/

/* Nav Grundzustand */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.323);
  transition: width 0.3s ease;
  z-index: 1000;
}

.nav ul {
  list-style: none;
  padding: 100px 20px;
}
.nav ul li {
  margin: 20px 0;
}
.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
}
/* Aktiv‑Zustand der Navigation */
/*.nav.open {
  width: 200px;
}/*

/* Navigation öffnen: NEU mit direktem Nachbarn (+) */
.burger-toggle:checked + .nav {
  width: 300px; 
}

/* X-Transformation: NEU über das Geschwister-Label (~) */
.burger-toggle:checked + .nav + .burger .line1 {
  transform: rotate(45deg) translate(3px, 9px);
}
.burger-toggle:checked + .nav + .burger .line2 {
  opacity: 0;
}
.burger-toggle:checked + .nav + .burger .line3 {
  transform: rotate(-45deg) translate(2px, -9px);
}


/* Section Basis */
.section {
  width: 100vw;
  /* Höhe individuell via inline‑style oder eigene Klassen */
  /*padding: 40px 20px;*/
}

.marken-content p {
    margin-top: 0;
    margin-bottom: 0;
}
.section-start {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Bild links – bekommt eigene Breite automatisch */
/* 
.hero-image {
  height: 100vh;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
} */

/*.split {
  width: 50%;
  height: 100%;
}*/
.split.left {
    height: 100vh;
    display: flex;
    align-items: stretch;
  /*overflow: hidden;*/
}

.split.left img {
  width: auto;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.split.right {
    flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: rgba(245,231,216);
}

.logo-wrapper {
  text-align: center;
}

.logo {
  width: 600px;
  height: auto;
  padding-bottom: 150px;
}

@font-face {
  font-family: 'TheMix';
  src: url('/fonts/TheMix.woff2') format('woff2'); /* Pfad anpassen */
  font-weight: 200;
  font-style: normal;
}

.section-2 {
    background-color: rgba(245,231,216,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25vh; 
  text-align: center;
}

.marken-content {
  width: 45vw;
  font-family: 'TheMix', sans-serif;
  color: #000;
  font-weight: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.marken-title {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  line-height: 1.2;
  hyphens: auto;
}

.marken-text-1,
.marken-text-2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.marken-text-2{
    text-decoration: underline;
    padding-top: 20px;
}

.btn-wrapper {
  margin-top: 2rem;
}

.btn-termin {
  background: #000;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-family: 'TheMix', sans-serif;
  font-weight: 200;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-termin:hover {
  background: #333;
}




.section-3 {

    background-color: rgba(10, 177, 194, 0.4);
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    padding: 25vh 0;

}

.marken-text-1 {
  font-size: 1.25rem;
  /*margin-bottom: 1.5rem;*/
  /*line-height: 1.6;*/
  width: 100%;
  text-align: left;
}

.marken-text-11 {
  font-size: 1.25rem;
  /*margin-bottom: 1.5rem;*/
  /*line-height: 1.6;*/
  width: 100%;
  text-align: left;
}

.marken-text-2 {
  font-size: 1.25rem;
  /*margin-bottom: 1.5rem;*/
  line-height: 1.6;
  text-align: justify;
  text-decoration: none; 
  padding-top: 2rem;/* falls du Text-2 aus Section 2 hier nicht unterstrichen willst */
}

.marken-text-3 {
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 2rem;
  padding-top: 2rem;
  text-decoration: underline;
}




.section-4 {

    background-color: rgba(255, 240, 62, 0.6);
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    padding: 25vh 0;
}

.section4-text-1 {
    font-size: 2rem;
    line-height: 1.6;
    width: 100%;
    text-align: left;

}

.section4-text-2 {
    font-size: 2rem;
    line-height: 1.6;
    width: 100%;
    text-align: right;
}

.section4-text-3 {
    padding-top: 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: justify;
}

.section4-text-4 {
        font-size: 1.25rem;
    line-height: 1.6;
    text-align: justify;
}

.section4-text-5 {
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: justify;
}




.section-5 {
    background-color: rgba(230, 0, 126, 0.8);
    display: flex;
}

.section5-wrapper {
      display: flex;
      flex-direction: row;
  width: 100vw;
  height: auto;
  align-items: stretch;
}

.section5.right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.section5.right img {
  width: 50vw;
  height: auto;
  object-fit: cover;
  padding-top: 25vh;
  /*object-position: right;*/
  /*flex-shrink: 0;*/
}

.section5.left {
   flex: 1;
  display: flex;
  flex-direction: column;
  align-items:flex-end;
  text-align: left;
  justify-content:flex-end;
  padding: 0 1vw;
  padding-bottom: 0px;
  color: rgba(255,240,62);

}

.section5-texts {
  display: flex;
  width: 20vw;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  text-align: left;
  font-family: 'TheMix', sans-serif;
  color: rgba(255,240,62);

}
.section5-text-1 {
    font-size: 1.25rem;
    line-height: 1.6;
}

.section5-text-2 {
    font-size: 1.25rem;
    line-height: 1.6;
}
.section5-text-3 {
    font-size: 1.25rem;
    line-height: 1.6;
}
.section5-text-4 {
    font-size: 1.25rem;
    line-height: 1.6;
    padding-top: 2rem;
}


.section-6 {

    background-color: rgba(230, 0, 126, 0.8);
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    padding: 25vh 0;

}

.section6-text-1 {
    font-size: 1.25rem;
    line-height: 1.6;
    width: 100%;
    text-align: justify;
    color: #fff;
}
.section6-text-2 {
    font-size: 1.25rem;
    line-height: 1.6;
    width: 100%;
    text-align: justify;
    color: #fff;
}
.section6-text-3 {
    font-size: 1.25rem;
    line-height: 1.6;
    width: 100%;
    text-align: justify;
    color: #fff;
}
.section6-text-4 {
    font-size: 1.25rem;
    line-height: 1.6;
    width: 100%;
    text-align: justify;
    color: #fff;
}


.section-7 {

    background-color: rgba(10, 177, 194, 0.8);
      display: flex;
  justify-content: center;
  align-items: center;
  padding: 25vh; 

}

.section7-content {
  width: 45vw;
  font-family: 'TheMix', sans-serif;
  color: #ffffff;
  font-weight: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.section7-title {
  font-size: 2.3rem;
  margin-bottom: 2rem;
  width: 100%;
  text-align: left;
  line-height: 1.2;
}
.section7-text-1 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: justify;
  line-height: 1.2;
}
.section7-text-2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  line-height: 1.2;
}


.quotes-container {
  position: relative;
  width: 80vw;
  max-width: 900px;
  height: 250px; /* ✅ Feste Gesamthöhe inklusive QuoteBox & Pfeile */
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-box {
  width: 100%;
  max-width: 50vw;
  height: 250px;
  /*padding: 2rem;*/
  /*background-color: rgba(255, 255, 255, 0.1);*/
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center; /* zentralisiert quote-content */
  justify-content: center;
  position: relative; /* ⬅️ Grundlage für absolute Positionierung */
  overflow: hidden;
}

.quote-content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.quote-author {
  position: absolute;
  bottom: -2rem;
  right: 1.5rem;
  font-size: 0.8rem;
  font-style: italic;
  color: #fff;
  text-align: right;
}


/* ✅ Navigation: fix vertikal zentriert, unabhängig vom Text */
.quote-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
}

.quote-nav.left {
  left: -3rem;
}

.quote-nav.right {
  right: -3rem;
}

.quote-nav:hover {
  transform: translateY(-50%) scale(1.2);
}


.section-8 {

    background-color: rgba(230, 0, 126, 0.8);
      display: flex;
      width: 100vw;
      box-sizing: border-box;
      gap: 2vw;
  justify-content: center;
  align-items: top;
  padding: 25vh; 
}

.section-8 .column {
  font-family: 'TheMix', sans-serif;
  color: #ffffff;
  font-size: 1.25rem;
}

.column-1 {
  width: 20vw;
}

.column-2 {
  width: 40vw;
}

.column-3 {
  width: 40vw;
}

.btn-section8 {
  background: #ffffff;
  color: rgba(230, 0, 126, 0.8);
  border: none;
  width: 30vw;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-family: 'TheMix', sans-serif;
  font-weight: 200;
  font-style: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-section8:hover {
  background: rgba(10, 177, 194, 0.8);
  color: #fff;
}

.text-wrapper {
  max-width: 500px;
}
.text-wrapper h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.text-wrapper p {
  font-size: 1.2rem;
  color: #555;
}
/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: rgba(230, 0, 126, 0.8);
  color: #fff;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  gap: 2rem;
}

.footer-nav li {
  flex: 1 1 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-nav a {
  display: flex;
  flex-direction: column;     /* falls Icon + Text */
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: rgba(255, 240, 62);
}

.footer-nav i {
  font-size: 1.5rem;
}


.copyright {
    padding-top: 40px;
    font-size: 10pt;
    font-style: italic;
    font-weight: 100;
}


/* Unterseite 01 - Leistungen */
.logo-leistungen img {
  width: 600px;
  height: auto;
  display: block;
  /*position: absolute;
  top: 100px;
  left: 100px;*/

}

.leistungen-logo-wrapper{
  width: 100vw;
  background-color: rgba(245,231,216);
  display: flex;
  justify-content: center;
  /*padding: 25vh 0;*/
  padding-top: 100px;
  padding-bottom: 25vh;

}

.logo-leistungen{
  width:45vw;
  /*flex-direction: column;*/
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.leistungen-content {
  width: 45vw;
  font-family: 'TheMix', sans-serif;
  color: #000;
  font-weight: 200;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  align-items: center;
}

.leistungen-1 {
      background-color: rgba(245,231,216);
    display: flex;
      width: 100vw;
        /*padding: 25vh 0; */
    /*  box-sizing: border-box;
      gap: 2vw;
  justify-conten:center;
  align-items: flex-start;*/

}

.leistungen-text-1 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  width: 100%;
  text-align: justify;
  hyphens: auto;
  line-height: 1.2;

}

.leistungen-3 {
  background-color: rgba(245,231,216);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 10vh 0;
}

.leistungen3-wrapper {
  display: flex;
  width: 100vw;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2vw;
  /*padding: 0 5vw;*/
}

.leistungen3-text {
  width: 20vw;
  font-family: 'TheMix', sans-serif;
  font-size: 1.25rem;
  color: #000;
  text-align: left;
  line-height: 1.6;
}

.leistungen3-image img {
  height: auto;
  width: 50vw;
  object-fit: cover;
}

.leistungen-4 {
  background-color: rgba(245,231,216);
  display: flex;
  justify-content: center;
  padding: 10vh 0;
}

.leistungen4-content {
  width: 45vw;
  font-family: 'TheMix', sans-serif;
  font-size: 1.25rem;
  color: #000;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}

.leistungen4-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'TheMix', sans-serif;
}

.leistungen4-text {
    font-size: 1.25rem;
    line-height: 1.6;
    width: 100%;
    text-align: justify;
    hyphens: auto;
}

.leistungen4-underlined{
  text-decoration: underline;
}

.pakete-text {
      font-size: 1.25rem;
    line-height: 1.6;
    width: 100%;
    text-align: justify;
    hyphens: auto;
}

.pakete-liste {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  background-color: rgba(245,231,216);
  padding: 10vh 0;
}

.paket-box {
  width: 45vw;
  background-color: #fff;
  border: 1px solid #ccc;
  /*padding: 2rem;*/
  font-family: 'TheMix', sans-serif;
  font-weight: 200;
  position: relative;
}
/*
.paket-header {
  padding: 2rem 2rem 0 2rem;
}*/

.paket-title {
  font-size: 1.5rem;
  font-weight: 200;
/*margin: 0 -2rem 0 -2rem;*/
  border-bottom: 1px solid #ccc;
}

.paket-header h2{
  padding: 2rem ;
  font-size: 2rem;
  font-weight: 400;
}

.paket-content {
  padding: 2rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  color: #000;
  text-align: justify;
  line-height: 1.6;
  hyphens: auto;
}

.paket-content-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 200;
  text-transform: uppercase;
}

.paket-wrapper {
  position: relative;
  display: flex;
  /*align-items: flex-start;*/
  justify-content: center;
  /*gap: 1rem;*/
  margin-bottom: 4rem;
}

.paket-symbol {
position: absolute;
  font-size: 2rem;
  font-weight: 100;
  color: #000000;
  user-select: none;
  cursor: default;
  transition: transform 0.2s ease;
  margin-top: 2rem;
  left: calc(50% - 45vw / 2 - 3rem);

}

.paket-underlined {

  text-decoration: underline;
}
.pakete-content {
  width: 45vw;
  font-family: 'TheMix', sans-serif;
  font-size: 1.25rem;
  color: #000;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}


.section2-pakete {
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: justify;
      background-color: rgba(245,231,216);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5vh;
}

.btn-wrapper-pakete {
padding: 5rem;
display: flex;
justify-content: center;
}






/* Responsive Anpassungen */
@media (max-width: 768px), (orientation: portrait) {
  .leistungen-content,
  .marken-content,
  .pakete-content,
  .paket-box {
    width: 90vw;
    padding: 1.5rem;
  }

  .marken-content h2{
    font-size: 1.5rem;
    hyphens: auto;
  }

  .section .marken-content {
    flex-direction: column;
    width: 90vw;
    padding: 1.5rem;
  }

  .section-2{
    flex-direction: column;
    width: 100vw;
    padding: 1.5rem;
    padding-bottom: 25vh;
  }

  .section5-wrapper {
    flex-direction: column;
  }

  .section5.right img {
    width: 100vw;
    height: auto;
  }

  .section5-texts{
    width: 90vw;
    padding: 1.5rem;
  }

  .section-7 {
    width: 100vw;
  }

  .section7-content{
width: 90vw;
padding: 1.5rem;

  }
.section7-content h2 {
  font-size: 1.5rem;
  hyphens: auto;
}

.quotes-container{
  width: vw;
  padding: 0;

}
  .section p {
    font-size: 1rem;
    hyphens: auto;
  }

  .section h3 {
    font-size: 1.2rem;
    hyphens: auto;
    text-align: left;
  }

  .paket-header h2 {
    font-size: 1.5rem;
    padding: 1.5rem 1rem;
    hyphens: auto;
  }

  .paket-content {
    padding: 1rem;
    font-size: 1rem;
  }

  .paket-content-title {
    font-size: 1rem;
  }

  .paket-symbol {
    font-size: 1.5rem;
    left: 1rem; /* ersetzt das calc(...) bei mobilen */
    top: -1rem;
  }

  .btn-termin,
  .btn-section8 {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }

  .column-1,
  .column-2,
  .column-3 {
    width: 90vw;
    margin-bottom: 2rem;
  }

  .section-8 {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 10vh 0;
  }

  .pakete-liste {
    gap: 2rem;
    padding: 5vh 0;
  }

  .section2-pakete {
    padding: 5vh 0;
  }

  .leistungen-text-1,
  .pakete-text,
  .paket-underlined {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .paket-title {
    font-size: 1.25rem;
  }
  .section-start {
    flex-direction: column;
  }

  .split.left {
    height: 70vh;
  }

  .split.left img{
    width: 100vw;
    height: auto;
    object-position: top;
    overflow: hidden;
  }


  .logo img {
    width: 50vw;
    padding-top: 50px;
  }

  .logo-leistungen img {
    width: 50vw;
  }

  .leistungen3-wrapper {
    flex-direction: column;
    align-items: center;

  }
/*  .leistungen-logo {
    padding: 15vh;
  }*/

  .leistungen3-text {
    width: 90vw;
    padding: 1.5rem;
  }
  .leistungen3-image img {
   height: auto;
   width: 100vw;
  }

  .leistungen-4 {
    padding: 0;
    padding-bottom: 10vh;
  }
  .leistungen4-content {
    width: 90vw;
    padding: 1.5rem;
  }
.btn-wrapper-pakete {
  padding: 0.5rem;
  padding-top: 2rem;
  font-size: 1rem;
  text-align: center;
}

.split .left img{
  height: auto;
  width: 100vw;
}

.logo-wrapper img{
  width: 50vw;
  padding-top: 50px;

}

.quotes-container {
    flex-direction: column;
    height: auto;
    width: 100vw;
    padding: 2rem 0;
  }

  .quote-box {
    max-width: 90vw;
    width: 90vw;
    height: auto;
    min-height: 220px;
    padding: 1.5rem;
  }

  .quote-text {
    font-size: 1.1rem;
    padding: 0 1rem;
    line-height: 1.5;
  }

  .quote-author {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
  }

  .quote-nav {
    font-size: 2rem;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    user-select: none;
  }

  .quote-nav.left {
    left: 1rem; /* näher an der Box */
  }

  .quote-nav.right {
    right: 1rem;
  }

}

