@font-face {
	font-family: OpenSans;
	src: url(https://euphonix.cz/resources/font/OpenSans.ttf);
}
@font-face {
	font-family: ElmsSans;
	src: url(https://euphonix.cz/resources/font/ElmsSans.ttf);
}

html{
	scroll-behavior: smooth;
}

body{
	background-color: black;
	color: white;
	margin: 0;
	font-family: ElmsSans, OpenSans, Verdana;
	overflow-x: hidden;
    font-size: 16px;
}

#background\.image{
	position: fixed;
	background-image: url(https://euphonix.cz/resources/img/wallpaper.jpg);
	height: 100vh;
	width: 100vw;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
}

header{
	z-index: 10;
	position: fixed;
	color: white;
	border: solid #ffffff70 2px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;

	height: 250px;
	margin-top: calc(50vh - 150px);
	width: 80%;
	margin-left: 10%;
    font-size: 16px;
	backdrop-filter: blur(12px);
	
    transform: scale(1);
    opacity: 1;
}

#header\.logo-container{
	display: flex;
	justify-content: center;
}

#header\.logo{
	width: 400px;
	max-height: 200px;
}

@keyframes Anim-ScrollDown{
	0%{ transform: translateY(-20px); }
	50%{ transform: translateY(0px); }
	100%{ transform: translateY(-20px); }
}

#header\.scrolldown{
	position: absolute;
	width: calc(100vw - 80px);
	margin-left: 40px;
	bottom: 40px;
	text-align: center;
	transition: .5s;
	height: 60px;
}

#header\.scrolldown\:text{
	color: white;
	padding: 10px 20px;
	text-shadow: 0 0 9px white;
	animation: Anim-ScrollDown ease-in-out 5s infinite;
	animation-iteration-count: infinite;
}

#nav{
	position: fixed;
	background: #000;
	display: flex;
	width: 100%;
	padding: 5px 10px;
	align-items: center;
	z-index: 2;
	transition: .5s;
	box-shadow: 0px 0px 30px 2px black;
}

h1, h2{
	font-size: 16px;
	font-weight: 100;
	margin-block-start: 0;
	margin-block-end: 0;
	pointer-events: none;
}

h2{
	font-size: 18px;
	font-weight: 700;
	text-decoration: underline;
}

#nav\.logo{
	width: 50px;
	margin-right: 10px;
}

#nav\.info{
	display: flex;
	align-items: center;
	flex-grow: 1;
	justify-content: flex-end;
	padding-right: 20px;
}

#nav\.email{
	margin-top: -5px;
}

#nav\.user-picture{
	width: 22px;
	height: 22px;
	border: solid transparent 0px;
	border-radius: 50%;
}
.page\.user-picture{
	width: 22px;
	height: 22px;
	border: solid white 2px;
	border-radius: 50%;
}

#nav\.separator\:fb-email{
	margin: 0px 8px;
	margin-top: -5px;
}

main{
	min-height: 500px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	margin-bottom: 200px;
}

#main\.header-placeholder{
	height: 100vh;
}
#main\.user-header-placeholder{
	height: 70px;
}

#main\.section-info{
	height: auto;
	width: 400px;
}

#main\.section-calendar{
	margin-top: 200px;
	height: auto;
	width: 400px;
	text-align: center;
}

#main\.section-contacts{
	margin-top: 300px;
	text-align: center;
}

.main\.contacts\:container{
	display: flex;
	flex-direction: row;
}

.main\.contact{
	margin: 10px;
	border: solid white 1px;
	border-radius: 20px;
	padding: 30px 40px;
	backdrop-filter: blur(10px);
	background: #fff1;
	transition: .5s;
}

.main\.contact:hover{
	backdrop-filter: blur(20px);
	background: #00000036;
	box-shadow: 0 0 50px 0px #fff3;
}

.contact\:top-container{
	display: flex;
	align-items: center;
}

.contact\:image{
	width: 50px;
	height: 50px;
	background: white;
	border: solid transparent 0px;
	border-radius: 50%;
	margin-right: 10px;
	box-shadow: 0 0 9px 1px #d91a22;
	overflow: hidden;
}

.contact\:name{
	color: #fff;
	font-size: 18px;
	text-align: left;
	margin-left: 7px;
}

.contact\:phone{
	color: #d1d1d1;
	font-size: 14px;
}

a{
	text-decoration: none;
	color: white;
	user-select: none;
}
.contact\:img{
	width: 100%;
}

.text\.center{
	text-align: center;
}

.contact-button{
	display: inline-block;
	background: #d91a22;
	padding: 5px 30px;
	border: solid transparent 0px;
	border-radius: 10px;
	margin-top: 20px;
	box-shadow: 0 0 10px 0px #d91a22a0;
	transition: .3s;
}
.contact-button:hover{
	box-shadow: 0 0 15px 1px #d91a22e0;
}

#contact\.links\:container{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 32px;
}

#contact\.links\:facebook{
	display: flex;
	flex-direction: row;
	align-items: center;
}

#contact\.links\:email{
	margin-top: 2px;
}

footer{
	text-align: center;
	margin-bottom: 80px;
	font-size: 14px;
	color: #ccc;
}

.calendar\:container, .calendar\:container\.empty{
	display: flex;
	flex-direction: row;
	text-align: left;
	padding: 5px 8px;
	border: solid 0px transparent;
	border-radius: 7px;
	background: #000000a0;
	margin-top: 10px;
	transition: .5s;
}
.calendar\:container:hover{
	background: #d91a22;
}
.calendar\:container\.empty{
	text-align: center;
}
.calendar\:container\.hidden{
	display: none;
	opacity: 0;
	transition: .5s;
}
.calendar\:container\.soon{
	box-shadow: 0 0 13px #d91a22a6;
}
.calendar\:text\.highlight{
	text-shadow: 0 0 20px #d91a22ff;
}
.calendar\:datetime{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-right: 8px;
}
.calendar\:text\.small{
	font-size: 12px;
	color: #bbb;
}
.calendar\:text\.normal{
	font-size: 16px;
	color: #fff;
}

.calendar\:place{
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	align-items: flex-start;
	margin-right: 5px;
}
.calendar\:place\.container{
	display: flex;
	flex-grow: 1;
	width: 100%;
}
.calendar\:address{
	font-size: 14px;
}
#calendar\:bottom-text{
	margin-top: 16px;
	font-size: 16px;
}

#calendar\:show-all\.button{
	margin-top: 15px;
	cursor: pointer;
	border: solid 1px white;
	padding: 12px 3px;
	border-radius: 10px;
	transition: .3s;
}

#calendar\:show-all\.button:hover{
	background: #0009;
	box-shadow: 0 0 50px 0px #fff3;
}

.flex\.grow-1{
	display: flex;
    flex-grow: 1;
}
.flex\.column{
    flex-direction: column;
}

.text\.red{
	color: #d91a22;
}

.text\.bold{
	font-weight: 700;
}

.ico\.map-marker, .ico\.mouse-click, .ico\.messenger{
	width: 20px;
	filter: invert(1);
}

.ico\.facebook{
	width: 22px;
	filter: invert(1);
}

.ico\.chevron-double-down{
	width: 10px;
	filter: invert(1);
	margin-top: 8px;
}

#page\.user-name{
	display: flex;
    align-items: center;
}
.page\.user-button, .page\.user-button\:admin{
	display: block;
	width: 300px;
	padding: 8px;
	background-color: #2229;
	border: solid white 1px;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 10px;;
	transition: .3s;;
}
.page\.user-button:hover, .page\.user-button\:admin:hover{
	background-color: #555a;
}

.page\.user-button\:admin{
	border-color: rgb(255, 222, 32);
	color: rgb(255, 222, 32);
}

@media only screen and (max-width: 1000px) {
    body{
        font-size: 16px;
    }

    #background\.image{
	    background-image: url(https://euphonix.cz/resources/img/wallpaper-mobile.jpg);
        background-size: cover;
    }
    
    header{
        height: 150px;
        margin-top: calc(50vh - 80px);
        width: 80%;
        margin-left: 10%;
    }

    #header\.logo{
        width: 250px;
        max-height: 100px;
    }

	#header\.scrolldown{
		text-align: center;
		margin-top: -120px;
		margin-bottom: 120px;
		transition: .5s;
		height: 60px;
	}

    #main\.section-info{
        height: auto;
        width: 300px;
    }

    .main\.contacts\:container{
        display: flex;
        flex-direction: column;
    }
}

#admin\.places\.container{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.admin\.places-form{
	background: #00000060;
	padding: 10px 8px;
	border: solid 1px white;
	border-radius: 10px;
	margin: 10px;
	max-width: 90vw;
	width: 980px;
}
.admin\.places-form\:row{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.admin\.places-form\.input\:container{
	background: black;
	border-bottom: solid 2px white;
	margin: 5px 10px;
	display: flex;
	flex-grow: 1;
	align-items: center;
}
.admin\.places-form\.input\:container input, .admin\.places-form\.input\:container select{
	background: transparent;
	color: white;
	padding: 5px 0px;
	border: none;
	outline: none;
	font-size: 16px;
	font-family: Verdana;
	display: flex;
	flex-grow: 1;
	align-items: center;
}
.admin\.places-form\.input\:container option{
	background-color: black;
}

.admin\.places-form\:days-table td input{
    background: black;
    color: white;
    padding: 5px 3px;
    border: solid 1px white;
    font-family: Verdana;
	width: 120px;
}
.admin\.places-form\:days-table th td{
	width: 120px !important;
}
.admin\.places-form textarea{
	display: flex;
	flex-grow: 1;
	background-color: black;
	color: white;
	font-family: Verdana;
}
.admin\.places-form input{
	display: flex;
	flex-grow: 1;
	background-color: black;
	color: white;
	font-family: Verdana;
}
.admin\.places-form input[type="submit"]{
	border: solid 1px white;
	border-radius: 10px;
	margin-top: 5px;
	padding: 10px 5px;
}
.admin\.places-form input[type="submit"]:hover{
	background-color: #555;
}
.admin\.places-form\:show-button{
	cursor: pointer;
	padding: 10px 5px;
	background-color: black;
	color: white;
	max-width: 500px;
	width: 100%;
	border: solid 1px white;
	border-radius: 10px;
	margin-bottom: 10px;
	text-align: center;
}