html {
	margin: 0;
	padding: 0;
	background-color: #FFFCEE;
}

body {
	background-color: #FFFCEE;
	font-family: "Lucida Grance", sans-serif;
	color: #1C1700;
	font-size: 1em;
	margin: 0;
	padding: 0;
}

.wrapper {
	max-width: 800px;
	margin: 0 auto;
	
}

.wrapperSmall {
	max-width: 700px;
	margin: 0 auto;
	margin-bottom: 1em;
}

#header {
	border-top: 10px solid #234A66;
	padding: 1em;
}

#header h1 a {
	display: block;
	background-image: url(img/logo.png);
	background-repeat: no-repeat;
	background-size: 82px;
	background-position: left top;
	min-width: 165px;

	color: #2A4761;
	text-decoration: none;
	text-align: left;
	font-size: 0.7em;
	margin-bottom: 0;
}

#header h1 span#name {
	display: block;
	padding-left: 100px;
	padding-top: 15px;
	padding-bottom: 20px;
}

#header h1 span.sub {
	display: block;
	font-size: 0.7em;
	color: #72A1AA;
	font-weight: normal;
}


#welcome {
	background: #FCFCFC;
	padding: 2em;
	border-bottom: 2px solid #FFF8D7;
	margin-bottom: 2em;
}

.borderBottom {
	border-bottom: 2px solid #FFF8D7;
}

#schwerpunkte,
#ueber,
#behandlung,
#kontakt,
#generalPage {
	padding: 2em;
	background: #FCFCFC;
}

#coaching,
#therapie {
	padding: 2em;
}

p.intro,
.textLeft {
	float: left;
	display: block;
	max-width: 500px;
}

.textRight {
	float: right;
	display: block;
	max-width: 500px;
}

.addPadding {
	max-width: 400px;
	padding: 0 0.1em;
}

#schwerpunkte,
.clear {
	clear: both;
}

h2 {
	color: #2A4761;
	border-bottom: 2px solid #2A4761;
	
}

h3 {
	color: #2A4761;
}

p {
	line-height: 150%;
	text-align: justify;
}


.wrapper ul li {
	line-height: 150%;
}

main a {
	color: #2A4761;
}

main a:hover {
	text-decoration:none;
}

a.button {
	background-color: #2A4761;
	padding: 0.7em;
	color: #FFFCEE;
	text-decoration: none;
}

a.button:hover {
	text-decoration: underline;
}

#profilePic,
.imageLeft,
.imageLeft img {
	float: right;
	display: block;
	width: 250px;
	max-width: 250px;
}

.imageLeft img {
	width: 200px;
	max-width: 200px;
}

.imageRight,
.imageRight img {
	float: left;
	display: block;
	width: 200px;
	max-width: 200px;
}

.hpImg {
	filter: grayscale(1) brightness(1.1);
  	mix-blend-mode: multiply;
  	transition: .5s ease;
}

.color-overlay {
	transition: .5s ease;
	width: 200px;
	max-width: 200px;
	display: inline-block;
	background-color: rgba(35, 74, 102, 0.2);
}

.wrapperSmall:hover .color-overlay {
	background-color: transparent;
}

.wrapperSmall:hover .color-overlay .hpImg {
	filter: none;
}

.buttonLink {
	display: block;
	background: #234A66;
	padding: 1em;
	color: #fff;
}

#footer {
	border-top: 2px solid #FFF8D7;
 	border-bottom: 10px solid #234A66;
 	padding: 1em;
}

#footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

#footer li {
	display: inline;
}




.navbar {
	background-color: #234A66;
	color: white;
	display: flex;
	align-items: center;
	padding: 0 20px;
	height: 60px;
	position: relative;
}

span.current {
	display: block;
	width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #FCFCFC;
	margin: 0 auto;
	margin-top: -10px;
}

.menu {
	list-style: none;
	display: flex;
	margin-left: auto;
	max-width: 800px;
	margin: 0 auto;
}

.menu li a {
	color: white;
	text-decoration: none;
	padding: 0 15px;
	display: block;
	line-height: 60px;
}
 .menu li a:hover {
  	text-decoration: underline;
 }

.hamburger {
	display: none;
	font-size: 1.8rem;
	cursor: pointer;
	margin-left: auto;
}

#toggle {
	display: none;
}

/* Responsive Rules */
@media (max-width: 768px) {
	#header h1 a {
		background-size: 41px;
		font-size: 0.6em;
		margin-bottom: 0;
	}
	
	#header h1 span#name {
		padding-top: 0px;
		padding-left: 60px;
	}


  .hamburger {
    display: block;
  }

  .menu {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background-color: #234A66;
    flex-direction: column;
    display: none;
  }

  .menu li a {
    line-height: 40px;
    padding: 10px 20px;
  }
  
  span.current {
  	display: none;
  }

  #toggle:checked + .hamburger + .menu {
    display: flex;
  }
  
  #welcome p.intro {
  	max-width: 230px;
  }
  
  #profilePic {
  	width: 100px;
  }
  
	.imageRight,
	.imageRight img {
		float: none;
	}
  
}