@charset "utf-8";
/**
 * Wunderhaar CSS
 *
 * Theme Name:     Wunderhaar
 * Version:        1.0
 * Date:           1. January 1970
 * Author:         Heading North
 * Author URI:     https://www.headingnorth.at
 */

/* ==========================================================================
Base
========================================================================== */
* {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	min-height: 100%;
	text-align: center;
}

html {
	-webkit-text-size-adjust: 100%; 
	-ms-text-size-adjust: 100%;
}

html, html a {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	background: #fff;
	text-shadow: 0px 0px 30px rgba(0, 0, 0, 1);
}

a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #fff;
	-webkit-transition: border-color .3s;
	transition: border-color .3s;
}

a:hover {
	text-decoration: none;
	border-color: transparent;
}

h2 {
	font-weight: 700;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
	top: 0;
	left: 0;
}

/* ==========================================================================
Layout
========================================================================== */
.site-header {
	position: relative;
	padding-top: 20%;
	z-index: 20;
}

.main {
	position: relative;
	padding: 70px 0;
	z-index: 20;
}

.site-footer {
	position: relative;
	padding-top: 2%;
	z-index: 20;
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: #fff url(images/hair.jpg) center center no-repeat;
	background-size: cover;
}

.background:before {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 5;
	width: 2px;
	height: 100%;
	margin-left: -1px;
	content: '';
	background: #000;
}

.background:after {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 5;
	height: 2px;
	width: 100%;
	margin-top: -1px;
	content: '';
	background: #000;
}

/* ==========================================================================
Modules
========================================================================== */
.logo {
	height: auto;
	max-width: 140px;
	margin-bottom: 70px;
}

.icon {
	height: auto;
	max-width: 25px;
}

/* ==========================================================================
Responsive
========================================================================== */
@media screen and (min-width: 768px) {
	.site-header {
		padding-top: 10%;
	}

	.logo {
		max-width: 180px;
	}
}