/* ALLGEMEIN */
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --text: black;
    --blau: #46708c;
    --gruen: #8c8c46;
    --braun: #8c4746;
    --dunkel: #2e3437;
    --weiss: white;
    --bg: #44584d;
}
html {
    width: 100%;
    display: block;
    position: relative;    
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    font-style: normal;
    background-color: var(--bg);
}
p, ul li, address {
    font-family: "Aubrey";
    font-size: 1.5rem;
    line-height: 1.5rem;
 }
ul {
    margin: 0.5rem 0 0.5rem 2rem;
}
h1, h2, h3, h4 {
    font-family: "Aubrey";
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
 }
h2.spezial {
    margin-bottom: 1rem;
 }
h3 {
    font-size: 1.5rem;
 }
a {
    font-family: "Aubrey";
    text-decoration: none;
    color: inherit;
 }
 p.abstand {
    margin-top: 1rem;
 }
 p.italic {
    font-style: italic;
    text-align: right;
 }
/* HEADER */
header {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    color: var(--weiss);
}
header img {
    display: block;
    width: 100%;
    height: auto;
}
header a .einklinker {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    height: auto;
    background-color: var(--dunkel);
    color: var(--weiss);
    padding: 1rem;
    width: 8rem;
    border-radius: 0 0 30px 30px;
    text-align: center;
}
header a .einklinker span {
    font-size: 1.2rem;
}
header a:hover .einklinker {
    background-color: var(--blau);
}
/* BODY */
main.simple {
    display: block;
    position: relative;
    margin-left: 0;
    padding-left: 0;
    margin-top: 0;
    padding-top: 0;
    color: var(--weiss);
}
main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: stretch;
    font-size: 100%;
    background-color: var(--bg);
    padding-bottom: 5rem;
    color: var(--weiss);
}
main .geschichte {
    width: 90%;
    height: auto;
    font-family: "Aubrey";
    padding-left: 1rem;
    color: var(--weiss);
    text-align: center;
    margin-bottom: 3rem;    
    padding-top: 5rem;
}
main .geschichte h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}
main .feld.rubrik {
    display: flex;
    flex-direction: column;
    min-width: 20rem ;
    max-width: 25rem;
    height: auto;
    color: var(--weiss);
    margin-bottom: 3rem;
    border-radius: 1rem;
    box-shadow: black;
}
main .feld.rubrik h2 {
    font-size: 2rem;
    padding: 0.5rem;
    text-align: center;
    margin: 0.5rem;
}
main .feld.rubrik p {
    padding: 0.5rem;
    text-align: center;
}
main .feld.rubrik img {
    margin-bottom: 1rem;
}
main #eins.feld.rubrik {
    background-color: var(--blau);
}
main #zwei.feld.rubrik {
    background-color: var(--gruen);
}
main #drei.feld.rubrik {
    background-color: var(--braun);
}
main #vier.feld.rubrik {
    background-color: var(--dunkel);
}
main #fuenf.feld.rubrik {
    background-color: var(--blau);
}
/* PAGES */
section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: baseline;
    font-size: 100%;
    padding-bottom: 1rem;
    color: var(--weiss);
}
section.center {
    justify-content: space-around;
    align-items: center;
    width: 80vw;
    height: auto;
    margin: 0 auto;
}
section.center div {
    margin: 0.5rem 0.5rem;
}
section.no-flex {
    display: block;
    position: relative;
    width: 95%;
    height: auto;
    padding-bottom: 30rem;
}
section.no-flex.center {
    text-align: center;
}
section a.button {
    display: inline-block;
    margin: 1rem 0;
    background-color: var(--blau);
    min-width: 30rem;
    max-width: 35rem;
    height: 4rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.555);
}
section a.button:hover {
    box-shadow:inset 0 0 10px 5px rgba(0, 0, 0, 0.555);
    -moz-box-shadow:inset 0 0 10px 5px rgba(0,0,0, 0.555);
    -webkit-box-shadow:inset 0 0 10px 5px rgba(0,0,0, 0.555);
}
section a,
div.button a {
    font-size: 2.5rem;
    line-height: 3.7rem;
    font-weight: 600;
}
main section .flex {
    display: flex;
    flex-direction: column;
    width: 45% ;
    height: auto;
    color: var(--weiss);
    margin-bottom: 3rem;
    border-radius: 1rem;
    box-shadow: black;
}
section.solobild {
    width: 100%;
    height: 250px;
    box-shadow:inset 0 0 10px 5px rgba(0, 0, 0, 0.555);
    -moz-box-shadow:inset 0 0 10px 5px rgba(0,0,0, 0.555);
    -webkit-box-shadow:inset 0 0 10px 5px rgba(0,0,0, 0.555);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section.solobild.buch {
    background-image: url("../img/traumspieler.jpg");
    margin: 3em 0;
}
section.solobild.mosaik {
    background-image: url("../img/Out-of-the-dark.jpg");
    margin: 3em 0;
}
section.solobild.theater {
    background-image: url("../img/theater-solobild.jpg");
    margin: 3em 0;
}
section div.imageKlein img {
    width: 10rem;
    height: auto;
}
main .unterseiten {
    padding: 2rem;
}
div.text {
    text-align: center;
    width: 80%;
}
#hoch {
    width: 40px;
    height: 40px;
    background-color: #ccc;
    box-shadow: 0px 0px 10px rgb(119, 119, 119);
    border-radius: 6px;
    position: fixed;
    opacity: 0.5;
    bottom: 35px;
    right: 4px;
    z-index: 999;
    text-align: center;
}
#hoch a:hover ~ #hoch {
    opacity: 1;
}
img.middle {
    min-width: 10rem;
    max-width: 20rem;
    height: auto;
}


.icon img.icon-bild {
    width: 2rem;
    height: 2rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}
.icon img.icon-bild-2 {
    width: 3rem;
    height: 3rem;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: -0.8rem;
}



/* BUCHBERICHTE SLIDER */
section div.berichte {
    margin: 1em 0;
    width: 100%;
}
section div.berichte ul.slides {
    margin: 0;
    display: block;
    margin: 0 auto;
    position: relative;
}
section.buch div.berichte ul.slides {
    height: 350px;
}
section.hoerbuch div.berichte ul.slides {
    height: 220px;
}
section div.berichte ul li {
    list-style: none;
}
.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
.slides input { display: none; }
.slide-container { display: block; }
.slide {
    top: 0;
    opacity: 0;
    display: block;
    position: absolute;
    transform: scale(0);
    transition: all .7s ease-in-out;
}
.slide.text {
    width: 80%;
    height: 100%;
    margin-left: 10%;
}
.slide.text p {
    padding-top: 1em;
}
.nav label {
    width: 60px;
    height: 100%;
    display: none;
    position: absolute;
    cursor: pointer;
    color: var(--blau);
    font-size: 80pt;
    line-height: 200pt;
    text-align: center;
    z-index: 9;
}
.slide:hover + .nav label { color: var(--braun); }
.nav label:hover { color: var(--braun) ; }
.nav .next { right: 5px; }
input:checked + .slide-container  .slide {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}
input:checked + .slide-container .nav label { display: block; }
.nav-dots {
	width: 100%;
	bottom: 2px;
	height: 11px;
	display: block;
	position: absolute;
	text-align: center;
}
.nav-dots .nav-dot {
	top: -5px;
	width: 11px;
	height: 11px;
	margin: 0 5px;
	position: relative;
	border-radius: 100%;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.6);
}
.nav-dots .nav-dot:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.8);
}
input#buch-1:checked ~ .nav-dots label#buch-dot-1,
input#buch-2:checked ~ .nav-dots label#buch-dot-2,
input#buch-3:checked ~ .nav-dots label#buch-dot-3,
input#buch-4:checked ~ .nav-dots label#buch-dot-4,
input#buch-5:checked ~ .nav-dots label#buch-dot-5,
input#buch-6:checked ~ .nav-dots label#buch-dot-6 {
	background: rgba(0, 0, 0, 0.8);
}

/* SPRECHER SLIDER */

.sprecher-container .sprecher.text.links img {
    float: left;
    margin-right: 1em;
    margin-top: .8em;
}

.sprecher-container .sprecher.text.rechts img {
    float: right;
    margin-left: 1em;
    margin-top: .8em;
}

section .block .slider ul.slides {
    margin: 0;
    width: 99vw;
    height: 290px;
    /* display: inline-block; */
    margin: 0 auto;
    position: relative;
    background-color: #ccc;
}

section .block .slider ul.slides li {
    list-style: none;
}

.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.slides input { display: none; }
.slide-container { display: block; }

.sprecher {
    top: 0;
    opacity: 0;
    display: block;
    position: absolute;
    transform: scale(0);
    transition: all .7s ease-in-out;
}

.sprecher.text {
    width: 80%;
    height: 100%;
    margin-left: 10%;
}

.sprecher.text p {
    padding-top: 1em;
}

.nav-sprecher label {
    width: 60px;
    height: 100%;
    display: none;
    position: absolute;
    cursor: pointer;
    color: var(--blau);
    font-size: 80pt;
    line-height: 200pt;
    text-align: center;
    z-index: 9;
}

.sprecher:hover + .nav-sprecher label { color: var(--braun) ; }
.nav-sprecher label:hover { color: var(--braun) ; }
.nav-sprecher .next { right: 5px; }

input:checked + .sprecher-container  .sprecher {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}

input:checked + .sprecher-container .nav-sprecher label { display: block; }

.nav-sprecher-dots {
	width: 100%;
	bottom: 2px;
	height: 11px;
	display: block;
	position: absolute;
	text-align: center;
}

.nav-sprecher-dots .nav-sprecher-dot {
	top: -5px;
	width: 11px;
	height: 11px;
	margin: 0 5px;
	position: relative;
	border-radius: 100%;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.5);
}

.nav-sprecher-dots .nav-sprecher-dot:hover,
.nav-sprecher-dots .nav-sprecher-dot:active {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.8);
}

input#sprecher-1:checked ~ .nav-sprecher-dots label#sprecher-dot-1,
input#sprecher-2:checked ~ .nav-sprecher-dots label#sprecher-dot-2,
input#sprecher-3:checked ~ .nav-sprecher-dots label#sprecher-dot-3,
input#sprecher-4:checked ~ .nav-sprecher-dots label#sprecher-dot-4,
input#sprecher-5:checked ~ .nav-sprecher-dots label#sprecher-dot-5,
input#sprecher-6:checked ~ .nav-sprecher-dots label#sprecher-dot-6 {
	background: rgba(0, 0, 0, 0.8);
}

/* VIDEO */
div.video {
    display: flex;
    justify-content: center;
}
video {
    max-height: 80vh;
    max-width: 90%;
  }
img {
    max-width: 100%;
    height: auto;
  }

/* BILDER */
main div.buchbilder {
    display: block;
    position: relative;
    text-align: center;
}
section img.buchbilder {
    width: 10rem;
    height: 15rem;
    margin: 1.5rem 0.5rem;
    object-fit: cover;
}
main div img.ananta {
    width: 20rem;
    height: auto;
    margin: 1rem;
}

/* FOOTER */
footer {
    display: inline-block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: var(--braun);
    color: var(--weiss);
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
footer a {
    font-size: 1.2rem;
}