/*
Theme Name: teyerfoto
Author: Leander Eyer
Description: Theme Customized for Tamara Eyer Fotographie
Version: 1
*/

/*	CSS Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
}

body {
	color: #666666;
	font-family: Arial;
	font-size: 18px;
	line-height: 1.5;
}

body::-webkit-scrollbar {
    display: none;
}

div.wrapper {
	background-color: #F0F0F0;
}

#header_wrap	{
	z-index: -1;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow-y: hidden;
	display: flex;
	flex-direction: row;
}

#header_img {
	position: relative;
	min-width: 100vw;
	min-height: 100vh;
	object-fit: cover;
	align-self: center;
	filter: grayscale(100%);
	transition: filter 10s;
}

#pic1 {
	filter: grayscale(100%);
	transition: filter 3s;
}

#header_img.final, #pic1.final {
	filter: none !important;
}

#header_cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	align-self: center;
/*	background: radial-gradient(closest-corner, transparent 20%, #F0F0F0 80%);*/
}

/************************/
/*	Mobile Menu Styles */

#mobileTrigger, #mobileClose {
	display: none;
	position: absolute;
	cursor: pointer;
	right: 24px;
	top: 24px;
	z-index: 1000;
}

div.mobileNav {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;

	width: 100%;
	min-height: 100%;
	background-color: #F0F0F0;
	overflow: hidden;
}

img.mobileNavLogo {
	display: block;
	
	height: 74px;
	
	padding-top: 24px;
	padding-left: 24px;
	margin-bottom: 30px;
}

ul.mobileNavList {
	margin: 30px 0 0 33%;
	list-style-type: none;
	display: flex;
	flex-direction: column;
}

ul.mobileNavList li {
	margin-top: 25px;
}

ul.mobileNavList li:hover {
	cursor: pointer;
	color: #6E6E6E; 
}

ul.mobileNavList li a {
	font-size: 20px;
	text-decoration: none;
	font-weight: normal;
	color: #A6ADB4; 
}


#gradient {
	position: relative;
	z-index: 2;
	height: 100px;
	width: 100%;
	margin-top: 100vh;
	margin-bottom: 0;
	background: linear-gradient(transparent, #F0F0F0);
}

#content_wrapper {
	position: relative;
	z-index: 2;
	background-color: #F0F0F0;
	margin: 0;
	min-height: 100vh;
}

	
#content {
	padding-top: 75px;
	padding-bottom: 50px;
	width: 100vw;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
}

h2.post-title {
	font-size: 3rem;
	margin-bottom: 2rem;
	text-align: left;
}

div.grsMasImFrCont {
	box-shadow: none !important;
	padding: 0px !important;
}

p {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

/*	Matrix Menu on Front Page */
div.matrix {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	
	margin-top: 48px;
	margin-bottom: 48px;
	margin-right: -32px;
	width: 1032px;
}

div.matrixCell {
	width: /*calc(33.33% - 0.67rem)*/312px;
	height: 180px;
	position: relative;
	overflow: hidden;
	
	margin-bottom: 32px;
	margin-right: 32px;
}

div.matrixText {
	color: white;
	z-index: 10;
	text-align: left;
	position: absolute;
	bottom: 1rem;
	left: 1rem;
}

div.matrixImage img {
	width: 100% !important;
	z-index: 5;
	object-fit: cover;
}

/*	Header Styles */

div.header {
	max-width: 1000px;
	margin: 0 auto;
	padding: 24px 0;
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}

/*	Header Menu */
div.header-menu {
	margin-top: 30px;
}

div.header-menu-item {
	display: inline-block;
	margin-left: 24px;
}

div.header-menu-item a {
	text-decoration: none;
	color: #666666;
}

div.header-menu-item a:hover {
	color: #000000;
}


div.content {
	padding: 48px 0;
	max-width: 1000px;
	margin: 0 auto;
}

/*	Logo */
#logo {
	height: 50px;
}

/*	Header Image */
div.header_image {
	max-height: 40vh;
	width: 100%;
	overflow: hidden;
}

div.header_image img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	margin-top: -100px;
}

/*  Footer Styles */
.footerWrapperOuter {
    background-color: #F0F0F0;
    z-index: 2;
}

.footerWrapperInner {
    padding: 64px 0 48px 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer {
	font-size: 0.8em;
	width: 100%;
    max-width: 1000px;
    color: #666666;
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.footerElement {
	margin-bottom: 1rem;
}

.footer a {
	text-decoration: none;
	color: #666666;
}
.footer a:hover {
	text-decoration: underline;
}

.footer svg {
    margin-right: 0.5rem;
    vertical-align: bottom;
}

/* Kontaktformular */
input[type='text'], input[type='email'], textarea {
	padding: 0.5rem 1rem;
	width: 60%;
}

input[type='submit'] {
	margin-top: 2rem;
	padding: 0.5rem 1rem;
	width: 20%;
}

/**	Mobile Optimized Styles */
@media only screen and (max-width: 999px) {
	div.content, #content {
		width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}
	
	div.matrix {
		width: calc(100% + 24px);
		margin-right: -24px;
	}
	
	div.matrixCell {
		width: calc(50% - 24px);
		margin-right: 24px;
	}

	img#logo {
		padding-left: 24px;
	}
	
	div.header_image {
		display: none;
	}
	
	h2.post-title {
		text-align: left;
		
	}
	
	div.header-menu {
		display: none;
	}
	
}

@media only screen and (max-width: 500px) {
	

	div.matrix {
		width: 100%;
	}
	
	div.matrixCell {
		width: 100%;
		margin-right: 0;
	}
	
	div.header_image {
		display: none;
	}
	
	div.header-menu {
		display: none;
	}

	#mobileTrigger {
		display: block;
	}

	/* Kontaktformular */
	input[type='text'], input[type='email'], textarea {
		padding: 0.5rem 1rem;
		width: 100%;
	}

	input[type='submit'] {
		margin-top: 2rem;
		padding: 0.5rem 1rem;
		width: 100%;
	}

	
}
