/******************************************************************************
Global Styling
******************************************************************************/
@font-face {
    font-family:"Fira-Bold";
    src: url("../FiraSans-Bold.woff2") format("woff2");
}
@font-face {
    font-family:"Fira-Regular";
    src: url("../FiraSans-Regular.woff2") format("woff2");
}
@font-face {
    font-family:"Fira-Italic";
    src: url("../FiraSans-MediumItalic.woff2") format("woff2");
}
@font-face {
    font-family:"FiraMono-Medium";
    src: url("../FiraMono-Medium.woff2") format("woff2");
}
* {
    box-sizing: border-box;
}

header *, footer * {
    color: #fff;
}

html, body, header, nav {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
    font-family:"Fira-Bold";
}

p, ul, li, a {
    font:1em "Fira-Regular";
}

p.zitat {
    font-family:"Fira-Italic";
}

/******************************************************************************
header Styling
******************************************************************************/
header {
    display: flex;
    position: fixed;
    top: 0;
    z-index: 1;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    background-color: #ff00ff;
    box-shadow: 0 4px 6px #aaa, 0 6px 8px #ccc;
}

header h1 {
    font-size: 20px;
    padding-left: 20px;
    margin:0;
}

header h1 a {
    text-decoration: none;
}

header nav#topNav {
    align-self: flex-start;
    padding-right: 20px;
    padding-left: 12px;
}

header nav#topNav input#mainmenubtn { display: none;}

header nav#topNav label {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    /*margin: 14px auto 10px 0;*/
}

header nav#topNav label:hover {
   cursor: pointer;
}

header nav#topNav label span#hamburger {
    background: #fff;
    height: 2px;
    width: 20px;
    margin-left: 10px;
    position: relative;
}

header nav#topNav label span#hamburger::before, 
header nav#topNav label span#hamburger::after {
    background: #fff;
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
    transition: all .2s ease-out;
}

header nav#topNav label span#hamburger::before {
    top: -6px;
}

header nav#topNav label span#hamburger::after {
    top: 6px;
}

header nav#topNav label span#hamlabel {
    margin-left: 5px;
}


header nav#topNav ul {
    padding-left: 10px;
    display: flex;
}

header nav#topNav ul>li {
    list-style: none;    
}

header nav#topNav ul li a, header nav ul li details summary ul {
    font-size: 1em;
    font-weight: 900;
    text-decoration: none;
}

header nav#topNav>ul>li a.main {
    height: 100%;
}

header nav#topNav ul li a.activ {
    text-decoration-line: underline;
}

header nav#topNav ul li a:hover {
    text-decoration-line: underline;
}

header nav ul li details {
    margin: 0;
    width: 100%;
}

header nav ul li details summary {
    list-style-type: none;
    display: inline-flex;
    width: 100%;
}

header nav ul li details summary::after {
    content: "\1FBA6";
    margin-top: -5px;
    margin-right: 10px;
    margin-left: -25px;
}

header nav ul li details summary ul {
    cursor: pointer;
    width: 100%;
    padding: 0 80px 0 0;
}


header nav ul li details li.sub {
    background: #ff00ff;
    display: block;
    list-style: none;
    padding: 0;
}

header nav ul li details li.sub a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 5px 5px 5px 10px;;
}

/*******************************************************************************
main
*******************************************************************************/
section.slim {
    margin: 0 auto 30px auto;
    display: flex;
    flex-wrap: wrap;
}

section:first-of-type {
    margin-top: 50px;
}

section.slim * {
    width: 100%;
}

section.big {
    display: flex;
    justify-content: center;
    min-height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.big h2 {
    max-width: 96%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 30px 5% 30px 5%;
}

section.slim h2 {
    width: 100%;
}

section.slim h3 {
    width: 100%;
    margin: 0.5em auto 0 auto;
}

section.slim h4 {
    width: 100%;
    margin: 0.5em auto 0 auto;
}

p.zitat {
    padding-left: 5px;
    border-left: solid;
    border-color: #ff00ff;
}

section.slim img.full {
    width: 100%;
}

address {
    font-style: normal;
}
/*******************************************************************************
Willkommen content
*******************************************************************************/
section#willkommen {
    background-image: url('../image/mann_auf_esel.jpg');
}

section#willkommen span#round {
    position: relative;
    align-self: flex-start;
    border-radius: 50%;
    background: rgba(255, 0, 255, 1);
    margin: 5px 5px 0 -320px;
}

section#willkommen span#round span {
    font: 35px "FiraMono-Medium";
    color: #fff;
    box-sizing: border-box;
    position: absolute;
    width: 30px;
    text-align: center;
    transform-origin: center;
}

section#willkommen span#round span#char1 {/*transform: rotate(15deg);*/}
section#willkommen span#round span#char2 {transform: rotate(17deg);}
section#willkommen span#round span#char3 {transform: rotate(34deg);}
section#willkommen span#round span#char4 {transform: rotate(51deg);}
section#willkommen span#round span#char5 {transform: rotate(68deg);}
section#willkommen span#round span#char6 {transform: rotate(85deg);}
section#willkommen span#round span#char7 {transform: rotate(102deg);}
section#willkommen span#round span#char8 {transform: rotate(119deg);}
section#willkommen span#round span#char9 {transform: rotate(136deg);}
section#willkommen span#round span#char10 {transform: rotate(153deg);}
section#willkommen span#round span#char11 {transform: rotate(170deg);}
section#willkommen span#round span#char12 {transform: rotate(187deg);}
section#willkommen span#round span#char13 {transform: rotate(204deg);}
section#willkommen span#round span#char14 {transform: rotate(221deg);}
section#willkommen span#round span#char15 {transform: rotate(238deg);}
section#willkommen span#round span#char16 {transform: rotate(255deg);}
section#willkommen span#round span#char17 {transform: rotate(272deg);}

section#indexinhalt li::marker {
    color: #ff00ff
}

/*******************************************************************************
Über mich content
*******************************************************************************/
section#michtitel {
    background-image: url('../image/hinterhof.jpg');
}

section#michinhalt {
    margin-bottom: 50px;
}

section#michinhalt p.zitat {
    font-size: 1.3em;
    margin: 2em 5px 2em 0;
}

ul#voraussetzungen li {
    margin-bottom: 5px;
}

ul#voraussetzungen li::marker {
    color: #ff00ff;
}

section#michinhalt ul, section#michinhalt p:last-of-type {
    margin-bottom: 20px;
}

/*******************************************************************************
Angebot content
*******************************************************************************/
section#angebot h3, section#angebot ul, section#angebot p {
    width: 100%;
}

section#angebot li::marker {
    color: #ff00ff;
}

section#angebot p {
    margin: 0;
}

section#angebot p a {
    color: #ff00ff;
    text-decoration: none;
}

section#angebot img {
    margin-top: 10px;
}

/*******************************************************************************
Kontakt content
*******************************************************************************/
section#contacttitel {
    background-image: url('../image/esel.jpg');
}   

section#contact {
    display: flex;
    flex-wrap: wrap;
    min-height: 30vh;
    padding: 1em;
    box-shadow: 0 0 6px #141414, 0 0 8px #d9d9d9; 
}

section#contact article.contact {
    width: 100%;
}

section#contact article.contact p a {
    color: #ff00ff;
    text-decoration: none;
}

section#contact form {
    display: none;
    width: auto;
}

section#contact article.bank {
    width: 100%;
    align-self: flex-end;
}

section#contact article.bank ul {
    list-style: none;
    padding-left: 0;
}
/*******************************************************************************
Echo content
*******************************************************************************/

section#echo {
    margin-bottom: 400px;
}

section#echo h2 {
    font-weight: 1000;
    margin-left: 1em;
}

section.echo {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 50px;
    width: 100%;
    scroll-margin-top:100px;
}

section.echo article {
    display: flex;
    flex-wrap: wrap;
}

section.echo article h3, section.echo article p {
    width: 100%;  
}

section.echo article h3 {
    align-self: flex-start;
}

section.echo article p.zitat {
    align-self: center; 
    padding-left: 0.5em; 
}

section.echo article p:last-of-type {
    align-self: flex-end;
}

section.echo img {
    object-fit: cover;
    height: auto; 
}

section.echo img.left {
    order: -1;
    margin-right: 4%;
}

section.echo img.right {
    margin-left: 4%;
}

section#echo section.echo {
    padding: 1em;
    margin: 1em;
    box-shadow: 0 0 6px #141414, 0 0 8px #d9d9d9; 
}

/*section#echo section.echo img {
    border-style: solid;
    border-width: 2px;
    border-color: #ff00ff;f0f
}*/

/*******************************************************************************
fragen
*******************************************************************************/
section#fragentitel {
    background-image: url('../image/laden.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

section#frageninhalt article.fragen {
    width: 100%;
    padding: 1em;
    margin: 1em;
    box-shadow: 0 0 6px #141414, 0 0 8px #d9d9d9;
}

section#frageninhalt article.fragen h3 {
    color: #000;
}

section#frageninhalt article.fragen h3 span {
    color: #ff00ff;
}

/*******************************************************************************
werkzeuge
*******************************************************************************/
section#werkzeuge h2 {
    margin-left: 1em;

}

section#werkzeuge article.werkzeuge {
    padding: 1em;
    margin: 1em;
    box-shadow: 0 0 6px #141414, 0 0 8px #d9d9d9; 
}

section#werkzeuge article.werkzeuge h3 {
    color: #ff00ff;
}



/*******************************************************************************
literatur
*******************************************************************************/
section#literaturtitel {
    background-image: url('../image/frage_auf_dem_weg_sein.jpg');
    background-position: top;
}

section#literatur li {
    width: 95%;
}

li::marker {
    color: #ff00ff;
}
   
/*******************************************************************************
impressum
*******************************************************************************/  
section#impressum {
    min-height: 90vh;
}

section.slim section.half h3 {
    font-size: 1.5em;
}

section.slim section.half a {
    color: #ff00ff;
    text-decoration: none;
}
 .slim li {
    margin-bottom: 5px;
 }
 
section#impressum p {
    margin-top: 0;
}
/*******************************************************************************
footer
*******************************************************************************/

footer {
    padding: 5px 10px;
    background-color: #ff00ff;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

footer address {
    font-style: normal;
}

footer a {
    margin-bottom: 0;
    text-decoration: none;
}

footer p {
    align-self: center;
    text-align: right;
}
/*******************************************************************************
screen-specific below
*******************************************************************************/
@media (min-width: 900px) {
    header {
        align-items: baseline;
    }
    header h1 {
        margin-top: 12px;
    }
    header nav#topNav label {
        display: none;
    }
    
    header #mainmenubtn:checked ~ ul {
        visibility: visible;
    }
    
    header #topNav ul {
        visibility: visible;
        height: 100%;
    }
    
    header #topNav ul.main>li {
        display: inline-block;
    }
    
    header #topNav a {
        width: auto;
        padding: 15px 10px 12px 10px;
    }
    
    section.big h2 {
        font-size: 4em;
        margin: auto;
    }
    section.slim {
        width: 800px;
        margin: 5px auto 5px auto;
    }
    section:first-of-type {
        margin-top: 50px;
    }
    section#contact {
        max-width: 800px;
        margin: 5px auto 5px auto;
    }
    section.slim section.half {
        width: 48%
    }
    section#willkommen span#round {
        height: 250px;
        width: 250px;
        /*margin: 5px 5px 0 -320px;*/
    }
}
section#willkommen span#round span {
    font-weight: 700;
    height: 200px;
    width: 30px;
    top: 25px;
    left: 110px;
}

@media (max-width: 900px) {
    header {    
        align-items: flex-start;
        padding-top: 10px;
    }
    header nav#topNav {
        width: 250px;
    }
    header #topNav label {
        display: flex;
    }
    
   header #mainmenubtn:checked ~ ul.main {
        visibility: visible;
    }
    
    header #topNav ul.main {
        visibility: collapse;
        display: flex;
        flex-wrap: wrap;
        background: #ff00ff;
        margin: 0;
        padding-left: 0;
    }
    
    header #topNav li {
        width: 100%;
        display: flex;
    }
    
   header  #topNav a {
        background: none;
        border: none;
        width: 100%;
        padding: 5px 10px 5px 10px;
    }
    section.big h2 {
        font-size: 3em;
        margin: auto 2% auto 2%;
    }
    section.slim {
        width: 96%;
        margin: 5px 2% 5px 2%;
    }
    section#contact {
        max-width: 96%;
        margin: 5px 2% 5px 2%;
    }
    section.slim section.half {
        width: 96%
    }
    section#willkommen span#round {
        height: 150px;
        width: 150px;
        margin: 5px 5px 0 -150px;
    }

    section#willkommen span#round span {
        font: 20px courier New, MonoSpace;
        font-weight: 600;
        height: 120px;
        width: 30px;
        top: 15px;
        left: 60px;
    }
}

@media only screen and (min-width: 600px) {
    section.slim h2 {
        font-size: 2.5em;
    }
    section.slim h3 {
        font-size: 2em;
    }
    section.slim h4 {
        font-size: 1.5em;
    }
    section.echo article, section.echo img {
        width: 48%;
    }
    section.echo img.left {
        order: -1;
        margin-right: 4%;
    }

    section.echo img.right {
        margin-left: 4%;
    }
}

@media only screen and (max-width: 600px) {
    section.big h2 {
        font-size: 2em;
    }
    section.slim h2 {
        font-size: 2em;
    }
    section.slim h3 {
        font-size: 1.5em;
    }
    section.slim h4 {
        font-size: 1.2em;
    }
    section.echo article, section.echo img {
        width: 98%;
    }
    section.echo img.left {
        order: 0;
        margin: 1%;
    }

    section.echo img.right {
        margin: 1%;
    }
}

@media only screen and (max-width: 450px) {
    header {
        z-index: 2;
    }
    header nav#topNav {
        width: 150px;
        padding-right: 0;
    }
    header #topNav label {
        display: flex;
    }
    
   header #mainmenubtn:checked ~ ul.main {
        width: 200px;
    }
    
    header #topNav ul.main {
        background: #ff00ff;
        position: fixed;
        width: 0;
        top: 50px;
        right: 0;
        z-index: 1;
    }
    
    header #topNav li {
        width: 100%;
        display: block;
        padding: 8px 0 8px 0;
    }
    
    header #topNav li li {
        display: flex;
        flex-wrap: wrap;
    }
    section.big h2 {
        font-size: 1.5em;
    }
}

@media (max-height: 450px) {
    header {
        position: relative;
    }
    section:first-of-type {
        margin-top: 0;
    }
    section#willkommen {
        min-height: 150vh;
    }
    section#willkommen h2 {
        margin: auto -140px auto 2%;
    }
    section#willkommen span#round {
        min-width: 150px;
        margin: 5px 5px 0 0;
    }
}

/*******************************************************************************
scroll-to-top button
*******************************************************************************/
.scroll-to-top {
  opacity: 0.5;
  position: relative;
}
.scroll-to-top span.pos {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 20;
}
.scroll-to-top span.style {
  background-color: #ff00ff;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  color: #fff;
  cursor: pointer;
  animation: movebtn 3s ease-in-out infinite;
  transition: all 0.5s ease-in-out;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}
.icon-style:hover {
  animation: none;
  background: #fff;
  color: #6890a0;
  border: 2px solid #551b54;
}
@keyframes movebtn {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
