/*
Name: style.css
Description: CSS-Datei Klavierunterricht-Limburg
Version 1.0
*/

/* #########Standardeinstellungen###########*/


h1, p {
    margin: 0;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: #4b0005; color: white;
}

/* #########Header###########*/

/* Header -----------------------*/
header {
  	width: 100%;
  	background-color: #000000; 
}
header .flex-box-sm {
	height: 90px;
	align-items: center;
}

/* Logo ----------------*/
header  .logo img {
	height: 55px;
}
/* Menu-Button ------------*/
header .menu .menu-button {
	display: none;
}

/* Menu -------------------------------------*/
header .menu {
	text-align: right;
	font-size: 18px;
}

header  .menu ul li: first-child {
	margin: 0;
}

header  .menu ul li{
		list-style: none;
		display: inline;
		margin: 0 0 0 25px;
}


header .menu ul li a {
	color: #fff;
	text-decoration: none;
	transition: all 500ms;
	border-bottom: solid 1px rgba(255, 255, 255, 0);
	position: relative;
	top: 0;
}
header .menu ul li a:hover {
	border-bottom: solid 1px#fff; rgba(255, 255, 255, 0,15);
	top: 3px;
}






/* #########  Banner & Inhalt  ###########*/

/* Banner -----------------------*/

.banner {
	width: 100%;
	height: 150px;
	background-repeat: no-repeat;
	background-size: cover;
}
.banner .overlay {
	width: 100%;
	height: 100%;
	background-image: linear-gradient(#000 10%, #4B0005 100%);
}

.banner h1{
	text-align: center;
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Catamaran', sans-serif;
	font-size: 40px;
	padding-top: 28px;
	text-shadow: 5px 5px 10px #282c2f;
}


/* Inhalt -----------------------*/



.inhalt .flex-box-sm {
	margin: 0px 15px 50px 15px; 	
	padding: 30px, 15px, 30px, 15px;
	width: auto;
	
}

		
.inhalt .kontakt {
	margin: 0px 0px 15px 0px;
	}		
		
.inhalt p {
	text-align: justify;
	line-height: 1.5;
	text-shadow: 5px 5px 10px #282c2f;
}
.inhalt a {
	color: white;
	text-decoration: none;
}
.inhalt a:hover {
	text-decoration: underline;
}


.inhalt .kontakt p {
	text-align: left;
}

.inhalt .fotoflex {
	max-width: 100%;
	flex: 0 0 450px; 
}

.inhalt .fotoflex img {
	position: relative;
	max-width: 100%; 
	margin: 5px 0px 5px 0px;
	display: flex; 
	border-radius: 15px;
	box-shadow: 0px 0px 8px #050505;
}

.inhalt .CD .fotoflex {
	margin-right: 110px;
}

.inhalt .partner .fotoflex {
	margin-right: 150px;
	margin-bottom: 50px;
}

.inhalt .partner img {
	margin-bottom: 10px;
}

.inhalt ol {
   line-height: 1.5;
}



/* Footer -----------------------*/

footer {
	width: 100%;
}
.footer .flex-box-sm {
	margin: 50px 15px 10px 15px; 	
	padding: 30px, 15px, 30px, 15px;
	width: auto;
}


footer .rechtliches p {
	color: white;
	text-shadow: 5px 5px 10px #282c2f;
}


footer .rechtliches a {
	color: white;
	text-decoration: none;
}
footer .rechtliches a:hover {
	text-decoration: underline;
}







/* #########  Mobile Anpassung  ###########*/

@media screen and (max-width: 768px) {
	/*----HEADER--------------------------------*/
	/* Header -----------------------*/
header {
  	background-color: transparent;
  	position: absolute;
  	top: 0;
  	left: 0;
}
header .flex-box-sm {
	height: auto;	
}

/* Logo ----------------*/
header  .logo {
	background-color: #000;
	height: 60px;
}
header  .logo img {
	height: 30px;
	margin: 15px 0px 0px 15px; 
}
/* Menu-Button ------------*/
header .menu .menu-button {
	
	display: block;
	position: absolute;
	top: 20px;
	right: 15px;
	height: 20px;
	cursor: pointer;
}

/* Menu -------------------------------------*/
header .menu {
	text-align: center;
	}
	header .menu nav {
		background-color: rgba(0, 0, 0, 0.1);
		background-image: linear-gradient(#000 20%, #4B0005 100%);
		padding: -5px 0;
		display: none;
		position: relative;
	}
	
	header .menu nav.open-menu {
		background-color: rgba(0, 0, 0, 0.1);
		background-image: linear-gradient(#000 10%, #4B0005 100%);		
		display: block;
		animation: open-menu 250ms ease-out 0s normal forwards
	}
	
	header .menu nav.close-menu {
		background-color: rgba(0, 0, 0, 0.1);
		background-image: linear-gradient(#000 10%, #4B0005 100%);		
		display: block;
		animation: close-menu 250ms ease-out 0s normal forwards
	}
header  .menu ul li, header  .menu ul li:first-child {
		list-style: none;
		display: block;
		margin: 0;
		padding: 5px 0;
}
/*################# BANNER & INHALT ############ */

/*----------------- BANNER  ----------------------*/

.banner {
		margin-top: 60px;
}
.banner h1{
	font-size: 35px;
	padding-top: 45px;
}
/*--------- Inhalt --------------------------*/

.inhalt .flex-box-sm {
	margin: 35px 10px 50px 10px; 	
	padding: 5px;
}

.inhalt .kontakt {
 	margin: 10px 10px 30px 0px; 
}

footer .rechtliches {
	margin: 10px 0px -40px 0px;
}






}


















