@charset "UTF-8";

/*
Theme Name: Antal Balázs Photo Basic Theme
Description: Bsaic WordPress theme
Version: 1.0.0
*/


:root {
	/* SIZES */
	--header-height-size: 70px;
	--container-max-width: 1200px;
	--container-narrow-max-width: 800px;
	/* COLORS */
	--base-text-color: #9696a3;
	--secondary-color: #FA6C31;
	--body-background-color: #121921;
	--menu-background-color: #121921;
	--mobile-menu-background-color: #121921f0;
	--separator-color: #d1761b;
	--separator-content-color: #5f5f6d;
}

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box!important;
	color: inherit;
	border: none;
	box-shadow: none;
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
	font-size: inherit;
	text-align: inherit;
	line-height: inherit;
}

body
{
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 13pt;
	background: var(--body-background-color);
	color: var(--base-text-color);
	padding-top: var(--header-height-size);
	text-align: center;
	line-height: 2.4rem;

}


div.container
{
	display: block;
	max-width: var(--container-max-width);
	margin: 0px auto;
	padding: 0px 20px; 
	width: 100%;
}

div.container.narrow
{
	display: block;
	max-width: var(--container-narrow-max-width);
	margin: 0px auto;
	padding: 0px 20px; 
	width: 100%;
}

div.container.narrow > p
{
	text-align: justify;
}



header#pageheader
{
	display: block;
	width: 100%;
	height: var(--header-height-size);
	position: fixed;
	top: 0px;
	z-index: 999;
	background: var(--menu-background-color);
}

	header#pageheader a.logo
	{
		height: var(--header-height-size);
		display: none;
		float: left;
	}
	
		header#pageheader a.logo > img
		{
			height: var(--header-height-size);
			width: var(--header-height-size);
			display: block;
			padding: 15px;
		}
		
	header#pageheader nav
	{
		float: left;
		height: var(--header-height-size);
	}
	
		header#pageheader nav ul
		{
			display: block;
			list-style: none;
			margin-top: 0;
		}

			header#pageheader nav > ul > li
			{
				height: var(--header-height-size);
				float: left;
			}
			
			header#pageheader nav > ul > li > a
			{
				font-size: 11pt;
				display: block;
				height: var(--header-height-size);
				line-height: var(--header-height-size);
				font-weight: 700;
				text-decoration: none;
				text-transform: uppercase;
				padding: 0px 20px;
				cursor: pointer;
			}
			
			header#pageheader nav > ul > li > ul
			{
				display: none;
				background: #333333;
				position: relative;
				top: -20px;
			}
			
			header#pageheader nav > ul > li:hover > ul
			{
				display: block;
			}
			
			header#pageheader nav > ul > li > ul > li > a
			{
				font-size: 11pt;
				display: block;
				text-decoration: none;
				padding: 7px 20px;
				color: #ffffff;
				cursor: pointer;
			}

	
h1, h2, h3, h4, h5, h6
{
	font-weight: 700;
	margin-top: 1.7em;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: .2rem;
	line-height: 2.5rem;
	display: block; 
}

	
p
{
	margin-top: 2em;
}

p.tartsvelem
{
	font-weight: 600;
	text-align: center!important;
}


h1 { font-size: 32pt; margin-top: 0.0em; padding-bottom: 20px; margin-bottom: 30px; }
h2 { font-size: 24pt; }
h3 { font-size: 13pt; }

h1 > span
{
	font-size: 22pt;
}

strong
{
	font-weight: bold;
}
	
section
{
	display: block;
	padding: 40px 0px; 
	width: 100%;
}

section.index
{
	height: calc(100vh - var(--header-height-size));
	padding:  var(--header-height-size) 0px 40px 0px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	clip-path: polygon(100% 0, 100% 85%, 0 100%, 0 15%);
}

	section.index > div.container
	{
		height: 100%;
		color: #ffffff;
		
	}
		
		section.index > div.container > div 
		{
			position: relative;
			top: calc(50% - 150px);
		}
			
			section.index > div.container > div > h1
			{
				font-size: 76.8px;
				border-top: 1px solid var(--separator-color);
				border-bottom: 1px solid var(--separator-color);
				padding: 50px 0px;
				font-weight: 100;
				text-align: center;
			}
			
			section.index > div.container > div > p
			{
				text-transform: none;
				font-size: 20pt;
				font-style: italic;
				text-align: center;
				font-weight: 100;
			}
		
	

section > div.container > hr
{
	width: 20%;
	display: block;
	margin: 30px auto;
	background: var(--separator-color);
	height: 3px;
}

.flex-box-1-columns
{
	display: flex; /* or inline-flex */
	flex-direction: row; /* (default): left to right */
	flex-wrap: wrap;  /* flex items will wrap onto multiple lines, from top to bottom */
	row-gap: 10px;
}

	.flex-box-1-columns > *
	{
		width: 100%;
	}
	
.flex-box-2-columns
{
	display: flex; /* or inline-flex */
	flex-direction: row; /* (default): left to right */
	flex-wrap: wrap;  /* flex items will wrap onto multiple lines, from top to bottom */
	gap: 10px;
}

	.flex-box-2-columns > *
	{
		width: calc(50% - 10px);
	}


.flex-box-3-columns
{
	display: flex; /* or inline-flex */
	flex-direction: row; /* (default): left to right */
	flex-wrap: wrap;  /* flex items will wrap onto multiple lines, from top to bottom */
	gap: 30px;
	align-items: stretch;
}

	.flex-box-3-columns > *
	{
		min-width: calc(33% - 20px);
	}

section.indexgallerychooser .flex-box-2-columns
{
	margin-top: 40px;
	row-gap: 30px;
	column-gap: 20px;
	align-items: stretch;
	justify-content: center;
}

	section.indexgallerychooser .flex-box-2-columns > div
	{
		min-width: calc(50% - 10px);
		background-position: top center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 300px;
		clip-path: polygon(100% 0, 100% calc(100% - 80px), 0 100%, 0 80px);
	}
		
		section.indexgallerychooser .flex-box-2-columns > div > div.overlay
		{
			display: block;
			margin: 0;
			width: 100%;
			height: 330px!important;
			background-color: #121921a0;
			padding: 160px 20px 0px 20px;
			clip-path: polygon(150px 0, 300px 100%, 0 100%, 0 0);
		}
		
		section.indexgallerychooser .flex-box-2-columns > div > div.overlay:hover
		{
			background-color: #121921f0;
		}
		
			section.indexgallerychooser .flex-box-2-columns > div > div.overlay > a
			{
				float: left;
				border-top: 1px solid var(--separator-color);
				padding: 20px 0px;
				font-weight: 100;
				text-align: left;
				font-size: 26.8667px;
				font-weight: 300;
				text-decoration: none;
				color: white;
				line-height: 1rem;
			}
			
				section.indexgallerychooser .flex-box-2-columns > div > div.overlay > a > span
				{
					font-size: 10pt;
					color: var(--base-text-color);
				}

section.indexgallerychooser .flex-box-3-columns
{
	margin-top: 40px;
	row-gap: 30px;
	column-gap: 20px;
	align-items: stretch;
	justify-content: center;
}

	section.indexgallerychooser .flex-box-3-columns > a
	{
		display:block;
		min-width: calc(33% - 20px);
		background-position: top center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 300px;
		clip-path: polygon(100% 0, 100% calc(100% - 40px), 0 100%, 0 40px);
	}
	
	section.indexgallerychooser .flex-box-3-columns > a > img
	{
		width:100%;
		height:100%;
		object-fit: cover;
		object-position: top center;
	}
	
div#antal_balazs_portre
{
	display: block;
	width: 400px;
	height: 400px;
	margin: 60px auto;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 200px;
}

footer
{
	display: block;
	padding: 40px 0px; 
	width: 100%;
	color: #ffffff;
}

	footer > div.container > hr
	{
		width: 100%;
		display: block;
		margin: 30px auto;
		background: var(--separator-content-color);
		height: 1px;
	}
	
	footer .copyinfo
	{
		font-size: 9pt;
	}
	
	footer h2
	{
		padding-bottom: 20px;
		font-weight: 100;
	}
	
	footer div.container a
	{
		margin-top: 30px;
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 64px 64px;
		padding-top: 100px;
		display: block;
		text-decoration: none;
	}
	
	footer ul#footermenu
	{
		display: block;
		list-style: none;
		margin: 0px auto;
		max-width: 600px;
		width: 100%;
		
	}
	
		footer ul#footermenu > li
		{
			display: inline-block;
			font-size: 11pt;
			padding: 0px;
			line-height: 1em;
		}
	
			footer ul#footermenu  > li  > a
			{
				line-height: 30px;
				padding: 0px 20px;
				margin-top: 0px;
			}

#menu_toggle
{
	display: none;
	position: fixed;
	top: 10px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-position: 0px 0px;
	background-repeat: no-repeat;
	background-size: 48px 48px;
}

nav#mobilenav
{
	position: fixed;
	top: var(--header-height-size);
	left: 0;
	width: 100%;
	height: calc(100vh - var(--header-height-size));
	background-color: var(--mobile-menu-background-color);
	padding: 20px;
	z-index: 99;
}

	nav#mobilenav > ul
	{
		display: block;
		list-style: none;
	}
	
		nav#mobilenav > ul > li
		{
			padding: 10px;
		}

			nav#mobilenav > ul > li
			{
				color: #ffffff;
			}
			
			nav#mobilenav > ul > li > a
			{
				text-decoration: none;
			}
	
nav#mobilenav.hidden
{
	display: none;
}
	
@media screen and (max-width: 479px) 
{
	.flex-box-2-columns > *
	{
		width: 100%;
	}
}

@media screen and (max-width: 719px) 
{
	.flex-box-3-columns > *
	{
		width: 100%;
	}
}
	
@media screen and (max-width: 559px) 
{
	header#pageheader nav
	{
		display: none;
	}
	#menu_toggle
	{
		display: block;
	}
}

@media screen and (min-width: 560px) 
{
	nav#mobilenav
	{
		display: none;
	}
}

	
@media screen and (max-width: 1023px) 
{
	section.index > div.container > div > h1
	{
		font-size: 7.6vw;
	}	
}

	
@media screen and (max-width: 599px) 
{
	section.index > div.container > div > h1
	{
		font-size: 45.5833px;
	}	
}

@media screen and (max-width: 511px) 
{
	div#antal_balazs_portre
	{
		display: block;
		width: 80vw;
		height: 80vw;
		border-radius: 200px;
	}
}

@media screen and (max-width: 575px) 
{
	footer ul#footermenu > li
		{
			display: block;
		}
		
		footer ul#footermenu  > li  > a
			{
				padding: 10px;
			}
}
