@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: "krok", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "neuzeit-grotesk", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "neuzeit-grotesk", sans-serif;
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* mobile ------------------------------------*/
@media screen and (max-width:768px) {
  html {
    font: 1rem "neuzeit-grotesk";
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
  }

  h1 {
    font: 3rem "krok";
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.5rem;
  }

  h2 {
    font: 2rem "krok";
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.5rem;
  }

  h3 {
    font: 1rem "neuzeit-grotesk";
    font-weight: 400;
    font-style: normal;

  }

  h4 {
    font: 0.9rem "neuzeit-grotesk";
    font-weight: 300;
    margin-bottom: 1rem;
  }

address {
  font: 1rem "neuzeit-grotesk";
  font-weight: 400;
  margin-bottom: 1rem;
}

  strong {
    font: 1rem "neuzeit-grotesk";
    font-weight: 500;
  }

  body {
    background: url("../img/yoga_lp_lilac-hg_soft.jpg") left bottom/cover fixed;
    width: 100%; /* Stellt sicher, dass der Hintergrund sichtbar ist */
    transition: background-image 1s ease-in-out;
  }

  /* Hintergrundbilder */
  .background-lilac {
    background: url("../img/yoga_lp_lilac-hg_soft.jpg") left bottom/cover fixed;
  }

  .background-gold {
    background: url("../img/yoga_lp_gold-hg_soft.jpg") left bottom/cover fixed;
  }


  header, footer {
    transition: opacity 1s ease-in-out;
  }
  /* Verläufe für Header */
  #topheader .header-gold {
    background: linear-gradient(to left, rgb(209, 158, 56, 0.4), rgba(209, 158, 56, 0));
    opacity: 1;
  }

  #topheader .header-lilac {
    background: linear-gradient(to left, rgb(111, 30, 129, 0.4), rgba(111, 30, 129, 0));
    opacity: 1;
  }

  /* Verläufe für Footer */
  #footer .footer-gold {
    background: linear-gradient(to left, rgb(209, 158, 56, 0.4), rgba(209, 158, 56, 0));
  }

  #footer .footer-lilac {
    background: linear-gradient(to left, rgb(111, 30, 129, 0.4), rgba(111, 30, 129, 0));
  }

  .logo {
    position: fixed;
    width: auto;
    height: 120px;
    margin-top: 30px;
    margin-left: 10px;
    z-index: 500;

  }

  #topheader {
    position: fixed;
    left: 0;
    right: 0;
    background: linear-gradient(to left, rgba(209, 158, 56, 0.6), rgba(209, 158, 56, 0));
    top: 0;
    z-index: 150;
    height: 90px;
  }

  .trans-linie {
    position: relative;
    color: rgb(209, 158, 56, 1);

  }

  .trans-linie::after {
    content: "";
    position: absolute;
    top: 88px;
    left: 160px;
    right: 0;
    height: 2px; /* Höhe der "Border" */
    background: linear-gradient(to left, rgb(111, 30, 129), rgba(209, 158, 56, 0)); /* Verlauf */
    z-index: 152;
  }


  /* Burger-Button */
  .button {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 950;
    background: #6f1e81;
    border: 0;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
    opacity: 1;
    transform: scale(0.8);
    border-radius: 8px;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.175s ease; /* Animation (Hintergrund und Skalierung) */
  }

  .button:hover {
    opacity: 1;
    background: #d19e38; /* Hover-Effekt */
  }



  /* SVG-Styling */
  .burger-5 {
    transform: scale(1.3);
    height: 34px;
  }

  .burger-5 svg {
    height: 36px;
    transform: translate(-1px, -1px) rotate(0deg); /* Anfangsstatus */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Animation für das SVG */
  }

  /* Allgemeine Linien (Path im SVG) */
  .burger-5 .line {
    fill: none;
    stroke: white;
    stroke-linecap: round; /* Abgerundete Enden */
    stroke-linejoin: round; /* Abgerundete Ecken */
    stroke-width: 1.75;
    transition:
      stroke-dasharray 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Animierte Übergänge */
  }

  /* Linien für die obere und untere Bewegung */
  .burger-5 .line-top-bottom {
    stroke-dasharray: 12 63; /* Anfangszustand der Linien (sichtbarer Bereich und Abstand) */
    stroke-dashoffset: 0;    /* Anfangssichtbarkeit */
  }

  /* Aktivierter Zustand */
  .button.burger-action svg {
    transform: rotate(-45deg) translate(0); /* Drehung bei Aktivierung */
  }

  .button.burger-action .line-top-bottom {
    stroke-dasharray: 20 300; /* Veränderung bei Aktivierung */
    stroke-dashoffset: -32.42; /* Nach links verschieben */
  }
  .burger-action {
    display: block;
  }

  /* Navigationsleiste */
  #topnavigation {
    position: fixed;
    top: 90px;
    right: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 900;
    background: #6f1e81;
    width: clamp(200px, 50%, 300px);
    transform: translateX(200%);
    transition: transform 0.3s ease-in-out;
    max-height: calc(100vh - 16vh);
    border-radius: 12px 0 0 12px;
  }

  #topnavigation.burger-action {
    transform: translateX(0);
  }

  #topnavigation ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  #topnavigation a {
    color: #fff;
    font: 1rem "neuzeit-grotesk", sans-serif;
    border-top: 1px solid rgba(238, 230, 200, 0.6);
    text-decoration: none;
    margin-left: 1rem;
    margin-right: 1rem;
    line-height: 2.5rem;
    display: block;
    transition: 0.5s ease;
  }


  #topnavigation a:hover, #topnavigation .akt:hover {
    text-shadow: 0px 0px 6px #fff;
    filter: drop-shadow(0 0 6px #fff);  /* Effekte bei Hover */
  }

  #topnavigation ul ul li{
    line-height: 3rem;
  }
  #topnavigation ul ul li a{
    padding-left: 0.5rem;

  }
  #topnavigation li {
    position: relative; /* Wichtig, um das Untermenü korrekt relativ zu platzieren */
  }

  #topnavigation ul ul {
    position: relative; /* Entfernt die absolute Positionierung */
    top: 0; /* Kein Versatz, da es direkt unterhalb des Hauptmenüs eingeblendet wird */
    left: 0;
    list-style: none;
    width: 100%;
    opacity: 0; /* Unsichtbar als Ausgangszustand */
    visibility: hidden;
    max-height: 0; /* Höhe des Untermenüs ist 0, solange es nicht sichtbar ist */
    overflow: hidden; /* Überstehenden Inhalt ausblenden */
    transition: opacity 1s ease, visibility 1s ease, max-height 1s ease; /* Glatte Übergänge */
    z-index: 960; /* Stellt sicher, dass das Untermenü über anderen Stilen hervorgehoben wird */
  }

  #topnavigation ul li:hover ul {
    opacity: 1; /* Sichtbar machen des Untermenüs */
    visibility: visible; /* Sichtbarkeit aktivieren */
    max-height: 300px; /* Max-Höhe für Untermenü setzen; passt für mehrere Einträge */
  }

  /* Untermenü-Einträge Styling */
  #topnavigation ul ul a {
    display: block;
    color: #ffffff;
    font: 0.9rem "neuzeit-grotesk";
    font-weight: 200;
    line-height: 1.2rem;
    font-style: normal;
    text-decoration: none;
    white-space: nowrap;
     /* Hintergrundfarbe */
    border-top: 1px solid rgba(238, 230, 200, 0.6);
    margin-top: 0;
    padding: 4px;
    transition: background 0.3s ease; /* Glatter Übergang */
  }

  /* Entfernt den border-right beim letzten Untermenü-Eintrag */
  #topnavigation ul ul li:first-child > a {
    border-top: none;
  }
  #topnavigation ul li:first-child > a {
    border-top: none;
  }

  /* Hovereffekte für Untermenü-Einträge
  #topnavigation ul ul a:hover {
    background: rgb(238, 230, 200);
  }*/

  /* Hovereffekte für Hauptmenü-Einträge */
  #topnavigation ul li a:hover {
    color: #ffffff;
  }

  /* Aktive Links im Hauptmenü */
  #topnavigation a .akt {
    color: #ffff;
  }



  /* Variablen für Header-/Footerhöhe (bei Bedarf anpassen) */
  :root {
    --header-h: 90px;
    --footer-h: 60px;
  }

  /*-----inhalt*/
  /* Wrapper: auf Mobile als eigener Viewport zw. Header und Footer fixieren */
  .wrapper {
    position: fixed;
    top: var(--header-h);
    bottom: var(--footer-h);
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;

    overflow-y: auto;   /* eigener vertikaler Scroll */
    overflow-x: hidden; /* horizontales Springen verhindern */
    -webkit-overflow-scrolling: touch;
    z-index: 100;       /* unter Header(>=150) / Footer(>=150) */
    /* KEIN padding-top/-bottom hier, da wir visuell „clippen“ wollen */
  }

  /* Sections: vertikal gestapelt, Höhe nach Inhalt */
  .wrapper section {
    flex: 0 0 auto;
    min-width: 100%;
    height: auto;
    scroll-snap-align: unset;
  }

  /* Falls du zu Ankern innerhalb von art4 springst (art6–art9),
     sorge dafür, dass sie im Wrapper-Viewport korrekt einrasten */
  #art6, #art7, #art8, #art9 {
    scroll-margin-top: 50px;   /* leichte Luft, optional */
    scroll-margin-bottom: 50px;
  }




  /* Scrollbars optional ausblenden
  .wrapper::-webkit-scrollbar {
    display: none;
  }*/


  .wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  section {
    min-width: 100vw; /* Jedes Section-Element nimmt 100% der Fensterbreite ein */
    align-items: center;
  }

  section::after {
    content: "";
    display: block;
    clear: both;
    background-color: #6f1e81;
    width: 90vw;
    height: 2px;
    margin: auto;
    transform: translateY(-40px);
  }

  .grid-special {
    margin-top: 2vh;
    margin-bottom: 100px;
    min-height: 80vh; /* Bis zu 80vh, falls der Inhalt kleiner ist */
    display: grid;
    grid-template-columns: 3fr 5fr;
    grid-template-rows: auto; /* Zeilenhöhe automatisch */
    grid-template-areas:
                  "head head"
                  "txt txt"
                  "bild bild";
  }

  /* grid-zuordnung -------*/
  .picture { grid-area: bild; }
  .headline { grid-area: head; }
  .copytext { grid-area: txt; }


  *[class*="grid"] > img {
    max-height: 70vh; /* Beschränkt die maximale Höhe */
    width: auto; /* Beibehaltung des Seitenverhältnisses */

  }

  .headline {
    color: #6f1e81;
    display: block;
    text-align: right; /* Zentrierung innerhalb der Section */
  }

  .grid-special > * {
    padding: 0 28px 0 40px;
  }


  #art1 .headline h1 {
    color: #d19e38;
    padding-top: 60px;
    text-align: center;

  }

  #art2 .headline h2,
  #art3 .headline h2,
  #art4 .headline h2,
  #art5 .headline h2 {
    color: #6f1e81;
    margin-bottom: 20px;
  }


  .start-logo img {
    margin-left: auto;
    width: auto;
    max-height: 46vh;
    padding-top: 30px;
    margin-bottom: 200px;

  }

  .copytext {
    font-family: "neuzeit-grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2rem;
    color: #6f1e81;
    text-align: right;
    padding-left: 40px;
    padding-bottom: 40px;
  }

#art6, #art7, #art8, #art9 {
  max-width: 95vw; /* Jedes Section-Element nimmt 100% der Fensterbreite ein */
  padding-bottom: 30px;
}

  .schedule img {
    margin-bottom: 20px;
    max-width: 100vw;
    height: auto;
    padding: 0 10px 0 40px;

  }

  .mobile_schedule_m {
    content: url('../img/kursangebot_lp_yoga_mobile_m.png');

  }
  .mobile_schedule_ws {
    content: url('../img/kursangebot_lp_yoga_mobile_ws.png');
  }

  .mobile_schedule_wr {
    content: url('../img/kursangebot_lp_yoga_mobile_wr.png');
  }



  section .map div {
    max-width: 100vw;         /* Nimmt 100% der verfügbaren Breite des Elterncontainers ein */
    padding: 30px 28px 0 30px;
  }

  .adresse_hhh {
    color: #6f1e81;
    text-align: right;
    line-height: 1.2rem;
    display: block;
    width: 100vw;
  }

.map div {
  margin-bottom: 20px;
}

.adresse_hhh img {
  width: 40vw;
  height: auto;
  margin-left: auto;
  padding-bottom: 10px;
}
  .styled-iframe {
    width: calc(100vw - 58px);
    height: 300px;
    border: 4px solid #d19e38; /* Farbiger Rahmen */
    border-radius: 8px; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Schatten */
    margin: 30px 28px 80px 30px;
  }


  /*-----footer*/
  #footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to left, rgba(209, 158, 56, 0.6), rgba(209, 158, 56, 0));

    z-index: 150;
    height: 60px;
    transition: 0.3s;
  }

.copy-lp {
  color: #481355;
  font: 1rem "neuzeit-grotesk";
  font-weight: 300;
  line-height: 1rem;
  font-style: normal;
  text-decoration: none;
  padding-right: 20px;
  transform: translateY(2px);
}

  .superspalter a {
    display: block;
    color: #6f1e81;
    font: 1rem "neuzeit-grotesk";
    font-weight: 300;
    line-height: 1rem;
    font-style: normal;
    text-decoration: none;
    padding-left: 10px;
  }

  .trans-linie-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    right: 0;
    height: 2px; /* Höhe der "Border" */
    background: linear-gradient(to left, rgb(111, 30, 129), rgba(209, 158, 56, 0)); /* Verlauf */
  }



  #footer a:before {
    content: "";
    display: block;
    background-color: #6f1e81;
    width: 0;
    transform: skewX(-25deg);
    height: 2px;
    transition: 0.4s;
    visibility: hidden;
  }

  #footer a:hover:before {
    visibility: visible;
    width: 100%;
    transform: skewX(-25deg);
  }

  #footer a:hover, #topnavigation a .akt {
    color: #bd810a;
  }

  #footer .social a:hover:before {
    visibility: hidden;

  }


 .superspalter .social svg{
    display: block;
    color: #6f1e81;
    width: 2rem;
    height: auto;
   padding-left: 10px;
  }

  .superspalter {
    position: relative;
    display: flex;
    margin-right: 2rem;
    margin-top: 20px;
    justify-content: flex-end;
  }


  /* overlay --------------*/
  .overlay {
    display: none; /* Start mit unsichtbarem Overlay */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(66, 36, 74, 0.8);
    justify-content: center;
    align-items: center;
  }

  body.overlay-open #topnavigation,
  body.overlay-open #topheader,
  body.overlay-open .wrapper,
  body.overlay-open #footer {
    z-index: 0;
    pointer-events: none; /* Verhindert Interaktionen mit diesen Bereichen */
  }

  body.overlay-open .overlay {
    pointer-events: auto; /* Erlaubt Interaktionen nur mit dem Overlay */
  }


  .overlay-content h1 {
    font: 1.4rem "neuzeit-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    padding-top: 30px;
  }
  .overlay-content h2 {
    font: 1rem "neuzeit-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2rem;
    padding-top: 12px;
  }

  .overlay-content h3 {
    font: 0.9rem "neuzeit-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }

  .overlay-content h4 {
    font: 0.9rem "neuzeit-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
  }

  .overlay-content h5 {
    font: 0.9rem "neuzeit-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 0.5rem;
  }

  .overlay-content strong {
    font-family: "neuzeit-grotesk", sans-serif;
    font-weight: 400;
  }

  .overlay-content > p, ul {
    font: 0.8rem "neuzeit-grotesk", sans-serif;
    font-weight: 200;
    font-style: normal;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }

  .overlay-content {
    background-color: rgba(43, 43, 37, 0.4);
    color: #eee6c8;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    padding: 1rem;
    border-radius: 6px;
    position: relative;

    width: 80vw;
    max-height: 80vh;
    overflow: auto;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font: 1.6rem Exo;
    font-size: 36px;
    z-index: 1004;
    cursor: pointer;
  }

  .index-link {
    color: #d19e38;
    text-decoration: none;
  }

  .index li {
    list-style: none;
  }

  .overlay-content > * li {
    list-style: none;
  }

  .textbox a[href] {
    color: #d19e38;
    text-decoration: none;
  }

  .overlay-content a[href] {
    color: #d19e38;
    text-decoration: none;
  }

  /*Kontaktform*/


  .kontaktformular {
    display: block;
    position: static; /* Sichergestellt, dass Inhalte im Fluss bleiben */
    clear: both;      /* Falls darüber etwas floatet */
    min-width: 100vw; /* Jedes Section-Element nimmt 100% der Fensterbreite ein */
    scroll-snap-align: start; /* Sections rasten am Anfang ein */
    box-sizing: border-box; /* Padding berücksichtigen */
padding: 0 28px 80px 30px;

  }

.kontaktformular div {
  min-width: 100%;
  height: auto;
}

.kontaktformular h3 {
  display: block;
  font-size: 1.2rem;
  text-align: right;
  padding-bottom: 12px;
}




  #contactForm p {
    display: block;
    color: #6f1e81;
    font: 0.8rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    text-align: right;
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  #contactForm label {
    width: 80vw;
    display: inline-block;
    vertical-align: bottom;
    text-align: right;
    padding-bottom: 0.4rem;
  }

  input, textarea {
    width: 80vw;
    background: none;
    text-align: right;
    border: none;
    border-bottom: 1px solid rgb(111, 30, 129, 0.8);
    outline: none;
    font: 1.0rem "neuzeit-grotesk";
    color: #6f1e81;

    transition: 0.2s;
  }
  input:hover {
    background-color: rgb(209, 158, 56, 0.1);
    box-shadow: 0 -2px 2px 2px rgb(209, 158, 56, 0.2);
  }
  textarea:hover {
    background-color: rgb(209, 158, 56, 0.1);
    box-shadow: 0 -2px 2px 2px rgb(209, 158, 56, 0.2);
  }
  input[type="checkbox"], input[type="radio"] {
    width: auto;
    accent-color: #d19e38;
  }
  input:focus, textarea:focus {
    background: rgb(209, 158, 56, 0.2);
  }
  button[type="submit"] {
    color: #6f1e81;
    background: rgb(111, 30, 129, 0.4);
    font: 1rem "neuzeit-grotesk";
    font-weight: 500;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgb(111, 30, 129);
    width: 80vw;
    padding: 10px 20px;
  }

  button[type="submit"]:hover {
    background: rgb(209, 158, 56, 0.6);
  }

  .gesendet fieldset {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    /* %-Angaben in translate beziehen sich auf das Element selbst! */
    background: rgba(209, 158, 56, 0.3);
    color: #6f1e81;
    font-size: 0.8rem;
    padding: 20px;
  }

  .gesendet div {
    width: 200px;
    height: 200px;
    text-align: center;
    color: #6f1e81;


  }

  .gesendet h2 {
    font-size: 1.4rem;
    padding-top: 20px;
    padding-bottom: 20px;
  }
.gesendet input[type="submit"] {
  color: #6f1e81;
  font: 0.8rem "neuzeit-grotesk";
  font-weight: 500;
  font-style: normal;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgb(111, 30, 129);
  width: 40vw;
  padding: 6px;
}
  /* reCAPTCHA-Badge verstecken – nur zusammen mit Hinweistext verwenden! */
  .grecaptcha-badge {
    visibility: hidden; /* oder: display: none; */
  }


}



/* tablet ------------------------------------*/
@media screen and (min-width:769px) and (max-width:1200px) {
  html {
    font: 1rem "neuzeit-grotesk";
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
  }

  h1 {
    font: 6rem "krok";
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.5rem;
  }

  h2 {
    font: 3rem "krok";
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.5rem;
  }

  h3 {
    font: 1rem "neuzeit-grotesk";
    font-weight: 500;
    font-style: normal;

  }

  h4 {
    font: 1rem "neuzeit-grotesk";
    font-weight: 400;
    margin-bottom: 1rem;
  }

  address {
    font-family: "neuzeit-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: normal;

  }

  strong {
    font: 1rem "neuzeit-grotesk";
    font-weight: 400;
  }

  body {
    background: url("../img/yoga_lp_lilac-hg.jpg") left bottom/cover fixed;
    width: 100%; /* Stellt sicher, dass der Hintergrund sichtbar ist */

    transition: background-image 1s ease-in-out;
  }

  /* Hintergrundbilder */
  .background-lilac {
    background: url("../img/yoga_lp_lilac-hg.jpg") left bottom/cover fixed;
  }

  .background-gold {
    background: url("../img/yoga_lp_gold-hg.jpg") left bottom/cover fixed;
  }


  header, footer {
    transition: opacity 1s ease-in-out;
  }

  /* Verläufe für Header */
  #topheader .header-gold {
    background: linear-gradient(to left, rgb(209, 158, 56, 0.4), rgba(209, 158, 56, 0));
    opacity: 1;
  }

  #topheader .header-lilac {
    background: linear-gradient(to left, rgb(111, 30, 129, 0.4), rgba(111, 30, 129, 0));
    opacity: 1;
  }

  /* Verläufe für Footer */
  #footer .footer-gold {
    background: linear-gradient(to left, rgb(209, 158, 56, 0.4), rgba(209, 158, 56, 0));
  }

  #footer .footer-lilac {
    background: linear-gradient(to left, rgb(111, 30, 129, 0.4), rgba(111, 30, 129, 0));
  }

  .logo {
    position: fixed;
    width: auto;
    height: 180px;
    margin-top: 32px;
    margin-left: 2rem;
    z-index: 300;
  }

  #topheader {
    position: fixed;
    left: -5px;
    right: 0;
    background: linear-gradient(to left, rgba(209, 158, 56, 0.6), rgba(209, 158, 56, 0));
    top: 0;
    z-index: 150;
    height: 120px;
  }


  .trans-linie {
    position: relative;
    color: rgb(209, 158, 56, 1);

  }

  .trans-linie::after {
    content: "";
    position: absolute;
    top: 120px;
    left: 200px;
    right: 0;
    height: 4px; /* Höhe der "Border" */
    background: linear-gradient(to left, rgb(111, 30, 129), rgba(209, 158, 56, 0)); /* Verlauf */
    z-index: 152;
  }

  /*-----navi*/
  #topnavigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  #topnavigation > ul {
    display: flex;
    list-style: none;
    position: relative;
    margin-right: 2rem;
    justify-content: flex-end;
  }

  #topnavigation li {
    position: relative;
  }

  #topnavigation ul ul {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    list-style: none;
    width: 100%;
    /*  display: none;*/
    opacity: 0;
    visibility: hidden;
    justify-content: flex-end;
    transition: 0.5s;
    z-index: 80;
  }

  #topnavigation ul li:hover ul {
    /*display: block;*/
    top: 124px;
    opacity: 1;
    visibility: visible;
  }


  #topnavigation a {
    display: block;
    color: #6f1e81;
    font: 1.5rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-align: right;
    white-space: nowrap;
    margin: 0; /* Setzt alle Abstände zurück */
    padding: 12px; /* Innere Abstände für ästhetischen Textbereich */
  }

  /* Styling nur für Hauptmenü-Einträge */
  #topnavigation > ul > li > a {
    display: block;
    color: #6f1e81;
    font: 1.5rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    margin-left: 1rem;
    margin-top: 70px;
    padding-bottom: 20px;
    position: relative;
    z-index: 120;
  }

  #topnavigation > ul > li > a:before {
    content: "";
    display: block;
    background-color: #6f1e81;
    width: 0;
    transform: translateY(-0.2rem) skewX(-25deg);
    height: 3px;
    transition: 0.4s;
    visibility: hidden;
  }

  #topnavigation > ul > li > a:hover:before {
    visibility: visible;
    width: 100%;
    transform: translateY(-0.2rem) skewX(-25deg);
  }

  /* Untermenü-Einträge ohne Balken-Styling */
  #topnavigation ul ul a {
    display: block;
    color: #6f1e81;
    font: 1rem "neuzeit-grotesk";
    font-weight: 200;
    line-height: 1rem;
    font-style: normal;
    text-decoration: none;
    white-space: nowrap;
    background: rgba(189, 129, 10, 0.4);
    border-right: 1px solid #6f1e81;
    margin-top: 0;
    margin-left: 0;
    padding: 12px;

  }

  /* Entfernt den border-right beim letzten Link */
  #topnavigation ul ul li:last-child > a {
    border-right: none;
  }

  #topnavigation ul ul a:hover {
    background: rgba(111, 30, 129, 0.2);
  }

  #topnavigation ul li a:hover {
    color: #bd810a;
    /*text-shadow: 0 0 6px #6f1e81;*/
  }

  #topnavigation a.active {
    color: #d19e38 !important; /* Wichtigkeit sicherstellen */
    font-weight: 300;
  }
  #topnavigation li > a.active + ul a {
    font-weight: 400;
  }


  /*-----inhalt*/
  /* Wrapper: Scrollbarer Container */
  .wrapper {
    position: fixed;
    top: 124px;
    left: 0;
    display: flex; /* Abschnitte horizontal nebeneinander legen */
    height: calc(100vh - 184px); /* Der Wrapper erstreckt sich genau über den Viewport */
    width: 100vw; /* Dynamische Breite basierend auf Anzahl von Sections */
    flex-wrap: nowrap;
    overflow-y: auto; /* Nur vertikales Scrollen zulassen */
    overflow-x: hidden; /* Horizontales Scrollen deaktivieren */
    scroll-behavior: smooth; /* Smooth-Scroll aktivieren */
    z-index: 100; /* Beibehalten */

  }

  /* Sections: Gleiche Breite für alle */
  .wrapper section {
    flex: 0 0 100vw; /* Jede Section ist 100% der Viewport-Breite */
    width: 100vw;
    flex-shrink: 0;
    height: 100vh; /* Volle Höhe */
    scroll-snap-align: start; /* Sections rasten am Anfang ein */
    box-sizing: border-box; /* Padding berücksichtigen */
    padding-right: 2.7rem; /* Optional: Extra Padding */
  }

  /* Scrollbars optional ausblenden
  .wrapper::-webkit-scrollbar {
    display: none;
  }*/
  .wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  section {
    min-width: 100vw; /* Jedes Section-Element nimmt 100% der Fensterbreite ein */
    align-items: center;
  }


  .grid-special {

      margin-top: 4vh;
      margin-bottom: 20px;
      height: auto; /* Dynamisch an den Inhalt anpassen */
      min-height: 80vh; /* Bis zu 80vh, falls der Inhalt kleiner ist */
      display: grid;
      grid-template-columns: 4fr 5fr;
    grid-template-rows: 1fr 8fr;

    grid-template-areas:
                    "bild head"
                    "bild txt";
  }

  /* grid-zuordnung -------*/
  .picture {
    grid-area: bild;
  }

  .headline {
    grid-area: head;
  }

  .copytext {
    grid-area: txt;
  }


  *[class*="grid"] > img {
    max-height: 70vh; /* Beschränkt die maximale Höhe */
    width: auto; /* Beibehaltung des Seitenverhältnisses */
    padding-left: 18%;
  }

  .headline {
    display: block;
    text-align: right; /* Zentrierung innerhalb der Section */
  }


  #art1 .headline h1 {
    font-size: 5.5rem;
    color: #d19e38;
    margin-top: 26px;
    text-align: center;

  }

  #art2 .headline h2,
  #art3 .headline h2,
  #art4 .headline h2,
  #art5 .headline h2 {
    color: #6f1e81;
  }

  .start-logo img {
    margin-left: auto;
    width: auto;
    max-height: 40vh;
    margin-top: 20px;
    margin-right: 20px;
  }

  .copytext {
    font-family: "neuzeit-grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.4rem;
    color: #6f1e81;
    text-align: right;
    margin-top: 20px;
    padding-left: 80px;
  }


  #art6, #art7, #art8 {
    display: block;
    position: static; /* Standardposition: Bleibt im Fluss */
    margin-top: 1rem;
    clear: both;      /* Um sicherzustellen, dass sie nicht von anderen umflossenen Inhalten betroffen sind */
  }

  .schedule {
    display: block;
    position: static; /* Sichergestellt, dass Inhalte im Fluss bleiben */
    margin-top: 1rem; /* Zusätzlicher Abstand, falls gewünscht */
    clear: both;      /* Falls darüber etwas floatet */
    min-width: 100vw; /* Jedes Section-Element nimmt 100% der Fensterbreite ein */
    align-items: center;
    scroll-snap-align: start; /* Sections rasten am Anfang ein */
    box-sizing: border-box; /* Padding berücksichtigen */
    padding-right: 2rem; /* Optional: Extra Padding */
    padding-left: 6rem;
  }

  .schedule img {
    margin-bottom: 20px;
    max-width: 90vw;
    height: auto;

  }

  #art8 {
    padding-bottom: 10px;
  }

  .map {
    max-width: 100vw;         /* Nimmt 100% der verfügbaren Breite des Elterncontainers ein */
    align-items: center;
    scroll-snap-align: start; /* Sections rasten am Anfang ein */
    box-sizing: border-box; /* Padding berücksichtigen */
    padding-bottom: 100px;
    padding-left: 6rem;

  }

  .adresse_hhh {
    color: #6f1e81;
    text-align: right;
    padding-top: 30px;
    line-height: 1.2rem;
    padding-left: 100px;
    padding-bottom: 2rem;

  }

  .adresse_hhh img {
    display: block;
    width: 15vw; /* Optional: Sie können die Breite anpassen oder entfernen */
    height: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .styled-iframe {
    width: 100%;
    height: 300px;
    border: 4px solid #d19e38; /* Farbiger Rahmen */
    border-radius: 8px; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Schatten */
    margin-bottom: 200px;
  }

  /*-----footer*/
  #footer {
    position: fixed;
    bottom: 0;
    left: 40px;
    right: 0;
    background: linear-gradient(to left, rgba(209, 158, 56, 0.6), rgba(209, 158, 56, 0));

    z-index: 150;
    height: 60px;
    transition: 0.3s;
  }

  #footer p, #footer a {
    display: block;
    color: #6f1e81;
    font: 1.2rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    padding-left: 20px;
  }


  .trans-linie-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 200px;
    right: 0;
    height: 3px; /* Höhe der "Border" */
    background: linear-gradient(to left, rgb(111, 30, 129), rgba(209, 158, 56, 0)); /* Verlauf */
  }

  #footer a {
    transform: translateY(-0.2rem);
  }

  #footer a:before {
    content: "";
    display: block;
    background-color: #6f1e81;
    width: 0;
    transform: skewX(-25deg);
    height: 2px;
    transition: 0.4s;
    visibility: hidden;
  }

  #footer a:hover:before {
    visibility: visible;
    width: 100%;
    transform: skewX(-25deg);

  }

  #footer a:hover, #topnavigation a .akt {
    color: #bd810a;
  }

  #footer .social a:hover:before {
    visibility: hidden;
  }


  .superspalter .social svg{
    display: block;
    color: #6f1e81;
    width: 2rem;
    height: auto;
    padding-left: 10px;
    padding-top: 2px;
  }


  .superspalter {
    position: relative;
    display: flex;
    margin-right: 2.7rem;
    margin-top: 15px;
    justify-content: flex-end;
  }


  /* overlay --------------*/
  .overlay {
    display: none; /* Start mit unsichtbarem Overlay */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(66, 36, 74, 0.8);
    justify-content: center;
    align-items: center;
  }

  body.overlay-open #topnavigation,
  body.overlay-open #topheader,
  body.overlay-open .wrapper,
  body.overlay-open #footer {
    z-index: 0;
    pointer-events: none; /* Verhindert Interaktionen mit diesen Bereichen */
  }

  body.overlay-open .overlay {
    pointer-events: auto; /* Erlaubt Interaktionen nur mit dem Overlay */
  }


  .overlay-content h1 {
    font: 1.6rem "neuzeit-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    line-height: 1.6rem;
  }

  .overlay-content h2 {
    font: 1.2rem "neuzeit-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    line-height: 1.6rem;
  }

  .overlay-content h3 {
    font: 1rem "neuzeit-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }

  .overlay-content h4 {
    font: 1rem "neuzeit-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
  }

  .overlay-content h5 {
    font: 1rem "neuzeit-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 0.5rem;
  }

  .overlay-content strong {
    font-family: "neuzeit-grotesk", sans-serif;
    font-weight: 400;
  }

  .overlay-content > p, ul {
    font: 0.9rem "neuzeit-grotesk", sans-serif;
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }

  .overlay-content {
    background-color: rgba(43, 43, 37, 0.4);
    color: #eee6c8;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 2rem;
    border-radius: 3px;
    position: relative;

    width: 70%;
    max-height: 70%;
    overflow: auto;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font: 1.6rem Exo;
    font-size: 36px;
    z-index: 2001;
    cursor: pointer;
  }

  .index-link {
    color: #d19e38;
    text-decoration: none;
  }

  .index li {
    list-style: none;
  }

  .overlay-content > * li {
    list-style: none;
  }

  .textbox a[href] {
    color: #d19e38;
    text-decoration: none;
  }

  .overlay-content a[href] {
    color: #d19e38;
    text-decoration: none;
  }

  /*Kontaktform*/
  .kontaktformular > *{
    width: 100vw;
    height: auto;
    padding-right: 3rem;
    margin-top: 50px;
    text-align: right;
  }


.textbox p {
  width: 40vw;
  text-align: right;
}
  .kontaktformular h3 {
    color: #6f1e81;
    font: 1.2rem "neuzeit-grotesk";
    font-weight: 400;
    font-style: normal;

  }

  form {
    width: 80vw;
    height: auto;
    text-align: right;
  }

  #contactForm p {
    display: block;
    color: #6f1e81;
    font: 1rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    text-align: right;
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  #contactForm label {
    width: 80vw;
    display: inline-block;
    vertical-align: bottom;
    text-align: right;
    padding-bottom: 0.4rem;
  }

  input, textarea {
    width: 80vw;
    background: none;
    border: none;
    border-bottom: 1px solid rgb(111, 30, 129, 0.8);
    outline: none;
    font: 1rem "neuzeit-grotesk";
    color: #6f1e81;
    text-align: right;
    padding: 0.3rem;
    transition: 0.2s;
  }

  input:hover {
    background-color: rgb(209, 158, 56, 0.1);
    box-shadow: 0 -2px 2px 2px rgb(209, 158, 56, 0.2);
  }

  textarea:hover {
    background-color: rgb(209, 158, 56, 0.1);
    box-shadow: 0 -2px 2px 2px rgb(209, 158, 56, 0.2);
  }

  input[type="checkbox"], input[type="radio"] {
    width: auto;
    accent-color: #d19e38;
  }

  input:focus, textarea:focus {
    background: rgb(209, 158, 56, 0.2);
  }

  button[type="submit"] {
    color: #6f1e81;
    background: rgb(111, 30, 129, 0.4);
    font: 1rem "neuzeit-grotesk";
    font-weight: 500;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgb(111, 30, 129);
    width: 300px;
    margin: 1rem auto;
    padding: 20px 40px;
  }

  button[type="submit"]:hover {
    background: rgb(209, 158, 56, 0.6);
  }

  .gesendet fieldset {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    /* %-Angaben in translate beziehen sich auf das Element selbst! */
    background: rgba(209, 158, 56, 0.3);
    color: #6f1e81;
    font-size: 1rem;
    padding: 2%;
  }

  .gesendet div {
    width: 600px;
    height: 200px;
    text-align: center;
    color: #6f1e81;
    font-size: 1rem;

  }
  .gesendet h2 {
    font-size: 2rem;
    padding-top: 20px;
  }
  /* reCAPTCHA-Badge verstecken – nur zusammen mit Hinweistext verwenden! */
  .grecaptcha-badge {
    visibility: hidden; /* oder: display: none; */
  }


}



/* desktop ------------------------------------*/
@media screen and (min-width:1201px) {
  html {
    font: 1.2rem "neuzeit-grotesk";
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
  }

  h1 {
    font: 8rem "krok";
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.5rem;
  }

  h2 {
    font: 4rem "krok";
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0.5rem;
  }

  h3 {
    font: 1.2rem "neuzeit-grotesk";
    font-weight: 400;
    font-style: normal;

  }

  h4 {
    font: 1.2rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    margin-bottom: 1rem;
  }

  address {
    font-family: "neuzeit-grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: normal;
  }
  strong {
    font: 1.2rem "neuzeit-grotesk";
    font-weight: 400;
  }

  body {
    background: url("../img/yoga_lp_lilac-hg.jpg") left bottom/cover fixed;
    width: 100%; /* Stellt sicher, dass der Hintergrund sichtbar ist */

    transition: background-image 1s ease-in-out;
  }

  /* Hintergrundbilder */
  .background-lilac {
    background: url("../img/yoga_lp_lilac-hg.jpg") left bottom/cover fixed;
  }

  .background-gold {
    background: url("../img/yoga_lp_gold-hg.jpg") left bottom/cover fixed;
  }


  header, footer {
    transition: opacity 1s ease-in-out;
  }

  /* Verläufe für Header */
  #topheader .header-gold {
    background: linear-gradient(to left, rgb(209, 158, 56, 0.4), rgba(209, 158, 56, 0));
    opacity: 1;
  }

  #topheader .header-lilac {
    background: linear-gradient(to left, rgb(111, 30, 129, 0.4), rgba(111, 30, 129, 0));
    opacity: 1;
  }

  /* Verläufe für Footer */
  #footer .footer-gold {
    background: linear-gradient(to left, rgb(209, 158, 56, 0.4), rgba(209, 158, 56, 0));
  }

  #footer .footer-lilac {
    background: linear-gradient(to left, rgb(111, 30, 129, 0.4), rgba(111, 30, 129, 0));
  }

  .logo {
    position: fixed;
    width: auto;
    height: 220px;
    margin-top: 20px;
    margin-left: 60px;
    z-index: 300;
  }

  #topheader {
    position: fixed;
    left: -5px;
    right: 0;
    background: linear-gradient(to left, rgba(209, 158, 56, 0.6), rgba(209, 158, 56, 0));
    top: 0;
    z-index: 150;
    height: 126px;

  }

  .trans-linie {
    position: relative;
    color: rgb(209, 158, 56, 1);

  }

  .trans-linie::after {
    content: "";
    position: absolute;
    top: 126px;
    left: 200px;
    right: 0;
    height: 6px; /* Höhe der "Border" */
    background: linear-gradient(to left, rgb(111, 30, 129), rgba(209, 158, 56, 0)); /* Verlauf */
    z-index: 152;
  }

  /*-----navi*/
  #topnavigation {
    position: fixed;
    top: 0;
    right: 8rem;
    width: 70vw;
    z-index: 1000;
  }

  #topnavigation > ul {
    display: flex;
    list-style: none;
    position: relative;
    justify-content: flex-end;
  }

  #topnavigation li {
    position: relative;
  }

  #topnavigation ul ul {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    list-style: none;
    width: 100%;
    /*  display: none;*/
    opacity: 0;
    visibility: hidden;
    justify-content: flex-end;
    transition: 0.5s;
    z-index: 80;
  }

  #topnavigation ul li:hover ul {
    /*display: block;*/
    top: 132px;
    opacity: 1;
    visibility: visible;
  }


  #topnavigation a {
    display: block;
    color: #6f1e81;
    font: 1.6rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    white-space: nowrap;
    margin: 0; /* Setzt alle Abstände zurück */
    padding: 2px; /* Innere Abstände für ästhetischen Textbereich */
  }

  /* Styling nur für Hauptmenü-Einträge */
  #topnavigation > ul > li > a {
    display: block;
    color: #6f1e81;
    font: 1.6rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    margin-left: 4rem;
    margin-top: 70px;
    padding-bottom: 20px;
    position: relative;
    z-index: 120;
  }

  #topnavigation > ul > li > a:before {
    content: "";
    display: block;
    background-color: #6f1e81;
    width: 0;
    transform: translateY(-0.2rem) skewX(-25deg);
    height: 4px;
    transition: 0.4s;
    visibility: hidden;
  }

  #topnavigation > ul > li > a:hover:before {
    visibility: visible;
    width: 100%;
    transform: translateY(-0.2rem) skewX(-25deg);
  }

  /* Untermenü-Einträge ohne Balken-Styling */
  #topnavigation ul ul a {
    display: block;
    color: #6f1e81;
    font: 1rem "neuzeit-grotesk";
    font-weight: 200;
    line-height: 1.2rem;
    font-style: normal;
    text-decoration: none;
    white-space: nowrap;
    background: rgba(189, 129, 10, 0.4);
    border-right: 1px solid #6f1e81;
    margin-top: 0;
    margin-left: 0;
    padding: 12px;

  }

  /* Entfernt den border-right beim letzten Link */
  #topnavigation ul ul li:last-child > a {
    border-right: none;
  }

  #topnavigation ul ul a:hover {
    background: rgba(111, 30, 129, 0.2);
  }

  #topnavigation ul li a:hover {
    color: #bd810a;
    /*text-shadow: 0 0 6px #6f1e81;*/
  }

  #topnavigation a.active {
    color: #d19e38 !important; /* Wichtigkeit sicherstellen */
    font-weight: 300;

  }
  #topnavigation li > a.active + ul a {
    font-weight: 400;
  }




  /*-----inhalt*/
  /* Wrapper: Scrollbarer Container */
  .wrapper {
    position: fixed;
    top: 132px;
    left: 0;
    display: flex; /* Abschnitte horizontal nebeneinander legen */
    height: calc(100vh - 212px); /* Der Wrapper erstreckt sich genau über den Viewport */
    width: 100vw; /* Dynamische Breite basierend auf Anzahl von Sections */
    flex-wrap: nowrap;
    overflow-y: auto; /* Nur vertikales Scrollen zulassen */
    overflow-x: hidden; /* Horizontales Scrollen deaktivieren */
    scroll-behavior: smooth; /* Smooth-Scroll aktivieren */
    z-index: 100; /* Beibehalten */

  }

  /* Sections: Gleiche Breite für alle */
  .wrapper section {
    flex: 0 0 100vw; /* Jede Section ist 100% der Viewport-Breite */
    width: 100vw;
    flex-shrink: 0;
    height: 100vh; /* Volle Höhe */
    scroll-snap-align: start; /* Sections rasten am Anfang ein */
    box-sizing: border-box; /* Padding berücksichtigen */
    padding-right: 8rem; /* Optional: Extra Padding */
  }

  /* Scrollbars optional ausblenden
  .wrapper::-webkit-scrollbar {
    display: none;
  }*/
  .wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  section {
    min-width: 100vw; /* Jedes Section-Element nimmt 100% der Fensterbreite ein */
    align-items: center;
  }


  .grid-special {
    margin-top: 4vh;
    height: 80vh;
    display: grid;
    grid-template-columns: 3fr 5fr;
    grid-template-rows: 1fr 8fr;
    grid-template-areas:
                    "bild head"
                    "bild txt";
  }

  /* grid-zuordnung -------*/
  .picture {
    grid-area: bild;
  }

  .headline {
    grid-area: head;
  }

  .copytext {
    grid-area: txt;
  }


  *[class*="grid"] > img {
    max-height: 70vh; /* Beschränkt die maximale Höhe */
    width: auto; /* Beibehaltung des Seitenverhältnisses */
    padding-left: 18%;
  }

  .headline {

    display: block;
    text-align: right; /* Zentrierung innerhalb der Section */
  }


  #art1 .headline h1 {

    color: #d19e38;
    margin-top: 80px;
    text-align: center;

  }

  #art2 .headline h2,
  #art3 .headline h2,
  #art4 .headline h2,
  #art5 .headline h2 {
    color: #6f1e81;
    margin-bottom: 36px;
  }


  .start-logo img {
    margin-left: auto;
    width: auto;
    max-height: 46vh;
    margin-bottom: 40px;
    margin-right: 40px;

  }

  .copytext {
    font-family: "neuzeit-grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6rem;
    color: #6f1e81;
    text-align: right;
    padding-left: 80px;

  }

  #art6, #art7, #art8 {
    display: block;
    position: static; /* Standardposition: Bleibt im Fluss */
    margin-top: 1rem;
    clear: both;      /* Um sicherzustellen, dass sie nicht von anderen umflossenen Inhalten betroffen sind */
    padding-left: 8rem;
  }

  #art9 {
    position: static;
    clear: both;
    padding-left: 8rem;
  }
  .schedule {
    display: block;
    position: static; /* Sichergestellt, dass Inhalte im Fluss bleiben */
    margin-top: 1rem; /* Zusätzlicher Abstand, falls gewünscht */
    clear: both;      /* Falls darüber etwas floatet */
    min-width: 100vw; /* Jedes Section-Element nimmt 100% der Fensterbreite ein */
    align-items: center;
    scroll-snap-align: start; /* Sections rasten am Anfang ein */
    box-sizing: border-box; /* Padding berücksichtigen */
    padding-right: 8rem; /* Optional: Extra Padding */
  }

  .schedule img {
    margin-bottom: 20px;
    width: 100vw;
    height: auto;

  }

  #art8 {
    margin-bottom: 40px;
  }

  .map_grid {
    margin-top: 100px;
    height: 80vh;
    width: auto;
    margin-right: 0;
    display: grid;
    grid-template-columns: 6fr 3fr;
    grid-template-rows: 2fr;
    grid-template-areas:
                    "karte adr"
                    "karte adr";
  }

  /* grid-zuordnung -------*/
  .adresse_hhh {
    grid-area: adr;
  }

  .styled-iframe {
    grid-area: karte;
  }


  .map {
    max-width: 90vw;         /* Nimmt 100% der verfügbaren Breite des Elterncontainers ein */
    align-items: center;
    scroll-snap-align: start; /* Sections rasten am Anfang ein */
    box-sizing: border-box; /* Padding berücksichtigen */
    padding-bottom: 1000px;


  }
  .adresse_hhh {
    display: block;
    color: #6f1e81;
    text-align: right;
    line-height: 1.6rem;
    padding: 100px 0 2rem 60px;
  }

  .adresse_hhh img {
    display: block;
    width: 15vw; /* Optional: Sie können die Breite anpassen oder entfernen */
    height: auto;
    margin-top: 40px;
    margin-bottom: 20px;
    margin-left: auto;
  }

  .styled-iframe {
    width: 100%;
    height: 500px;
    margin-top: 100px;
    border: 4px solid #d19e38; /* Farbiger Rahmen */
    border-radius: 8px; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Schatten */

  }

  /*-----footer*/
  #footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to left, rgba(209, 158, 56, 0.6), rgba(209, 158, 56, 0));

    z-index: 150;
    height: 80px;
    transition: 0.3s;
  }

  #footer p, #footer a {
    display: block;
    color: #6f1e81;
    font: 1.2rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    padding-left: 20px;
  }


  .trans-linie-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 200px;
    right: 0;
    height: 4px; /* Höhe der "Border" */
    background: linear-gradient(to left, rgb(111, 30, 129), rgba(209, 158, 56, 0)); /* Verlauf */
  }

  #footer a {
    transform: translateY(-0.2rem);
  }

  #footer a:before {
    content: "";
    display: block;
    background-color: #6f1e81;
    width: 0;
    transform: skewX(-25deg);
    height: 2px;
    transition: 0.4s;
    visibility: hidden;
  }

  #footer a:hover:before {
    visibility: visible;
    width: 100%;
    transform: skewX(-25deg);

  }

  #footer a:hover, #topnavigation a .akt {
    color: #bd810a;
  }

  #footer .social a:hover:before {
    visibility: hidden;
  }

  .superspalter .social svg{
    display: block;
    color: #6f1e81;
    width: 2rem;
    height: auto;
    padding-left: 10px;

  }

  .superspalter {
    position: relative;
    display: flex;
    margin-right: 8rem;
    margin-top: 25px;
    justify-content: flex-end;
  }


  /* overlay --------------*/
  .overlay {
    display: none; /* Start mit unsichtbarem Overlay */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(66, 36, 74, 0.8);
    justify-content: center;
    align-items: center;
  }

  body.overlay-open #topnavigation,
  body.overlay-open #topheader,
  body.overlay-open .wrapper,
  body.overlay-open #footer {
    z-index: 0;
    pointer-events: none; /* Verhindert Interaktionen mit diesen Bereichen */
  }

  body.overlay-open .overlay {
    pointer-events: auto; /* Erlaubt Interaktionen nur mit dem Overlay */
  }


  .overlay-content h1 {
    font: 1.6rem "neuzeit-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    line-height: 1.6rem;
  }

  .overlay-content h2 {
    font: 1.2rem "neuzeit-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    line-height: 1.6rem;
  }

  .overlay-content h3 {
    font: 1rem "neuzeit-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }

  .overlay-content h4 {
    font: 1rem "neuzeit-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
  }

  .overlay-content h5 {
    font: 1rem "neuzeit-grotesk", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 0.5rem;
  }

  .overlay-content strong {
    font-family: "neuzeit-grotesk", sans-serif;
    font-weight: 400;
  }

  .overlay-content > p, ul {
    font: 0.9rem "neuzeit-grotesk", sans-serif;
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }

  .overlay-content {
    background-color: rgba(43, 43, 37, 0.4);
    color: #eee6c8;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 2rem;
    border-radius: 3px;
    position: relative;

    width: 70%;
    max-height: 70%;
    overflow: auto;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font: 1.6rem Exo;
    font-size: 36px;
    z-index: 203;
    cursor: pointer;
  }

  .index-link {
    color: #d19e38;
    text-decoration: none;
  }

  .index li {
    list-style: none;
  }

  .overlay-content > * li {
    list-style: none;
  }

  .textbox a[href] {
    color: #d19e38;
    text-decoration: none;
  }

  .overlay-content a[href] {
    color: #d19e38;
    text-decoration: none;
  }

  /*Kontaktform*/
  .kontaktformular > *{
    width: 100vw;
    height: auto;
    padding-right: 8rem;

    text-align: right;
  }

  .kontaktformular h3 {
    color: #6f1e81;
    font: 1.4rem "neuzeit-grotesk";
    font-weight: 400;
    font-style: normal;
    padding-bottom: 26px;
  }

  form {
    width: 80vw;
    height: auto;
    text-align: right;
  }

  #contactForm p {
    display: block;
    color: #6f1e81;
    font: 1rem "neuzeit-grotesk";
    font-weight: 300;
    font-style: normal;
    text-align: right;
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  #contactForm label {
    width: 50vw;
    display: inline-block;
    vertical-align: bottom;
    text-align: right;
    padding-bottom: 0.4rem;
  }

  input, textarea {
    width: 50vw;
    background: none;
    border: none;
    border-bottom: 1px solid rgb(111, 30, 129, 0.8);
    outline: none;
    font: 1.2rem "neuzeit-grotesk";
    color: #6f1e81;
    text-align: right;
    padding: 0.3rem;
    transition: 0.2s;
  }

  input:hover {
    background-color: rgb(209, 158, 56, 0.1);
    box-shadow: 0 -2px 2px 2px rgb(209, 158, 56, 0.2);
  }

  textarea:hover {
    background-color: rgb(209, 158, 56, 0.1);
    box-shadow: 0 -2px 2px 2px rgb(209, 158, 56, 0.2);
  }

  input[type="checkbox"], input[type="radio"] {
    width: auto;
    accent-color: #d19e38;
  }

  input:focus, textarea:focus {
    background: rgb(209, 158, 56, 0.2);
  }

  button[type="submit"] {
    color: #6f1e81;
    background: rgb(111, 30, 129, 0.2);
    font: 1.2rem "neuzeit-grotesk";
    font-weight: 500;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgb(111, 30, 129);
    width: 300px;
    margin: 1rem auto;
    padding: 10px 40px;
  }

 button[type="submit"]:hover {
    background: rgb(209, 158, 56, 0.6);
  }

  .gesendet fieldset {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    /* %-Angaben in translate beziehen sich auf das Element selbst! */
    background: rgba(209, 158, 56, 0.3);
    color: #6f1e81;
    font-size: 1rem;
    padding: 2%;
  }

  .gesendet div {
    width: 600px;
    height: 200px;
    text-align: center;
    color: #6f1e81;
    font-size: 1rem;

  }
  .gesendet h2 {
    font-size: 2rem;
    padding-top: 20px;
  }

  /* reCAPTCHA-Badge verstecken – nur zusammen mit Hinweistext verwenden! */
  .grecaptcha-badge {
    visibility: hidden; /* oder: display: none; */
  }


}

