/*
pink: #ff66c4
grün: 7ed957
gelb: ffde59
violett: 6a00a8 (alt 7d0a9c)
blau: 0066cc (alt 004aad)
*/
body{
	font-family: arial;
	text-align: center;
	background-color: white;
	color: black;
}
body.iframe{
	margin: 0;
	padding: 0;
}
* {
	box-sizing: border-box;
}
p{
	margin: 0px;
}
b{
	margin: 2px 0px 2px 0px;
}
a{
	text-decoration: none;
	color: black;
}
h1{
	font-size: 30px;
	margin: 15px 0px;
}
h2{
	font-size: 21px;
	margin: 10px 0px;
}
h3{
	margin: 2px 2px 20px 2px;
}
/*farben*/
#blau{
	border: 5px solid #0066cc;
}
#pink{
	border: 5px solid #ff66c4;
}
#gelb{
	border: 5px solid #ffde59;
}
#violett{
	border: 5px solid #6a00a8;
}
#gruen{
	border: 5px solid #7ed957;
}
/*header*/
header{
	width: 98%;
	float: left;
	margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
}
img.header{
	height: 90px;
}
/*navi-farben*/
header.start{
	background-color: #ff66c4;
}
header.konzerte{
	background-color: #7ed957;
}
header.profil{
	background-color: #0066cc;
}
header.kontakt{
	background-color: #6a00a8;
}
header.galerie{
	background-color: #ffde59;
}
img.header{
	height: 90px;
}
/*navigation*/
nav{
	width: 98%;
	margin-left: 1%;
	margin-right: 1%;
}

div.nav{
	padding: 10px 10px 10px 10px;
	border-radius: 10px;
	text-align: center;
	float: left;
	margin-bottom: 10px;
	margin-left: 1%;
	margin-right: 1%;
}
@media only screen and (min-width: 900px){
	div.nav{
		width: 18%;
	}
	div.mobile-nav{
		display: none;
	}
}
@media only screen and (max-width: 899px){
	div.nav{
		width: 48%;
		display: none;
	}
	div.mobile-nav > img{
		height: 70px;
	}
	nav:hover div.nav{
		display: block;
	}
}
div.nav[id="start"]{
	border: 5px solid #ff66c4;
	color: #ff66c4;
}
div.nav[id="startselected"], div.nav[id="start"]:hover{
	border: 5px solid #ff66c4;
	background-color: #ff66c4;
	color: white;
}
div.nav[id="konzerte"]{
	border: 5px solid #7ed957;
	color: #7ed957;
}
div.nav[id="konzerteselected"], div.nav[id="konzerte"]:hover{
	background-color: #7ed957;
	border: 5px solid #7ed957;
	color: white;
}
div.nav[id="profil"]{
	border: 5px solid #0066cc;
	color: #0066cc;
}
div.nav[id="profilselected"], div.nav[id="profil"]:hover{
	background-color: #0066cc;
	border: 5px solid #0066cc;
	color: white;
}
div.nav[id="kontakt"]{
	border: 5px solid #6a00a8;
	color: #6a00a8;
}
div.nav[id="kontaktselected"], div.nav[id="kontakt"]:hover{
	background-color: #6a00a8;
	border: 5px solid #6a00a8;
	color: white;
}
div.nav[id="galerie"]{
	border: 5px solid #ffde59;
	color: #ffde59;
}
div.nav[id="galerieselected"], div.nav[id="galerie"]:hover{
	background-color: #ffde59;
	border: 5px solid #ffde59;
	color: white;
}
/*content*/
content{
	text-align: center;
	border-radius: 10px;
	width: 98%;
	min-height: 600px;
	float: left;
	margin-left: 1%;
	margin-right: 1%;
	padding: 10px 40px 10px 40px;
	overflow: scroll;
	text-align: left;
}
@media only screen and (max-width: 700px){
	content{
		padding: 10px 10px;
	}
}
/*Start*/
img.start{
	width: 100%;
	margin: 10px 0 10px 0;
	border-radius: 5px;
	border: 1px solid white;
}

/*Konzerte*/
div.bottom{
	clear: both;
	float: left;
}
h2.konzert{
	font-size: 30px;
	margin-top: 0px;
}
div.konzert{
	float: left;
	width: 250px;
	height: 250px;
	border-radius: 10px;
	padding: 5px 10px 5px 10px;
	text-align: center;
	margin: 10px;
}
@media only screen and (max-width: 700px){
    div.konzert{
        width: 100%;
        height: 250px;
        margin: 10px 0;
    }
}
div.konzert#blau:hover{
	background-color: #0066cc;
	color: white;
}
div.konzert#gelb:hover{
	background-color: #ffde59;
	color: white;
}
div.konzert#pink:hover{
	background-color: #ff66c4;
	color: white;
}
div.konzert#gruen:hover{
	background-color: #7ed957;
	color: white;
}
div.konzert#violett:hover{
	background-color: #6a00a8;
	color: white;
}
/*unterseite Konzert*/
div.top {
  width: 100%;
  margin-bottom: 30px;

  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 20px;
}

div.box {
  box-sizing: border-box;
  width: auto;
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  grid-column: span 5;
}

div.box.gross {
  grid-column: span 6;
}

div.box.klein {
  grid-column: span 4;
}

div.box.video {
  grid-column: span 10;
}
@media only screen and (max-width: 1199px){
	div.top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    div.box,
    div.box.gross,
    div.box.klein,
	div.box.video	{
        grid-column: span 1;
        margin: 0;
    }
}
iframe.flyer{
	height: 350px;
	width: 100%;
	border-radius: 10px;
}
iframe.video{
	border: none;
	display: block;
	border-radius: 10px;
	width: 100%;
	height: 400px;
}
@media only screen and (max-width: 500px){
	iframe.video{
		height: 250px;
	}
}
@media only screen and (min-width: 1100px){
	iframe.video{
		height: 600px;
	}
}
img.portrait{
	height: 250px;
	width: 200px;
	border-radius: 5px;
}
div.portrait{
	float: left;
	margin: 5px 5px 5px 5px;
}
div.bild{
	min-width: 20%;
	border-radius: 10px;
	padding: 10px;
	overflow: hidden;
}
@media only screen and (max-width: 599px){
	div.box.profil{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
/*Unterseite profil*/
iframe.statuten{
	height: 500px;
	width: 100%;
	border-radius: 10px;
}
div.breit{
	margin: 10px 10px 10px 10px;
	padding: 10px;
	width: 95%;
	min-height: 400px;
	border-radius: 10px;
	float: left;
}
/*Kontakt*/
form table.form{
	width: 100%;
}
input{
	width: 100%;
	height: 50px;
	border-radius: 5px;	
}
input#pink{
	border: 3px solid #ff66c4;
}
input#blau{
	border: 3px solid #0066cc;
}
textarea{
	width: 100%;
	height: 200px;
	border: 3px solid #6a00a8;
	border-radius: 5px;	
}

button[type=submit]{
	width: 100%;
	background-color: white;
	color: #7ed957;
	border: 3px solid #7ed957;
	border-radius: 5px;
	height: 50px;
}
button[type=submit]:hover{
	background-color: #7ed957;
	color: white;
	cursor: pointer;
}
/*Galerie*/
div.button{
	padding: 10px 10px 10px 10px;
	border-radius: 10px;
	text-align: center;
	float: left;
	margin-bottom: 10px;
	margin-left: 1%;
	margin-right: 1%;
	width: 98%;
	border-radius: 10px;
}
div.button:hover{
	background-color: #ff66c4;
	color: white;
}

/*Werke*/
iframe.werke{
	border: none;
	display: block;
	border-radius: 10px;
	width: 100%;
	min-height: 400px;
}
@media (max-width: 700px){
	iframe.werke{
		height: 700px;
	}
}
/*Werke iframe*/

table.werke{
	width: 100%;
	border-collapse: collapse;
}
td.werke{
	border-top: 1px solid black;
	margin: 0px;
	padding: 5px;
}
th.werke{
	padding: 5px;
}
/*mobile*/
@media (max-width: 700px) {

    table.werke {
        width: 100%;
        border-collapse: collapse;
    }

    /* Tabellenkopf ausblenden */
    table.werke tr:first-child {
        display: none;
    }

    /* Jedes Werk wird zu einer Karte */
    table.werke tr.werke {
        display: block;
        margin-bottom: 12px;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    /* Zellen untereinander */
    table.werke td.werke {
        display: block;
        width: auto;
        padding: 3px 0;
        border: none;
    }

    /* Bezeichnungen wieder vor die Werte setzen */
    table.werke td.werke:nth-child(1)::before {
        content: "Uraufführung: ";
        font-weight: bold;
    }

    table.werke td.werke:nth-child(2)::before {
        content: "Titel: ";
        font-weight: bold;
    }

    table.werke td.werke:nth-child(3)::before {
        content: "Sätze: ";
        font-weight: bold;
    }

    table.werke td.werke:nth-child(4)::before {
        content: "Komponist*in: ";
        font-weight: bold;
    }

    table.werke td.werke:nth-child(5)::before {
        content: "Aufnahme: ";
        font-weight: bold;
    }
}

/*Videoplayer*/
#timestamps p{
    cursor:pointer;
}

#timestamps p:hover{
    color:#0066cc;
}
/*Fehlermeldungdiv*/
div.errmsg{
	position: fixed;
	top: 75px;
	left: 25%;
	width: 50%;
	color: white;
	background-color: #4d2600;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	border: 3px solid #fff;
	opacity: 0.85;
	z-index: 1;
}