/*   
Theme Name: Martin Jankowski Theme
Theme URI: http://martin-jankowski.de
Description: Theme für Martin Jankowski
Author: Jan Kossick
Author URI: https://jankossick.de
*/

/*** html tags ***/

html {
	box-sizing: border-box;
}
*, ::before, ::after {
	box-sizing: inherit;
}

html,body {
	margin: 0;
	padding: 0;
}
body, p, td, h1, h2, h3, h4 {
	font-family: "Courier", monospace;
	color: #26201c;
	font-size: 0.9em;
	line-height: 137%;
}

h1 { font-size: 1.2em; }
h2 { font-size: 1.1em; }
h3 { font-size: 1.0em; }
h4 { font-size: 0.9em; }

h1,h2,h3,h4,h5,h6 {
	font-family: "Montserrat", sans-serif;
}

a {
	color: #ff3a00
}
a:hover {
	color: #ff7100;
}

/*** structure ***/

#wrapper {
	max-width: 1400px;
	margin: 0 auto;
	position: absolute;
	min-height: 100%;
	background: no-repeat fixed center bottom;
	background-size: cover;
	left: 0;
	right: 0;
	border-left: 1px solid #26201c;
	border-right: 1px solid #26201c;
}
#header {
	height: 100px;
	text-align: right;
}
#footer {
	clear: both;
	padding: 10px;
	background-color: #fff;
	border-top: solid 1px #26201c;
	width: 100%;
	position: absolute;
	bottom: 0;
	font-size: 0.8em;
}
#main {
	width: 100%;
}
.content, .sidebar {
	display: inline-block;
	vertical-align: top;
}
.sidebar {
	width: 29%;
	padding: 2%;
}
.content {
	width: 69%;
	padding: 2%;
	padding-bottom: 5%;
}

/*** sidebar ***/
.sidebar img {
	max-width: 100%;
}

/*** headline & menu ***/
#header a {
	color: #26201c;
	text-decoration: none;
}
#header .headline {
	display: inline-block;
	width: 39%;
	text-align: right;
	padding-right: 5%;
}
#header .title {
	font-family: "Montserrat", sans-serif;
	font-size: 2em;
	text-transform: uppercase;
}
#header .subtitle {
	font-size: 0.9em;
	font-weight: bold;
}

#header .menu {
	background-color: #ff3a00;
	display: inline-block;
	text-align: left;
	width: 60%;
}
#header .menu a {
	display: inline-block;
	margin: 0;
	padding: 75px 1% 1% 1%;
	background-color: #ff3a00;
	font-weight: bold;
}
#header .menu a:hover, #header .menu a.selected {
	background-color: #ff7100;	
}

/*** front page ***/
#frontpage .content {
	background-color: rgba(255,255,255,0.5);
	width: 39%;
	margin: 5%;
}

/*** books ***/
#books .content {
	width: 100%;
}
#books .book {
	position: relative;
	display: inline-block;
	width: 200px;
	height: 275px;
	overflow: hidden;
	margin: 2%;
}
#books .book img.cover {
	display: block;
	height: 100%;
	width: auto;
	margin: auto;
	border: solid 1px #ccc;
}

#books .book:hover .hover {
	display: block;
}
#books .book .hover {
	display: none;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,113,0,0.9);
	color: #26201c;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size: 1em;
	text-transform: uppercase;
	cursor: pointer;
}
#books .book .description {
	position: absolute;
	bottom: 7%;
	left: 3%;
	right: 3%;
}
#books .book .title {}
#books .book .butterfly {
	display: inline-block;
	width: 18%;
	margin: 2%;
}
#books .book .type {
	font-weight: bold;
}