/*VARIABLEN*/
:root{
    --global-color-hintergrund: #f5dfbd;
    --global-color-rot: #651407;
    --global-color-Schrift: #300101;
    --global-box-Schrift-T: #e4cfaf; 
    --global-box-Schrift-LK: #ffe8c4;
    --global-box-Schrift-S: #fff5e4; 
    --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: 13vh 0;
    padding-bottom: 20vh;
}
span.hervorgehoben {
    font-family: Barlow-SemiCondensed-Bold-Text;
    color: var(--global-color-Schrift);
}
::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);
}
h1{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Ephesis-Regular-Headline;
    color: var(--global-color-rot);
    font-size: 5rem;
    font-weight: normal;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    padding-bottom: 0;
    position: relative;
    z-index: 11;
}
h2{
    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-bottom: 1rem;
    margin-top: 0;
    text-align: left;
    z-index: 11;
}
p{
    font-family: Arial, Helvetica, sans-serif;
    font-family: Barlow-SemiCondensed-Regular-Text;
    font-size: 1.2rem;
    color: var(--global-color-Schrift);
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: left;
    z-index: 11;
    /*border: 2px solid var(--global-color-rot);*/
}
#START .pgroß{
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

/*BUTTONS*/
/*Allgemeines Aussehen der Buttons*/
.Button-rot, .Button-transp, .Button-hell, .Button-helltransp, .Button-schief{
    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: 0;    
    text-align: center;
    position: relative; 
    text-decoration: none; 
    /*border: solid 2px violet;  */
}
/*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-helltransp::after, .Button-rot::before, .Button-transp::before, .Button-hell::before, .Button-helltransp::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;
}
/*Bewegung große Buttons rot + hell beim Hovern*/
.Button-groß:hover::before, .buttonGroß:hover::before{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-6deg);
}
.Button-groß:hover::after, .buttonGroß:hover::after{
    transform: translateY(-50%) translateX(-50%) scale(1) rotate(-3deg);
}
/*Header-Buttons & Header-Buttoncontainer*/
.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;
}
/*Kleinen Angebots-Button in hell ausschalten*/
.Button-hell.Button-klein{
    display: none;
}
/*Kleinen Angebots-Button in rot ausschalten*/
.Button-rot.ButtonKlein{
    display: flex;
}

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

/*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;
    box-shadow: var(--global-color-shadow) 0px 5px 20px;
    /*transition: box-shadow 0.5s ease;*/
}
.InhaltHeader{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;    
    margin: 0;
    /*border: 2px solid var(--global-color-rot);*/
}
header img{
    height: 5.5rem;
    max-height: 5.5rem;
    /*border: 1px solid green;*/
    margin: 0;
}

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

/*START*/
/*Allgemeine Angaben zur Anordnung der Elemente*/
#START{
    width: 100%;
    background-image: url(img/Hintergrundbild_Angebote_Kontrast.avif), url(img/Hintergrundbild.avif); /* Zwei Hintergrundbilder */
    background-position: top left, bottom right; /* Positionierung der Bilder */
    background-repeat: no-repeat, no-repeat; /* Verhindert Wiederholungen */
    background-size: 50% 100%, 50% 100%;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    /*border: solid 2px greenyellow;    */
    /*flex-direction: column-reverse;*/ /*sorgt dafür, dass das Bild in mobiler Version über der Schrift steht*/
}
.Headline{
    background-color: var(--global-color-hintergrund);
    border-radius: 1.5em;
    padding: 2rem 4rem;
    box-shadow: var(--global-color-Schrift)  0px 0px 50px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}
.BereichTeilBildschirm{
    width: var(--global-Inhaltsbreite_relativ);
    max-width: var(--global-Inhaltsbreite_absolut);
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    margin-top: 8rem;
    /*border: 2px solid gold;*/
}
.TeilBildschirm{
    width: 35%;
    max-width: var(--global-Inhaltsbreite_absolut);
    height: 100%;
    /*border: solid 2px violet;*/
}

/*Einstellungen Schriften*/
#START h2{
    text-shadow: 0px 0px 0px var(--global-color-shadow);
    text-transform: none;
    /*border: solid 2px violet;*/
} 
.Coachingseite h2{
    color: var(--global-color-hintergrund);
}
.BereichTeilBildschirm img .Bild{
    height: 30rem;
    width: 30rem;
    position: absolute;
    left: 45rem;
    top: 22rem; 
}
.Untertitel{
    color: var(--global-color-Schrift);
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    position: relative;
}
.Coachingseite p{
    color: var(--global-color-hintergrund);
    text-align: left;
}
/*.Coachingseite{
    margin-right: 15rem;
    /*border: solid 2px greenyellow;
}
.Buchseite {
    justify-content: left;
    margin-left: 15rem;*/
    /*border: solid 2px violet;
}*/
.Buttonteilbildschirme{
    justify-content: left;
    display: flex;
    /*border: solid 2px greenyellow;*/
}
.Liste{
    margin-left: -0.9rem;
}
.Listehell{
    margin-left: -0.9rem;
}
.Liste p{
    color: var(--global-color-Schrift);
    position: relative;
    margin-left: 3rem;
    margin-bottom: 1.5rem;
}
.Listehell p{
    position: relative;
    margin-left: 3rem;
    margin-bottom: 1.5rem;
}
.Listehell 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;
    /*border: solid 2px violet;*/
}
.Liste 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;*/
}
.Headline::before{
    content: "";
    background-image: url(img/Pfeilrot.png);
    height: 8rem;
    width: 6.4rem;
    position: absolute;
    top: 100%;
    right: 10%;
    rotate: 180deg;
    scale: -1 1;
    background-repeat: no-repeat;
    background-size: cover;   
}
.Headline::after{
    content: "";
    background-image: url(img/Pfeilhell.png);
    height: 8rem;
    width: 6.4rem;
    position: absolute;
    top: 100%;
    left: 10%;
    rotate: -180deg;
    background-repeat: no-repeat;
    background-size: cover;   
}
.Bildpositionierer{
    position: relative;
}
.Bildpositionierer::after{
    content: "";
    background-image: url(img/Profilbildschlicht.png);
    height: 30rem;
    width: 30rem;
    position: absolute;
    top: 4rem;    
    left: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateX(-50%);
}
.Bildpositionierer::before{
    content: "";
    height: 21.5rem;
    width: 21.562rem;
    position: absolute;
    top: 8.2rem;    
    left: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1.1em;
    background-color: var(--global-color-shadow);
    box-shadow: var(--global-color-Schrift)  0px 0px 50px;
    transform: translateX(-50%);
}


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

#ZweiterStart{
    display: none;
}

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

/*FOOTER*/
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /*border: solid 10px;
    border-image-source: url(img/Hintergrundbild.png);
    border-image-slice: 30;
    border-image-width: 20px;
    border-image-repeat: no-repeat;
    border-image-outset: 5px;
    border-style: solid;
    border-color: transparent;
    border-width: 20px;
    border-width: 5px;*/
    background-image: url(img/Hintergrundbild_About_eins.avif);
    background-color: var(--global-color-rot);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    box-shadow: var(--global-color-Schrift) 0px -5px 20px;
    z-index: 90;
    /*border: 2px solid yellow;*/
}
.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;
    /*border: 2px solid rosybrown;*/
}
.Link_Text{
    display: flex;
    margin-bottom: 2.5em;    
    /*border: 2px solid var(--global-color-hintergrund);*/
}
.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;
    /*border: 2px solid orange;*/
}
.Icons_Footer a{
    margin-right: 2.5em;
    /*border: 3px solid violet;*/
}
.Icon_Social{
    height: 2.2rem;
    /*border: 2px solid green;*/
}
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;
    /*border: 2px solid blue;*/
}