@charset "utf-8";

/*CSS 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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*Általános formázások================================*/
body {
	background-color:#eee;
	font-family:Verdana, Geneva, sans-serif;
	font-size:.8em;
}

#kontener {
	width:1100px;
	margin:0 auto;
	background-color:#FFF;
	box-shadow:0 0 10px #ccc;	
}

p {
	margin-bottom:1em;
	line-height:1.2em;	
}

h1, h2, h3, h4, h5, h6 {
	font-weight:bold;
	color:#C33;
	margin-bottom:1em;	
}

h1 {font-size:22px;}
h2 {font-size:18px;}
h3 {font-size:16px;}
h4 {font-size:14px;}
h5 {font-size:12px;}
h6 {font-size:10px;}

.rejtett {display:none;}

.cleardiv {clear:both;}

/*Menü formázásai ==================================*/

#menu {
	padding:10px 2%;	
}

#menu #menu-button {display:none;}

#menu ul li {
	display:inline;
	margin-right:2%	
}

#menu ul li a {
	text-transform:uppercase;
	text-decoration:none;
	color:#505050;	
}

#menu ul li a:hover {color:#C33;}

/*Fejrész formázásai =================================*/

#fejlec {
	height:280px;
	background-image:url("images/hatter.jpeg");
	background-position: center;
	position:relative;	
}

#oldal-info {
    /*background-color:#000;*/
	background-color:rgba(0,0,0,.6);
	padding:15px;
	
	position:absolute;
	bottom:10px;
	left:10px;
}

#oldal-info h1 {
	color:white;
	margin-bottom:.6em;
}
#oldal-info h3 {
	color:white;
	margin-bottom:0;
	font-family:Georgia, "Times New Roman", Times, serif;
}

/*Dobozok formázásai====================================*/
section#kiemelt {
	background-color:#eee;
}

article.doboz {
	float:left;
	width:29.33%;
	margin:20px 2%;	
	text-align:center;
}

article.doboz h2 {
	margin:20px 0;
	margin-bottom:.5em;	
}

/*Tartalom formázása ==================================*/

article#tartalom {
	padding:20px 2%;	
}

article#tartalom video {
	margin:25px auto;
	display:block;
}

/*Lábléc formázása=====================================*/

footer#lablec {
	background-color:#C33;
	color:white;
	text-align:center;
	padding:10px 2%;	
}

footer#lablec p {margin:0;}


/*1100px alatti eszközökre megjelenés===================*/

@media (max-width:1100px) {
	#kontener {
		width:auto;
	}
	
	video {width:100%;}
}

/*640px alatti nézet====================================*/

@media (max-width:640px) {
	#fejlec {height:200px;}
	
	article.doboz {
		width:46%;
	}
	
	article.doboz:last-of-type {
		margin-right:27%;
		margin-left:27%;	
	}	
}

/*370px alatti mobilnézet===============================*/

@media (max-width:370px) {
	
	#menu {
		min-height:15px;	
	}
	
	#menu #menu-button {display:block;}
	#menu ul {display:none;}
	
	#menu ul li {
		display:block;	
	}
	
	#menu ul li a {
		display:block;
		padding:10px 0;
		text-align:center;
		border-bottom:1px solid #ccc;
	}

	h2 {font-size: 1.2em;}

	#fejlec {
		height:auto;
		padding: 10px 0;
	}
	
	#oldal-info{
		position: static;
		text-align:center;
	}
	
	#oldal-info h1 {
		font-size:1.4em;	
	}
	
	article.doboz {
		width:96%;
	}
	
	article.doboz:last-of-type {
		margin-right:2%;
		margin-left:2%;	
	}
	
	footer#lablec {font-size:.8em;
}







