/*

======

Michael Klüsner
Yoga Birke 12

Design: Stella Burkschat
Code: Bileam Tschepe

All rights reseverved.

======

INDEX

0. Fonts
1. Basics
2. Navigation & Logo
    2.1 Header
    2.2 Logo
    2.3 Burger
    2.4 Menu
3. Main
    3.1 Content
    3.2 Termine
	3.3 Gallery
4. Imp & Dat
5. Other
6. Media Queries
    6.1 Tablet
    6.2 Small Desktop
    6.3 Desktop
    6.4 Big screens
    6.5 Portrait

======

COLORS:

Dark Green/Brown: 	#46422b
Bright/Neon Green: 	#c9db2d
Light Brown: 		#cfc589
Organe: 			#ea5b0c


*/



/*
========================================================================================================
0. Fonts
========================================================================================================
*/

@font-face {
    font-family: AmaranthRegular;
    src: url(../fonts/AmaranthRegular.ttf);
}

@font-face {
    font-family: RobotoRegular;
    src: url(../fonts/RobotoRegular.ttf);
}

@font-face {
    font-family: RobotoBold;
    src: url(../fonts/RobotoBold.ttf);
}

@font-face {
    font-family: RobotoCondensedRegular;
    src: url(../fonts/RobotoCondensedRegular.ttf);
}

@font-face {
    font-family: RobotoCondensedBold;
    src: url(../fonts/RobotoCondensedBold.ttf);
}


/*
========================================================================================================
1. Basics
========================================================================================================
*/


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
}


h1, h2, h3, h4, h5, h6, p, a, ul, li, img {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 30px;
    color: #46422b;
    font-family: RobotoCondensedBold;
    text-transform: uppercase;
    font-weight: 200;
	text-align: center;
    margin-bottom: 10px;
	margin-top: 20px;
}

h1 span {
    font-family: RobotoCondensedRegular;
	text-transform: lowercase;
}

h2 {
    font-size: 30px;
    color: #fff;
    font-family: RobotoCondensedRegular;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    font-family: RobotoCondensedRegular;
    color: #46422b;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}


/*
========================================================================================================
2. Navigation & Logo
========================================================================================================
*/


/*
2.1 Header
===============================================
*/

header {
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: auto;
    padding: 20px 30px;
    box-sizing: border-box;
    background: #46422b;
    display: table-cell;
    vertical-align: middle;
}

.headerContent {
    width: 100%;
    height: 50%;
}


/*
2.2 Logo
===============================================
*/

div.logo {
    float: left;
}

div.logo p {
    font-family: AmaranthRegular;
    font-size: 30px;
    color: #fff;
}

div.logo span {
    color: #c9db2d;
}



/*
2.3 Burger
===============================================
*/

.burger {
    float: right;
}

.burgerBar {
    width: 35px;
    height: 4px;
    background-color: white;
    margin: 6px 0;
}



/*
2.4 Menu
===============================================
*/

menu#toggleMe  {
    position: fixed;
    z-index: 999;
    top: 70px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #46422b;
    box-sizing: border-box;
    padding: 30px;
    margin: 0;
}


menu#toggleMe ul li {
    list-style-type: none;
    margin-bottom: 5px;
}

menu#toggleMe ul li a {
    font-family: RobotoCondensedRegular;
    color: #cfc589;
    font-size: 24px;
}

menu#toggleMe ul li a.active {
    font-family: RobotoCondensedBold;
}


menu#mDesktop {
    display: none;
}


/*
========================================================================================================
3. Main
========================================================================================================
*/


main {
    position: absolute;
    top: 70px;
	left: 0;
    width: 100%;
	box-sizing: border-box;
}

/*
3.1 Content
===============================================
*/

div.content {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    margin: 0 auto;
}

div.content.green {
    background: #c9db2d;
}

div.content.lightBrown {
    background: #cfc589;
	text-align: center;
}

div.content.lightBrown p {
	font-size: 22px;
}

hr.divider {
	background: #fff;
	height: 2px;
	width: 130%;
	margin-left: -20%;
	margin-top: 50px;
	margin-bottom: 50px;
	border: 0;
}

div.content.impressum p {
	font-size: 16px;
}

/*
3.2 Termine
===============================================
*/


div.content.lightBrown a {
	color: #46422b;
	text-decoration: underline;
}

hr.headingLine {
	background: #fff;
	height: 2px;
	width: 130%;
	margin-left: -20%;
	margin-top: 80px;
	border: 0;
}

div.headingEllipse {
    width: 200px;
    height: 50px;
	margin: 0 auto;
    border-radius: 200px / 50px;
	background: #fff;
	margin-top: -34px;
}

div.content h4 {
	color: #46422b;
	margin-top: -38px;
    font-family: RobotoCondensedRegular;
	font-size: 22px;
	margin-bottom: 45px;
}

.termin {
	margin-bottom: 20px;
}

.termin .timeAndPerson {
	color: #fff;
    font-family: RobotoCondensedBold;
	font-size: 22px;
}

.termin .timeAndPerson span.mit {
    font-family: RobotoCondensedRegular;
}

.termin .timeAndPerson span.name {
	color: #ea5b0c;
}

.termin .title {
    font-family: RobotoCondensedBold;
}


/*
3.3 Gallery
===============================================
*/

div.content.gallery {
	background: #46422b;
}

img.galleryImg {
	margin-bottom: 10px;
}

img.galleryImg.d {
	display: none;
}


/*
3.4 Kontakt
===============================================
*/

img.contactImg {
	width: 150px;
	border-radius: 50%;
	border: 0;
	margin-bottom: 20px;
}




/*
========================================================================================================
4. Imp & Dat
========================================================================================================
*/



/*
========================================================================================================
5. Other
========================================================================================================
*/



/*
========================================================================================================
6. Media Queries 
========================================================================================================
*/


/*
6.1 Tablet
===============================================
*/


@media only screen and (min-width: 768px) {
    
}


/*
7.2 Small Desktop
===============================================
*/

@media only screen and (min-width: 992px) {
    
    
    header {
        padding: 20px 15%;
    }
    
    div.content {
        padding: 30px 15%;
    }
    
    div.content.green {
        padding: 50px 15% 100px 15%;
    }
	
    .burger {
        display: none;
    }
    
    menu#mDesktop {
        display: block;
        float: right;
        margin: 0;
        padding: 0;
    }

    menu#mDesktop ul {
        list-style-type: none;
        margin-right: 17px;
    }

    menu#mDesktop ul li {
        margin-top: 9px;
        margin-left: 13px;
        float: left;
        text-align: right;
        font-size: 16px;
    }

    menu#mDesktop ul li a {
        font-family: RobotoCondensedRegular;
        color: #cfc589;
    }

    menu#mDesktop ul li a.active {
        font-family: RobotoCondensedBold;
		color: #fff;
    }
    
    #indexImg {
        width: 30%;
    }
	
	hr.divider {
		width: 100%;
		margin-left: 0;
	}
	
	hr.headingLine {
		width: 100%;
		margin-left: 0;
	}
	
	img.galleryImg.m {
		display: none;
	}
	
	img.galleryImg.d {
		display: block;
	}
    
}


/*
7.3 Desktop
===============================================
*/


@media only screen and (min-width: 1382px) { 
	    
    
    header {
        padding: 20px 20%;
    }
    
    div.content {
        padding: 30px 20%;
    }
    
    div.content.green {
        padding: 50px 20% 100px 20%;
    }

    menu#mDesktop ul li {
        margin-top: 10px;
        margin-left: 20px;
        font-size: 18px;
    }
    
}


/*
7.4 Big screens
===============================================
*/

@media only screen and (min-width: 2000px) {
	
	
    header {
        padding: 20px 30%;
    }
    
    div.content {
        padding: 30px 30%;
    }
	
}

/*
7.5 Portrait
===============================================
*/


@media only screen and (orientation: portrait) {
    
}
