:root{
	--szurke: #333;
}
*{
	padding: 0;
	margin: 0;
	outline: none;
	color: var(--szurke);
}
body{width: 100%;}
table
{
    border: none;
}
th
{
    border-bottom: 1px solid #aaa;
}
td
{
    text-align: center;
    padding: 3px 0px;
}
tr:hover
{
    background-color: #eee;
    transition: .2s;
}
header{
	display: flex;
	flex-flow: column nowrap;
	width: 100%;
	justify-content: flex-start;
	align-items: center;
	/*height: 100%;*/
	position: fixed;/*relative*/;
	background-image: url('../images/bg.webp');/*radial-gradient(circle,#8a847d,#7a7267);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top:0px;
}
header .bg{
	display: flex;
	width: 80%;
	height: 100px;
	position: relative;
	justify-content: center;
	align-items: center;
background: rgb(2,0,36);
background: radial-gradient(circle, rgba(2,0,36,0.5354516806722689) 0%, rgba(0,0,0,0) 100%);    
}
header .text{
	font-weight: 900;
	font-size: 1.6em;
	position: absolute;
	color: #fff;
	text-shadow:  1px 1px 1px rgba(0,0,0,0.5);
	letter-spacing: 4px;
}
header .logo{
	position: absolute;
	top: 0;
	height: calc(100% - 10px);
	left: 0;
}
header.active{
	height: 100vh;
}
header .menu{
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
	justify-content: center;
/*	background-color:#000;*/
	transition: .5s;
    
}
#fakehead {
    display: none;
    width: 100%;
    height: 60px;
    /*background-color: rgba(56, 177, 237,0.5);*/
    justify-content: flex-end;
}
.menu .belso{
	display: flex;
	flex-flow: row nowrap;
	width: calc(80% - 30px);
    padding-left: 30px;
	height: 60px;
	justify-content: flex-start;
	align-items: center;
	background-color:#625c5c;
    box-shadow: 2px 2px 20px #444;
    border-radius: 30px 30px 0px 0px;
    
}
.menu a,.lenyilo,.lenyilo .nev{
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	padding: 0px 15px;
	height: 60px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	position: relative;
}
.lenyilo .lenyilomenu{
	display: flex;
	flex-flow: column nowrap;
	height: 0px;
	background-color: #000;
	position: absolute;
	top: 60px;
	width: 200px;
	transition: height .5s;
	overflow: hidden;
}
.lenyilo:hover .lenyilomenu{
	height: auto;
}
.lenyilo .lenyilomenu.show{
	height: 200px;
}
.lenyilo .lenyilomenu a{
	height: 40px;
	position: relative;
	
}
.menu a::after,.lenyilo::after{
	display: block;
	content: '';
	position: absolute;
	width: 100%;
	background-color: #84e8cf;
	height: 4px;
	filter: opacity(0%);
	bottom: 0;
	transition: .7s;
}
.menu a:hover::after,.lenyilo:hover::after{
	filter: opacity(100%);
}
article{
	display: flex;
	flex-flow: column nowrap;
	width: 100%;
	height: 100%;
	background-color: #fff;
	justify-content: flex-start;
	align-items: center;
	background-color: #e6e6e6;
    margin-top: 160px;
}
article .container{
	display:flex;
	width: 80%;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: center;
	background-color: #fff;
    box-shadow: 2px 2px 20px #888;
}
article .cimek{
	width: calc(100% - 60px);
	margin-top: 30px;
	text-align: center;
	color: #000;
	font-size: 2em;
	font-weight: normal;
	text-shadow: 1px 0px #000;
}
.cimek.kisebb{
	margin-top: 20px;
	font-size: 1.6em;
}
article .cimek.veknyit{
	font-weight: 100;
}
article .cimek.szurke{
	color: var(--szurke);
}
.container .szoveg-keret{
	display: flex;
	flex-flow: column nowrap;
	padding: 0px 30px;
	width: calc(100% - 60px);
	text-align: left;
	color: var(--szurke);
	font-size: 1.2em;
	margin: 30px 0px;
}
.szoveg-keret .szoveg{
	margin: 10px 0px;
}
.szoveg-keret .szoveg.link,.szoveg .link{
	text-decoration: none;
	color: blue;
}
.szoveg-keret .szoveg.felkover{
	font-weight: 900;
}
.szoveg-keret .szoveg.dolt{
	font-style: italic;
}
footer{
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	width: 100%;
	bottom: 0;
	
	background-color: #e6e6e6;
}
footer #foot{
	display: flex;
	background-color: white;
	padding: 0px 30px;
	width: calc(80% - 60px);
	height: 80px;
	justify-content: flex-start;
	align-items: center;
	box-shadow: 0px -4px 20px #eee;
}
.form{
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: center;
	width: 60%;
	padding: 30px 0px;
}
.form .mezo{
	width: calc(80% - 15px);
	padding: 8px 0px;
	color: #000;
	border: 1px solid #000;
	margin-bottom: 20px;
	padding-left: 15px;
	background-color: #fff;
}
.form input[type="submit"]{
	padding: 15px 8px;
	color: #fff;
	background: #1ecdf8;
	cursor: pointer;
	transition: .5s;
	border: unset;
}
.form input[type="submit"]:hover{
	background: #fff;
	color: #1ecdf8;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px;
}

.gallery-item{
    margin: 10px;
    cursor: pointer;
}

.gallery-item img {
    max-width: 100%;
    height: 85px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
.rejtett{
	display: none;
	overflow: hidden;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}