/*  ALLGEMEIN *************************************************************************/
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	}

html{
	scroll-behavior:smooth;
}
html{
	background: url(../images/Hintergründe/pexels-photomix-company-518245.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size:cover;
	-o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
}

body{
	width:100vw;
	max-width:1240px;
	margin:5rem auto 2rem;
}

/*section{box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);}*/

/* TEXT - FORMATE allgemein */

h2{font-family: 'Handlee';font-style:italic;font-weight:600;}
h2{font-size: 50px;padding-bottom:2rem;}
h3{font-family: 'Handlee';font-style:italic;font-weight:500;}
h3 {font-size: 35px;color:#494949; text-shadow:0 0 33px rgb(204 51 62);padding-bottom:1rem;}
h4 {font-family: 'Handlee', cursive;font-size: 25px;color: #494949;}

p, li {font-family: 'Handlee', cursive;font-size: 25px;color: #494949;}
a{font-family: 'ROBOTO', sans-serif;font-size:18px;	color: #494949;}


/*  CONTAINER *************************************************************************/

.container_col2 {
	column-count: 2; 
	column-gap:2em;
	column-rule-style:dotted; 
	column-rule-width:1px; 
	column-rule-color:#494949;
}

/*  HEADER *************************************************************************/

header{
	width:100vw;
	max-width:1240px;
	position:fixed;
	top:0;
	padding-top: 5px;
	background-color:white;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	z-index:100;
}
.container_logo{
	padding-left:20px;
	display: inline;
}
.logo_big{width:750px;}
.logo_small{width:550px;}

.container_img_header{
	height:140px;
	float:right;
	padding-right: 20px;

display: none;
}
.container_img_header img{height:100%;	border:1px solid red;}
.img_small{height:110px;}

/*  NAVIGATION *************************************************************************/

.nav-area {padding-bottom:10px;}
.nav-area ul {
	display: flex;
	flex-flow:row wrap;
}
.nav-area ul li{display: flex;}
.nav-area ul li:hover a{background:white;}
.nav-area ul ul{
	display:none;	
	padding-top:10px;
	padding-bottom:5px;
	position:absolute;
	top: 100%;
	left:20px;
	background: white;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.nav-area >ul >li{position: relative;}
.nav-area ul ul li{position: relative;}

.nav-area ul li:hover >ul{
	display: flex;
}

.nav-area ul ul ul{
	top:0px;
	left:100%;
	padding-top:5px;
}


/*  NAVIGATION - SCHRIFT *************************************************************/
.nav-area a{
	font-family: 'ROBOTO', sans-serif;
	font-size: 18px;
	font-weight: 400;
    padding: 0 40px;
}
.nav-area a{text-decoration:none;}
.nav-area a:hover{
	text-decoration: underline;
	text-decoration-color:rgb(204 51 62);
}
.nav-area ul ul li a{
	font-weight: 400;
	padding: 2px 20px 0px 20px;
}
.nav-area ul ul li a:hover{
	padding: 2px 20px 0px 15px;
	border-style: solid;
	border-width: 0 0 0 5px;
	border-color: rgb(204 51 62);
	text-decoration: none;
}

/* Responsive Menü ********************/
.menubutton {
    display: none;
    cursor: pointer;	
    background: inherit;	
	font-family: 'Roboto', sans-serif;
    color: #494949;
    text-transform: uppercase;
	font-size: 16px;
	padding: 0.5rem 0rem;
    border: 0;
	margin:0 auto 0 25px;
}
.menubutton::before{content: "\2261";font-size: 16px;padding-right:0.5rem;}


/* ASIDE ***********************************************/

aside .sidemenu{
	position: fixed;
	top:25%;
	right: 5%;
	padding:0.5rem;
	border-radius: 0.5rem;
	background-color:rgb(204 51 62);
}
aside .sidemenu ul{
	display:flex;
	flex-direction: column;
	align-items:center;
}
aside .sidemenu li{
	list-style: none;
	list-style-position: inside;
	flex:1;
	border-bottom: 1px solid whitesmoke;
}
aside .sidemenu li:last-child{border-bottom: 0px;}
aside .sidemenu li a{
	font-size:25px;
	color: whitesmoke;
	text-decoration:none;
}


/*  Home *************************************************************************/

#home {
	min-height:100vh;
	padding-top:5%;
	padding-bottom:5%;
	text-align: center;
	background-color:whitesmoke;
	background-image: url('../images/Hintergründe/pexels-steve-johnson-1484759.jpg');
	background-repeat: no-repeat;
	background-size:cover;
}
#home h2 {padding-top:5%;font-size: 50px;color:#494949;}

.noscript {font-size: 25px;color: red;}

#home .NewsButton {
	position: absolute;
	top:30%;
	left: 5%;
	width: 25%;
	
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

#home .NewsButton:hover {	
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

#home .NewsButton img{
	width:100%;
	max-width:300px;
	/*
	border-radius: 30px;
	border-style: solid;
	border-width: 2px;
	border-color: rgb(204 51 62);
	*/
}





/* Home-Container *****/ 
.home {
	width: 75%;
	margin: 5% auto 0 auto;
	background-color:white;
	padding: 20px;
	border-style: solid;
	border-width: 2px;
	border-color: rgb(204 51 62);
	border-radius: 50px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

.home_img{
	width: 30%;margin: 0 15% 0 auto;
}
.home_img img{width:100%;}

.salon{margin:50px 20px;}
.salon img{
	border-style: solid;
	border-width: 2px;
	border-color: rgb(204 51 62);
	border-radius: 50px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}


/* CUBE *************************************************************************/
#wrapcube {
    margin-left: 15%;
	perspective: 800px;
	perspective-origin: 50% 0px;
}
.cube {
	position: relative;
	width: 150px;
	transform-style: preserve-3d;
	transform: rotateX(22deg) rotateY(-45deg) ;
}
.cube div {
	position: absolute;
	width: 150px;
	height: 100px;
	text-align: center;
	line-height: 100px;
	font-size: 1.5em;
	/*box-shadow: inset 0 0 30px rgb(204 51 62);*/
}
.back {transform: translateZ(-75px) rotateY(180deg);}
.right {transform: rotateY(-270deg) translateX(75px);transform-origin: top right;}
.left {transform: rotateY(270deg) translateX(-75px);transform-origin: center left;}
.top {transform: rotateX(-90deg) translateY(-75px);	transform-origin: top center;}
.bottom {transform: rotateX(90deg) translateY(75px);transform-origin: bottom center;}
.front {transform: translateZ(75px);}

/*color: #494949*/
#wrapcube span{color:rgb(204 51 62); font-size: 40px;font-weight: 600;	text-transform: uppercase;}
#wrapcube p {color:rgb(204 51 62); font-size: 20px;	text-transform: uppercase;}

@keyframes spin {
	from { transform: rotateY(0); }
	to { transform: rotateY(360deg); }
}
.cube {animation: spin 15s infinite alternate-reverse;}

.home img{margin-top:2rem;}

/*  HOME *************************************************************************/
/*  Unsere Leistungen *************************************************************************/
#Leistungen{
	height:100vh;
	padding-top:185px;
	text-align: center;
	background: url(../images/Hintergründe/pexels-tirachard-kumtanom-574283.jpg);
	background-position: center bottom;
	background-size:cover;
}
#Leistungen .container_col2{
	margin: 5% 5% 0 5%;
	padding: 2rem;
	text-align:justify;
}
#Leistungen .container_col2 li{
	font-size:25px;
	font-weight: 500;
	color:#494949;
	list-style-position:inside;
}
#Leistungen .container_col2 p{
	font-size:25px;
}
#Leistungen .container_col2 a{
	font-family: 'Handlee', cursive;
	font-size: 25px;
	color: #494949;
	text-decoration:none;
}

/*  HOME *************************************************************************/
/*  Unsere Produkte *************************************************************************/

#Produkte{
	min-height:100vh;
	padding:150px 0.5rem 5%;

	text-align: center;
	background-color:whitesmoke;
	background-image:linear-gradient(90deg, lightgrey, whitesmoke, white);
}

.container_produkte{
	width:75%;
	margin: 1rem auto 0 auto;	
	padding:1rem;
	text-align: justify;
}

.gltapes img, .glynt img{
	float:left;
	width:25%;
	padding: 1rem 1rem 0 0;
}

.container_produkte a::after{content:" \2197";}

/*  HOME *************************************************************************/
/* FOOTER *******************************************************************/

footer {
	background-color:whitesmoke;
	padding: 1rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
footer .container_col2{
	width:80%;
	margin: 0 auto 0 auto;
}
footer .container_col2 p{font-size:20px;}



/* EXTERN********************************************************/
/*  Neuheiten *************************************************************************/

#Neuheiten{
	min-height:100vh; 
	padding:150px 0.5rem 5%;
	background-color:rgba(204, 51, 62, 1.0);
	background-image:linear-gradient(90deg, rgba(204, 51, 62, 1.0), whitesmoke);
	text-align: center;
	/*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	background-image: linear-gradient(-135deg, white, whitesmoke,whitesmoke, rgba(204, 51, 62,0.5));
	*/
	/*	
	background-image: linear-gradient(-135deg, whitesmoke, rgba(204, 51, 62, 0.5));
	background: url(../images/Hintergründe/pexels-steve-johnson-1484759.jpg);
	*/
}

.container_inside{
	padding:1rem;
	background-color:whitesmoke;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.container_inside h4{margin:25px;}

/* Fomatierung der einzelnen News */
.news_green{margin:5px;padding:10px;border:1px solid goldenrod;border-radius:10px;}
.news_green p{
	margin-top:25px;
	/*padding:10px;*/
	color:goldenrod;
}

.news_darkgreen{margin:5px;padding:10px;border:1px solid #077521;border-radius:10px;}
.news_darkgreen p{
	margin-top:25px;
	/*padding:10px;*/
	color:#077521;
}

.news_blue{	margin:5px;border:1px solid lightblue;border-radius:10px;}
.news_blue p{
	margin-top:25px;
	padding:10px;
	color:blue;

}

.news_red{margin:5px;padding:10px;border:1px solid coral;border-radius:10px;}
.news_red p{
	margin-top:25px;
	/*padding:10px;*/
	color:coral;
}

.news_grey{margin:5px;border:1px solid grey;border-radius:10px;}
.news_grey p{
	margin-top:25px;
	padding:10px;
	color:grey;
}


/* EXTERN********************************************************/
/*  Impressum / Disclaimer**************************************************/

.container_single{
	width: 100%;
    /*height: 45vh;
    margin: 2% auto 0 auto; */
    background-color: lightgrey;
    border-style: solid;
    border-color: rgb(204 51 62);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
}

/*  Impressum **************************************************/
#impressum{
	padding:150px 0.5rem 0.5rem;
	background-image:linear-gradient(90deg, whitesmoke,white);
	text-align: center;
}
#impressum .container_single{
	height: 50%;
	display: block;
}
.impressum_list_col2{
	margin: 1% 2% 0 2%;
	padding: 2rem;
	text-align:justify;
	column-count: 2; 
	column-gap:2em;
	column-rule-style:dotted; 
	column-rule-width:1px; 
	column-rule-color:#494949;
}
.impressum_list_col2 p, .impressum_list_col2 h4{
	font-size: 25px;
}

/* Disclaimer**************************************************/
#disclaimer {
	min-height:100vh;  
	/*min-height: -webkit-fill-available;*/
	padding:0.5rem;
	background-image:linear-gradient(90deg, whitesmoke,white);
	text-align: center;
}
#disclaimer .container_single{
	height: auto;
	text-align: justify;
	padding: 25px;
	display: block;
}
#disclaimer .container_single  p{
	font-size: 25px;
}
#disclaimer .container_single h3{
	font-size: 18px;
	text-align: center;
}
#disclaimer .link_extern{
	font-family: 'Handlee', cursive;
	font-size: 25px;
	color: #494949;
}

/* EXTERN********************************************************/
/*  TERMIN *************************************************************************/
#termin {
	min-height:100vh;
	padding:150px 0.5rem 0.5rem;
	background-image:linear-gradient(90deg, whitesmoke,white);
	/*background-image:linear-gradient(90deg, lightgrey, whitesmoke);*/
	text-align: center;
}
#termin .inside{
	min-height: 80vh;
	padding:15rem 1rem;
	background: url(../images/Hintergründe/pexels-jess-bailey-designs-788946.jpg);
	background-size:cover;
	background-position:bottom;
	border-style: solid;
    border-color: rgb(204 51 62);
    border-radius: 10px;
	text-align: left;
}
#termin .termin{transform:rotate(-9deg);margin:10% auto 0 10%;;}
#termin a{font-size:30px;}



/*  REFERENCE *************************************************************************/
/*  Container*********************/

.container_details{
	display: flex;
	flex-wrap: wrap;
}
.container_single_left, .container_single_right{
	width: 49%;
	height:45vh;
	margin: 2% auto 0 auto;
	background-color: lightgrey;
	border-style: solid;
	border-width: 2px;
	border-color: rgb(204 51 62);
	border-radius: 10px;
	padding: 1rem;
	display: flex;
}
.container_single_left{margin-left:0;}
.container_single_right{margin-right:0;}

.img_left, .img_right{height: 90%;margin: 0 auto;}

.img_left figure, .img_right figure{height:100%; max-width: 100%;}

.img_left figure img, .img_right figure img{height:100%;}


.container_single_left figcaption, .container_single_right figcaption{
	font-family: 'Handlee', cursive;
	font-size: 25px;
	padding-right:10px;
	color: #494949;
}



/*  REFERENCE *************************************************************************/
/*  BRAUTFRISUREN *************************************************************************/
#Brautfrisuren{
	padding:100px 1rem;
	width:100%;
	text-align: center;
	background-color: whitesmoke;
}
.container_Brautfrisuren{
	height:80vh;
	padding-top: 3rem;
	background-image: url('../images/Hintergründe/pexels-karolina-grabowska-4041201.jpg');
	background-repeat: no-repeat;
	background-size:cover;
	background-position: center center;

    /*border: 4px solid white;*/
    border-radius: 10px;
}


/*  Brautfrisuren SLIDER JAVA************************************************************************/
#slides {
	position: relative;
	height:100%;
}

#slides img{
	width:35%;
	max-height:90%;
	border-radius: 5px;
	border: solid 1px white;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5)
}

.slide {
	margin:0;
	position: absolute;
	left: 0; top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0;
	z-index: 1;
	transition: opacity 1s;
}
.showing {opacity: 1;z-index: 2;}
.slide figcaption {
    font-family: 'Handlee', cursive;
    font-size: 25px;
	padding-top:10px;
    padding-right: 10px;
    color: #494949;
}

/*  REFERENCE *************************************************************************/
/* Brautfrisuren Details ****************************************/
.container_single_inside{
	padding-top:20px;
	text-align:left;
	list-style-position: inside;
}

.container_single_inside_img{
	height: 90%;
	width: 48%;
	margin: 1rem 0 0 auto;
	overflow: hidden;
}
.container_single_inside_img img {width:90%;}


/*  REFERENCE *************************************************************************/
/* Haarverlängerung ************************************************************************/
#Haarverlängerung{	
	min-height:100vh; 
	padding:150px 1rem 0;
	background: whitesmoke;
	text-align: center;
}

#Haarverlängerung .container_single_inside{padding-left: 10px;}
#Haarverlängerung .container_single_inside li, #Haarverlängerung .container_single_inside p{font-size:22px}


/*  REFERENCE *************************************************************************/
/* Schnitte Schnitttechniken ************************************************************************/
#Schnitte{	
	min-height:100vh; 
	padding:150px 1rem;
	background: whitesmoke;
	text-align: center;
}

#Schnitte .img_left, #Schnitte .img_right{    
	height: 90%;
    width: 200%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

#Schnitte .img_scissor-and-comb {width: 70%;margin: 5% 1%;}
#Schnitte .img_scissor-and-comb img{width:100%;}

/* Verzögerung *************************************************************************************************************/
/* - für unterschiedliche Browser            chrome*                        mozilla					  opera*/
#logo-header { transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;}
.container_img_header { transition: all 300ms; -webkit-transition: all 300ms; -moz-transition: all 300ms; -o-transition: all 300ms;}

