/* 
 *	Name: Responsive layout;
 *	Author: Andor Nagy;
 *	Website : andornagy.com;
 *	
------------------------------------------
 * 
 *	Responsive Layout is lightweight css and html layout 
 *	that can help you kickstart your website development.
 *
 *	You are free to use this framework for you own projects
 *	and for client works. Credit is always welcome.
 *
 *	DO NOT sell it as your own work.
 *  
--------------------------------------------- */


/* General Styles
--------------------------------------------- */

body {
    margin: 0;
    padding: 0;
}
hr {
    border: 0;
    width: 100%;
    height: 10px;
    background-color: #f7a600;
    margin-top: 20px;
}

.hrkontakt {
    margin-bottom: 20px;
}

.logo-oben {
    display: none;
}

/* Imports
--------------------------------------------- */

@import url(http://fonts.googleapis.com/css?family=Roboto+Slab);
@import url(http://fonts.googleapis.com/css?family=Open+Sans);

/* Helper Classes
--------------------------------------------- */

.clearfix {
    display: block;
    clear: both;
}

/* Basis
--------------------------------------------- */

body {
    font-size: 18px;
    line-height: 32px;
    color: #333;
    word-wrap: break-word !important;
    font-family: 'Open Sans', sans-serif;
}
p {
    margin: 0 0 24px;
    margin: 0 0 2.4rem;
    padding: 0;
}
span {
    font-weight: 700;
}
.kursivschrift {
    font-weight: normal;
    font-style:italic;
}

.bildunterschrift {
    font-size: 0.8em;
    line-height: 1;
}
.brief {
    background-color: #fbcf75;
    padding: 10px;
    font-style: italic;
    
}
.bgdunkler {
    background-color: #fbcf75;
}

/* Links
--------------------------------------------- */

a {
    text-decoration: none;
    color: #FF5722
}
a:hover {
    text-decoration: underline;
    color: #E64A19;
}

#aktiv {
    text-decoration-line: underline;
    
}

/* Überschriften
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-family: "Roboto Slab", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
img {
    max-width: 100%
}
#cover {
    padding: 20px;
}
figure {
    width: 100%;
    font-size: 0.7em;
    padding: 20px 0;
}

/* Sections
--------------------------------------------- */

#container {
    margin: 0 auto;
    max-width: 1200px;
}

/* Header
--------------------------------------------- */

header {
    width: 100%;
    padding: 0;
    /*background-color: #FF5722;*/
}
header #title {
    font-size: 50px;
    color: #fff;
}

/* Navigation
--------------------------------------------- */

nav {
    width: 97%;
    background-color: #f7a600;
    padding: 0 1.5% 0 1.5%;
    border-bottom: 5px solid #333;
}
nav ul li {
    display: inline-block;
    padding: 15px 1.5% 15px 1.5%;
}
nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1.2em;
}
nav ul li a:hover {
    color: #f7a600;
    background-color: #fff;
    padding: 10px 0;
    text-decoration: none;
}
#menu {
    text-align: center;
}

/* Content
--------------------------------------------- */

#content {
    float: left;
    padding: 3%;
    width: 64%;
}

/* content ohne aside (Seitenleiste) */
#content2 {
    text-align: center;
    float: left;
    padding: 3%;
    width: 94%;
} 



/* Seitenleiste
--------------------------------------------- */

aside {
    float: right;
    padding: 3%;
    width: 24%;
    background-color: #fbcf75;
    border-bottom: 5px solid #333;
}
#copyright {
    font-size: 0.6em;
    line-height: 1;
}

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

footer {
    width: 94%;
    padding: 3%;
    background-color: #f7a600;
    border-top: 5px solid #333;
    color: #fff;
    text-align: center;
}

/* rt
--------------------------------------------- */

footer a {
    color: #000;
    text-decoration: none;
    padding-right: 10px;
}
footer a:hover {
    color: #fff;
    background-color: #f7a600;
    text-decoration: none;
}

/*Style 'show menu' label button and hide it by default*/

.show-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    font-weight: 700;
    color: #000;
    background: #fbcf75;
    text-align: center;
    padding: 10px 0;
    display: none;
}

/*Hide checkbox*/

input[type=checkbox] {
    display: none;
}

/*Show menu when invisible checkbox is checked*/

input[type=checkbox]:checked ~ #menu {
    display: block;
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width: 768px) {
    header {
        text-align: center;
    }
    nav {
        text-align: center;
        width: 100%;
        padding: 0;
    }
    #content {
        width: 94%;
        padding: 3%;
    }
    #sidebar {
        width: 94%;
        padding: 3%;
        border-top: 3px solid #000;
    }
    nav ul {
        position: static;
        display: none;
    }
    nav li {
        margin-bottom: 1px;
    }
    /*Make all menu links full width*/
    nav ul li,
    li a {
        width: 100%;
    }
    .show-menu {
        display: block;
    }
}




/* Einzelne Seiten
-----------------------------------------------
Ambulante Hilfe */

.ah {
    list-style-type: disc;
}

/*
@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}
*/


