/*VARIABLEN*/
:root{
    --global-color-hintergrund: #f5dfbd;
    --global-color-rot: #651407;
    --global-color-Schrift: #300101;
    --global-box-Schrift-T: #e4cfaf;
    --global-color-shadow: rgba(48, 1, 1, 0.5);
    --global-Inhaltsbreite_relativ: 80vw;
    --global-Inhaltsbreite_absolut: 1750px;

}
@font-face{
    font-family: Barlow-SemiCondensed-Regular-Text;
    src: url(Fonts/BarlowSemiCondensed-Regular.ttf);
}
@font-face{
    font-family: Barlow-SemiCondensed-Bold-Text;
    src: url(Fonts/BarlowSemiCondensed-Bold.ttf);
}
@font-face{
    font-family: Barlow-SemiCondensed-Bolditalic-Text;
    src: url(Fonts/BarlowSemiCondensed-BoldItalic.ttf);
}
@font-face{
    font-family: Barlow-SemiCondensed-Italic-Text;
    src: url(Fonts/BarlowSemiCondensed-Italic.ttf);
}
@font-face{
    font-family: Ephesis-Regular-Headline;
    src: url(Fonts/Ephesis-Regular.ttf);
}

/*---------------------------------------------------------------------------------*/

/*ALLGEMEINE INFOS & VORGABEN + HINTERGRUND*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    background-image: url(img/Hintergrundbild.avif); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}
section{
    padding: 15rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
::selection {
  background-color: var(--global-color-Schrift); /* Hintergrundfarbe */
  color: var(--global-color-hintergrund); /* Textfarbe */
}

::-moz-selection {
  background-color: var(--global-color-Schrift);
  color: var(--global-color-hintergrund);
}
span.hervorgehoben {
    font-family: Barlow-SemiCondensed-Bold-Text;
    color: var(--global-color-Schrift);
}
strong{
    font-family: Barlow-SemiCondensed-Bold-Text;
    color: var(--global-color-Schrift);
    font-weight: normal;
}
.Inhaltsbreite{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    flex-direction: column;
    justify-content: left;
    align-items: start;
    display: flex;
    position: relative;
}
h1{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Ephesis-Regular-Headline;
    color: var(--global-color-rot);
    font-size: 4rem;
    font-weight: normal;
    line-height: 1.15;
}
h2{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Ephesis-Regular-Headline;
    color: var(--global-color-rot);
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hell{
    color: var(--global-color-hintergrund);
}
h3{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Bold-Text;
    color: var(--global-color-rot);
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.15;
    margin: 1rem 1rem;
    padding: 0;
    text-transform: uppercase;
    width: 90%;
}
h4{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Ephesis-Regular-Headline;
    color: var(--global-color-rot);
    font-size: 3rem;
    font-weight: normal;
    line-height: 1.15;
    margin-top: 4rem;
    margin-bottom: 1rem;
}
p{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Regular-Text;
    color: var(--global-color-Schrift);
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.Untertitel{
    font-size: 1.6rem;
}
p .wer{
    text-decoration: uppercase;
}
label {
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Regular-Text;
    color: var(--global-color-Schrift);
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.Fragen{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Regular-Text;
    color: var(--global-color-Schrift);
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.Liste p{
    position: relative;
    margin-left: 2.5rem;
}
.Liste p::before{
    content: "";
    background-image: url(img/Haken\ hell\ klein.png);
    height: 1.75rem;
    width: 1.75rem;
    position: absolute;
    top: -0.2rem;
    left: -2.25rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.Aufgeklappt .Liste p::before, .Liste_rot p::before{
    content: "";
    background-image: url(img/Haken.png);
    height: 1.75rem;
    width: 1.75rem;
    position: absolute;
    top: -0.2rem;
    left: -2.25rem;
    background-repeat: no-repeat;
    background-size: cover;
    /*border: solid 2px violet;*/
}
.Bild_Text{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}
.TeilbildschirmText{
    width: 80%;
    height: auto;
    padding-left: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.TeilbildschirmBild{
    align-items: end;
    display: flex;
}
.TeilbildschirmBild img{
    width: 28rem;
    height: 28rem;
    box-shadow: var(--global-color-Schrift) 0px 0px 50px;
    border-radius: 3em;
    margin: 2rem 0;
}
.Text_links{
    padding-left: 0;
    padding-right: 6rem;
}
.Banner{
    width: 100%;
    height: auto;
    min-height: 10rem;
    display: block;
}
#WASWENN{
    align-items: center;
    justify-content: center;
    padding: 0;
}
.feder{
    width: 20rem;
    margin-top: 2rem;
}
#WASWENN .Inhaltsbreite img{
    width: 20rem;
}
#WASWENN .Inhaltsbreite{
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
#QR_START {
    align-items: center;
    justify-content: center;
    padding: 0;
}
#QR_START .Inhaltsbreite{
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.QR-Seite{
    display: flex;
    flex-direction: row;
    width: 80%;
    align-items: center;
    justify-content: center;
}
.Smartphone{
    display: none;
}
.Tablet {
    display: flex;
}
#QR_START .Bild{
    width: 24rem;
    height: auto;
    margin-left: 2rem;
}
#QR_START .Text_links{
    padding-left: 0;
    padding-right: 2rem;
}
#QR_COACH .TeilbildschirmText{
    padding-right: 0;
    padding-left: 2rem;
}
#QR_COACH .Bild{
    width: 24rem;
    height: auto;
    margin-right: 2rem;
}
#QR_COACH .schriftrechts{
    text-align: left;
    margin-bottom: 2rem;
}
#WASWENN .Liste{
    width: 80%;
}
#WASWENN h2{
    text-align: center;
    max-width: 70%;
    margin-top: 2rem;
}
.Quadrat{
    display: none;
}
/*---------------------------------------------------------------------------------*/

/*HEADER*/
header{
    width: 100%;
    height: 5.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background-image: url(img/Hintergrundbild.avif);
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--global-color-shadow) 0px 5px 20px;
}
.InhaltHeader{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header img{
    height: 5rem;
    max-height: 5rem;
    margin: 0;
}

/*---------------------------------------------------------------------------------*/
#QR_COACH{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/Hintergrundbild_Angebote_Kontrast.avif); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 10rem;
}
.Abschluss{
    margin: 5rem 0;
    margin-top: 5rem;
}
#QR_COACH h2{
    margin-bottom: 4rem;
    text-align: center;
}
#QR_COACH .Inhaltsbreite{
    justify-content: center;
    align-items: center;
}
#QR_COACH .Verzierung{
    width: 15rem;
    rotate: 220deg;
    position: relative;
    right: 5rem;
    margin-bottom: 1rem;
}
#QR_COACH .TeilbildschirmBild img{
    height: auto;
    width: 24rem;
}
#QR_COACH .Bild_Text{
    flex-direction: row;
    width: 100%;
}


/*START*/
#START h2{
    margin-bottom: 4rem;
    text-align: center;
}
#START{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/Hintergrundbild_Angebote_Kontrast.avif); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 15rem;
}
#START .Inhaltsbreite{
    justify-content: center;
    align-items: center;
}
#START .Verzierung{
    width: 15rem;
    rotate: 220deg;
    position: relative;
    right: 5rem;
    margin-bottom: 1rem;
}
#START .TeilbildschirmBild img{
    height: auto;
    width: 24rem;
}
.Button_Pfeil img{
    height: 5rem;
    max-width: 7rem;
    object-fit: contain;  
    rotate: -150deg;
    transform: scaleX(-1);
    margin-left: 20%;
    margin-bottom: 1rem;
}
.Button_Pfeil{
    display: flex;
    flex-direction: column-reverse;
    justify-content: left;
}
.Handy{
    display: none;
    align-items: center;
    justify-content: center;
}
.H_eins_Bereich{
    position: absolute;
    bottom: 0;
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    border-radius: 3em;
    background-color: var(--global-color-hintergrund);
    box-shadow: var(--global-color-Schrift) 0px 0px 50px;
    transform: translateY(50%);
    padding: 2rem 3rem;
    z-index: 10;
    text-align: center;
}
.H_Klein{
    display: none;
}
.H_eins_Bereich::before{
    content: "";
    background-image: url(img/Pfeilrot.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 9rem;
    width: 9rem;
    position: absolute;
    bottom: -12rem;
    right: 35%;
    /*transform: translateY(-500%) translateX(100%);*/
    rotate: -120deg;
    scale: -1 1;
}
/*.H_eins_Bereich::after{
    content: "";
    background-image: url(img/Pfeilhell.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 9rem;
    width: 9rem;
    position: absolute;
    top: -10rem;
    left: 35%;*/
    /*transform: translateY(-10%) translateX(-40%);
    rotate: -200deg; 
}*/

/*---------------------------------------------------------------------------------*/
#KursEinsbisDrei .Inhaltsbreite{
    padding-top: 25rem;
    padding-bottom: 10rem;
}
#KursEinsbisDrei{
    padding: 0;
}
/*.Kurse{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    margin-bottom: 2rem;
    width: 100%;
    max-width: var(--global-Inhaltsbreite_absolut);
    place-items: center;
}*/
.flip-card h2{
    margin-bottom: -1rem;
    margin-top: 2rem;
    text-align: center;
}
#KursEinsbisDrei h3{
    margin: 0;
    margin-bottom: 2rem;
    text-transform: none;
    width: 80%;
}
/* Grid für gleichmäßige Kacheln */
.Kurse {
  display: flex;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr)); /* variabel anpassbar */
  gap: 1rem;
  width: 100%;
  max-width: var(--global-Inhaltsbreite_absolut);
  justify-content: center; /* Grid insgesamt horizontal zentrieren */
  justify-items: center;   /* einzelne Kacheln in ihren Spalten zentrieren */
  position: relative;
}

/* Flip-Card Basis */
.flip-card {
  perspective: 1000px;
  width: 100%;
  aspect-ratio: 2 / 3;
  position: relative;
  max-width: 20rem; /* Kachelgröße variabel */
  height: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity var(--fade-duration) var(--stagger-ease),
              transform var(--fade-duration) var(--stagger-ease);
  will-change: opacity, transform;
}
.flip-card.fade-out {
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
}

/* Rotierendes Inneres */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.Shadow{
  width: 100%; 
  box-shadow: var(--global-color-shadow) 0px 5px 20px;
}
/* Vorder- und Rückseite */
.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

/* Vorderseite */
.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Originalformat */
  display: block;
}

/* Rückseite */
.flip-card-back {
  transform: rotateY(180deg);
}

.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Text über Rückseiten-Bild */
.flip-card-back .back-text {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 2.5rem;
  font-size: 0.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.headlineFlipcard{
    font-size: 1.5rem;
    line-height: 1;
}
.back-text a{
 margin: 0;
}
/*---------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------*/

/*DEINCOACHING*/
#DEINCOACHING{
    padding-top: 22rem;
}
#DEINCOACHING .schraegerSchatten{
    box-shadow: none;
}

/*---------------------------------------------------------------------------------*/

/*ANGEBOT*/
#ANGEBOT{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/Korrekturzettel\ rot.png); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.Aufklapp_Bereich{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*---------------------------------------------------------------------------------*/
#KURSVIER .Inhaltsbreite{
    justify-content: center;
    align-items: center;
}
#KURSVIER h2{
    text-align: center;
}
#KURSVIER .Untertitel{
    text-align: center;
    margin-bottom: 2.5rem;
}
#KURSVIER{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/Buchmagie\ 5_3.avif); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 4rem;
    margin-bottom: 0;
}
#KURSVIER img{
    width: 30rem;
    height: auto;
    margin-top: 2rem;
    left: 20%;
}
/*---------------------------------------------------------------------------------*/


/*---------------------------------------------------------------------------------*/

/*Details-Bereich*/

/*Pfeil zum Aufklappen Angebots- & FAQ-Bereich*/
#ANGEBOT .aufklapp::before{
    content: "";
    width: 1.5rem;
    height: 5px;
    background-color: var(--global-color-rot);
    transform: translateY(-1300%) rotate(225deg);
    transform-origin: 0% 0%;
    border-radius: 10em;
    margin-left: calc(var(--global-Inhaltsbreite_relativ) / 2 + 10em);
    position: absolute; 
}
#ANGEBOT .aufklapp::after{
    content: "";
    width: 1.5rem;
    height: 5px;
    background-color: var(--global-color-rot);
    transform: translateY(-1400%) rotate(-45deg);
    transform-origin: 0% 100%;
    border-radius: 10em;
    margin-left: calc(var(--global-Inhaltsbreite_relativ) / 2 + 10em);
    position: absolute;
}
.aufklapp::before{
    content: "";
    width: 1.5rem;
    height: 5px;
    background-color: var(--global-color-rot);
    transform: translateY(-400%) rotate(225deg);
    transform-origin: 0% 0%;
    border-radius: 10em;
    margin-left: calc(var(--global-Inhaltsbreite_relativ) / 2 + 11em);
    position: absolute; 
}
.aufklapp::after{
    content: "";
    width: 1.5rem;
    height: 5px;
    background-color: var(--global-color-rot);
    transform: translateY(-500%) rotate(-45deg);
    transform-origin: 0% 100%;
    border-radius: 10em;
    margin-left: calc(var(--global-Inhaltsbreite_relativ) / 2 + 11em);
    position: absolute;
}


/*Aufklappbereich (geschlossen)*/
details{
    margin: 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
summary{
    width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 15em);
    max-width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 15em);
    height: 6rem;
    background-color: var(--global-color-hintergrund);
    border-radius: 1.5em;
    padding: 1em;    
    position: relative;
    z-index: 5;    
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    display: flex;
}
#ANGEBOT summary{
    width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 15em);
    max-width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 15em);
    height: 11rem;
    background-color: var(--global-color-hintergrund);
    border-radius: 1.5em;
    padding: 1em;
    padding-left: 2em;     
    position: relative;
    z-index: 5;    
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    display: flex;
}
#ANGEBOT .Button_Angebot {
    margin-bottom: 0;
}
#ANGEBOT h3{
    margin-top: 0;
}

/*Aufklappbereich (offen)*/
.Aufgeklappt{
    background-color: var(--global-color-hintergrund);
    opacity: 0.9;
    padding: 3em;
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-bottom: -3rem;
    border-radius: 1.5em;
    position: relative;
    z-index: 4;
    top: -3rem;
    width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 15em);
    max-width: calc(var(--global-Inhaltsbreite_relativ) / 2 + 15em);
    align-items: start;
    justify-content: center;
    flex-direction: column;
    display: flex;
    box-shadow: var(--global-color-shadow) -10px 10px 20px;
}
.Preis{
    padding-bottom: 1rem;
}
#ANGEBOT .Wer{
    font-family: Barlow-SemiCondensed-BoldItalic-Text;
}
.Antworten p{
    hyphens: auto;
    inline-size: 90%;
    overflow-wrap: break-word;
}

/*---------------------------------------------------------------------------------*/

/*ABOUTME*/
#ABOUTME h2{
    margin-bottom: 4rem;
}
.Bildrechteck{
    display: none;
}
.Link{
    color: var(--global-color-rot);
    font-family: Barlow-SemiCondensed-BoldItalic-Text;
    text-decoration: underline;
    margin: 0;
}
#ABOUTME .Inhaltsbreite{
    display: flex;
    align-items: center;
}
.Abstand{
    margin-top: 4rem;
}
.p_Button{
    margin: 2rem 0;
}
.p_Button a{
    margin-left: 2rem;
}
.Bild_im_Text{
    display: flex;
    flex-direction: column;
}
#ABOUTME .Bildbreit{
    height: 28rem;
    width: auto;
    box-shadow: var(--global-color-Schrift) 0px 0px 50px;
    border-radius: 3.2em;
    margin: 2rem 0;
}
.Bildbreit_Position{
    display: flex;
    align-items: center;
    justify-content: center;
}

/*---------------------------------------------------------------------------------*/

/*FAQ*/
#FAQ{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/Hintergrundbild_About_zwei2.avif); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#FAQ h2{
    margin-bottom: 4rem;
}
#FAQ .Inhaltsbreite{
    align-items: center;
}

/*---------------------------------------------------------------------------------*/

/*headlineSection*/
#headlineSection{
    padding: 10rem 0;
}
#headlineSection h2{
    margin-top: 2rem;
    font-size: 2.75rem;
}

/*CHECKBOXEN*/
.checkboxes p{
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.checkboxes{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    margin-bottom: 3em;
}
.Auswahl_Checkbox {
    display: flex;
    flex-direction: column;
    align-items: start;
}
form div{
    margin: 0;
}
.checkboxes label{
    margin-left: 0;
    margin-right: 2em;
    margin-bottom: 0.5em;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: start;
    cursor: pointer;
    font-size: 1.2rem;
    width: auto;
    gap: 0.25rem;
}
form .checkboxes span{
    position: relative;
    height: 1.25em;
    width: 1.25em;
    border-radius: 1em;
    flex-shrink: 0;
    border: 2px solid var(--global-color-rot);
}
form .checkboxes span::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 1.5em;
    width: 1.5em;
    transform: translateY(calc(-50% - .4em));
    background-image: url(img/Haken.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
}
input[type="checkbox"]{
    opacity: 0;
    width: .5em;
}
input[type="checkbox"]:checked ~ span::before{
    opacity: 1;
}
input[type="checkbox"]:hover ~ span::before{
    opacity: 1;

/*CHECKBOXEN MIT NUR EINER AUSWAHL-MÖGLICHKEIT*/
}
input[type="radio"]{
    opacity: 0;
    width: .5em;
}
input[type="radio"]:checked ~ span::before{
    opacity: 1;
}
input[type="radio"]:hover ~ span::before{
    opacity: 1;
}


/*BEREICH MIT AUSFÜLLBAREN TEXTFELDERN*/
.textfeld, .checkboxes, .Info, .email{
    align-items: start;
    margin-bottom: 3em;
}
.eins{
    margin-top: 0.5rem;
}
input[type=text] {
    width: 100%;
    margin-top: 0.5em;
    padding: 0.5em 1em;
    border: 2px solid var(--global-color-rot);
    color: var(--global-color-Schrift);
    border-radius: 0.5em;
    background-color: transparent;
    font-size: 1.2rem;
    font-family: Barlow-SemiCondensed-Regular-Text;
    outline: none;
    word-break: break-all;
}
textarea {
    width: 100%;
    height: 10rem;
    margin-top: 0.5em;
    padding: 0.5em 1em;
    border: 2px solid var(--global-color-rot);
    color: var(--global-color-Schrift);
    border-radius: 0.5em;
    background-color: transparent;
    font-size: 1.2rem;
    font-family: Barlow-SemiCondensed-Regular-Text;
    outline: none;
    word-break: break-all;
    resize: none;
}
.textfeld, .Info{
    font-size: 1.5rem;
}

/*BEREICH MIT DEM BUTTON ZUM ABSENDEN*/
.Absenden{
    margin-top: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
    /*border: 2px solid var(--global-color-Schrift);*/
}
#headlineSection .Button-rot{
    margin: auto;
}
.Mittig{
    text-align: center;
}

/*---------------------------------------------------------------------------------*/

/*FOOTER*/
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url(img/Hintergrundbild_About_eins.avif); 
    background-color: var(--global-color-hintergrund);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.InhaltFooter{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);    
    margin-bottom: 10rem;
    margin-top: 10rem;
}
.LinksFooter{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.Link_Text{
    display: flex;
    margin-bottom: 2.5em;
}
.Link_Text a{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Regular-Text;
    color: var(--global-color-hintergrund);
    font-size: 1.5rem;
    text-align: left;
    justify-content: center;
    display: flex;
    margin-right: 1.5em;
}
.Icons_Footer a{
    margin-right: 2.5em;
}
.Icon_Social{
    height: 2.2rem;
}
footer p{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    color: var(--global-color-hintergrund);
    margin-top: 1.5em;
    font-size: 1rem;
}

/*---------------------------------------------------------------------------------*/

/*BUTTONS*/
/*Allgemeines Aussehen der Buttons*/
.Button-rot, .Button-transp, .Button-hell{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Bold-Text;
    font-size: 1.2rem;
    border: 2px solid var(--global-color-rot);
    border-radius: 3em;
    padding: 0.5em 1.75em;
    margin: auto; 
    margin-left: 0; 
    margin-top: 0rem; 
    text-align: center;
    position: relative; 
    text-decoration: none;
}
header .Button-rot, header .Button-transp, header .Button-hell{
    margin-left: auto;
    margin-top: auto;
}
/*Farbunterschiede Buttons*/
.Button-rot{
    background-color: var(--global-color-rot);
    color: var(--global-color-hintergrund);
}
.Button-transp{
    color: var(--global-color-rot);
    transition: 1s background-color 0.5s;
}
.Button-hell{
    border: 2px solid var(--global-color-hintergrund);
    background-color: var(--global-color-hintergrund);
    color: var(--global-color-rot);
}
/*Hintergrundelement 1 + 2 der Buttons fürs Hovern erstellt*/
.Button-rot::after, .Button-transp::after, .Button-hell::after, .Button-rot::before, .Button-transp::before, .Button-hell::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    border-radius: inherit;
    border: inherit;
    border-color: #84412e;
    background-color: #84412e;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.9);
    opacity: 0;   
}
/*extra Farbe für Hintergrundelemente*/
.Button-transp::after, .Button-hell::after{
    background-color: inherit;
}
.Button-hell::before{
    border-color: inherit;
}
.Button-hell::after{
    background-color: var(--global-box-Schrift-T);
    border-color: var(--global-box-Schrift-T);
}
.Button-rot::before, .Button-transp::before, .Button-hell::before{
    background-color: inherit;
}
/*Bewegung Hintergrundelement 1 beim Hovern*/
.Button-rot:hover::after, .Button-transp:hover::after, .Button-hell:hover::after{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-7deg);
    transform-origin: 10% 50%;
    opacity: 1;
}
/*Bewegung Hintergrundelement 2 beim Hovern*/
.Button-rot:hover::before, .Button-transp:hover::before, .Button-hell:hover::before{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-14deg);
    transform-origin: 10% 50%;
    opacity: 0.5;
}
/*Farbe bei transperentem Button beim Hovern*/
.Button-transp:hover{
    background-color: var(--global-color-hintergrund);
    transition: 0s background-color 0s;
}
.buttonGroß:hover::before{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-6deg);
}
.buttonGroß:hover::after{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-3deg);
}
.buttonKlein{
    display: none;
}
header .ButtonContainer{
    display: none;
    width: 100%;
    height: 5rem;
    justify-content: space-between;
}
header .ButtonContainer a{
    margin: 0;
    width: auto;
    padding: 0.5em 1.75em;
}
.ButtonContainer_Text{
    margin: 0;
    display: flex;
    justify-content: left;
}
.ButtonContainer_Text .Button-transp{
    margin-right: 2.5rem;
}