/*CSS*/

/*
Theme Name: SimpleZombi
Theme URI: http://www.tekzombi.com/
Author: Jessica Bilstein
Author URI: http://www.tekzombi.com
Description: The 2017 theme for TekZombi.
Version: 1.0
*/

/*Reset*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	overflow-y: auto;
	height:100%;
	width:100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

*, *:before, *:after {
	box-sizing: border-box;
    	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

img, a {
	border:0;
	outline:0;
}

.hide {
	display:none;
}

/*-----------------------------------
HTML---------------------------------*/

html {
	height:100%;
	width:100%;
}

body {
	height:100%;
	width:100%;
	font-family:Arial, Helvetica, sans-serif;
}

div {
	position:relative;
}

p {
	margin:10px;
}

#wrapper {
	width:100%;
	min-height:100%;
	height:auto;
	background-color:hotpink;
	color:#333;
}

h1, h2, h3 {
	font-family: 'Righteous', cursive;
}

/*HEADER*/
header {
	margin:auto;
	text-align: center;
	width: 100%;
	padding: 5px;
	background-color:hotpink;
	color:white;
	z-index:2;
}

header a {
	color:white;
	text-decoration:none;
}

header span.logo {
	position: relative;
	display: block;
	margin: auto;
	margin-bottom: -20px;
	margin-bottom:-5vmin;
	margin-left:50px;
	margin-left:4vw;
	z-index: 3;
}

header span.logo.mid {

}

header span.logo.bot {
	margin-bottom:20px;
}

header h1 {
	font-size: 125px;
	font-size: 20vh;
	display: inline;
	vertical-align: middle;
	letter-spacing: 50px;
	letter-spacing: 4vw;
}

header h1.first {
	margin-right: -15px;
	margin-right: -1vw;
}

header h2 {
	font-size: 60px;
	font-size: 10vh;
	display: inline;
	vertical-align: middle;
	letter-spacing: 50px;
	letter-spacing: 4vw;
}

header #logo {
	display: inline;
	vertical-align: middle;
	height: 150px;
	height: 20vh;
	margin-right: 2.5vw;
}

header img.img-circle {
	border-radius: 50%;
	border: 10px white solid;
	border: 2vh white solid;
	//box-shadow: 0px 0px 5px 5px #333;
	box-shadow: 0 0 15px 3px #fff;
}

/*MENU-NAVICON*/
#navicon {
	position:fixed;
	top:0;
	right:0;
	width: 100%;
	text-align: right;
	transform: translate3d(0,0,0);
	z-index:100;
}

#navicon.fix_head {
//	background: hotpink;
	background: #333;
	background: rgba(51, 51, 51, 0.97);
//	box-shadow: 0px 0px 5px 3px #333;
	transition: 0.25s; 
}

#navicon.fix_head.nav_open {
	background: initial;
}

.navicon_button {
	display: inline-block;
	position: relative;
	padding: 1.5rem .9rem 1.25rem;
	transition: 0.25s;
	cursor: pointer;
	user-select: none;
	opacity: .8;
}

.navicon_button .navicon:before, .navicon_button .navicon:after {
	transition: 0.25s; 
}

.navicon_button:hover {
	transition: 0.5s;
	opacity: 1;
}

.navicon_button:hover .navicon:before, .navicon_button:hover .navicon:after {
	transition: 0.25s;
}

.navicon_button:hover .navicon:before {
	top: .825rem;
}

.navicon_button:hover .navicon:after {
	top: -.825rem;
}


.navicon {
	position: relative;
	width: 2.5em;
	height: .3125rem;
	background: #FFF;
	transition: 0.5s;
	border-radius: 2.5rem;
}

.navicon:before, .navicon:after {
	display: block;
	content: "";
	height: .3125rem;
	width: 2.5rem;
	background: #FFF;
	position: absolute;
	z-index: -1;
	transition: 0.5s 0.25s;
	border-radius: 1rem;
}

.navicon:before {
	top: .625rem;
}

.navicon:after {
	top: -.625rem;
}


.open:not(.steps) .navicon:before,
.open:not(.steps) .navicon:after {
	top: 0 !important; 
}

.open .navicon:before,
.open .navicon:after {
	transition: 0.5s; 
}

.open.x .navicon {
	background: transparent; 
}

.open.x .navicon:before {
	transform: rotate(-45deg); 
}

.open.x .navicon:after {
	transform: rotate(45deg); 
}

/*MENU-OVERLAY*/
nav {
	position:fixed;
	right: 0;
	top: 0;
	height:100%;
	width:0;
	transform: translate3d(0,0,0);
	z-index:99;
	background-color: rgb(51,51,51); /* Black fallback color */
	background-color: rgba(51,51,51, 0.97); /* Black w/opacity */
	overflow-x: hidden; /* Disable horizontal scroll */
	transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

.overlay_content {
	position: relative;
	top: 25%;
	width: 100%; /* 100% width */
	text-align: center; /* Centered text/links */
	margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

.overlay_content h2 {
	color:white;
}

.overlay_content a {
	display:block;
	width:100%;
	font-size: 60px;
	font-size: 10vmin;
	padding:15px;
	text-decoration: none;
	font-family: 'Righteous', cursive;
	//font-family: 'Lato', sans-serif;
 	letter-spacing: 10px;
	letter-spacing: .8vw;
	color:white;
	transition: 0.3s; /* Transition effects on hover (color) */
}

.overlay_content a:hover, .overlay_content a:focus {
	color:hotpink;
}

.overlay_content a.redLink:hover, .overlay_content a.redLink:focus {
	color:red;
}

.overlay_content a.orangeLink:hover, .overlay_content a.orangeLink:focus {
	color:orange;
}

/*CONTENT*/
#content {
	width:100%;
	display: inline-block;
	padding: 5px;
	font-family: 'Lato', sans-serif;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 0 5px 3px #333;
	z-index:3;
}

/*FOOTER*/
#catch {
	height:50px;
}

footer {
	background-color: #D3BCD8;
	position: relative;
	bottom: 0px;
	width: 100%;
	height: 50px;
	margin-top: -50px;
	text-align: center;
	box-shadow: inset 0px 7px 8px -3px #333;
}

footer #copy {
	position:absolute;
	width:100%;
	height:40px;
	bottom:0;
}

footer #copy p {
	font-family: 'Righteous', cursive;
	margin:5px;
}