/*
Theme Name: AZ Angio Theme
Author: Kryštof Žáček
*/



/* Body */
*
{
	box-sizing: border-box;
}

body
{
	font-size: 18px;
}

h1
{
	margin-top: 0px;
	margin-bottom: 12px;
	font-size: 36px;
	font-weight: bold;
	text-align: left;
}

h2
{
	font-size: 24px;
	margin-top: 18px;
	margin-bottom: 6px;
	font-weight: bold;
	text-align: left;
}

.az-body
{
	background: #eee;
	padding: 0;
	margin: 0;
}

.az-container
{
	max-width: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
    display: flex;
    flex-direction: column;
}



/* Header */
.az-header
{
	float: top;
	background-image: url(./images/header-background.jpg);
	background-position: center 60%;
	background-size: cover;
}

.az-header-container
{
	float: top;
	margin-bottom: 24px;
	padding: 18px;
	position: relative;
	justify-content: center;
	align-items: center;
	background-image: url(./images/header-background.jpg);
	background-position: center 60%;
	background-size: cover;
}

.az-header-container:after
{
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	backdrop-filter: blur(10px);
}



/* Header Title */
.az-title-container
{
	margin-bottom: 18px;
	z-index: 2;
	justify-content: center;
	align-items: center;
}

.az-title
{
	font-size: 48px;
	color: white;
	text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}



/* Header Navigation Menu */
.az-nav-menu-container
{
	z-index: 2;
	width: 90%;
	padding: 6px;
	justify-content: center;
	align-items: center;
	text-align: justify;
	background: white;
	border-radius: 18px;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.az-nav-menu
{
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.az-nav-menu a
{
	display: block;
	padding: 6px 18px 6px 18px;
	font-weight: bold;
	text-align: center;
	color: black;
	text-decoration: none;
}

.az-nav-menu a:hover
{
	text-decoration: underline;
}

.current-menu-item
{
	border-radius: 12px;
	background-color: #85e9bd;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}





.az-time-table
{
	width: auto;
}

.az-time-table td
{
	border: none;
	margin: 0;
	padding: 0px 16px 0px 0px;
}

.az-time-table tr:hover td
{
	background-color: #85e9bd;
}

.az-paragraph
{
	margin-top: 0px;
	margin-bottom: 0px;
}

.az-person::before
{
	margin-right: 12px;
	content: url(./images/person.svg);
}

.az-phone:before
{
	margin-right: 12px;
	content: url(./images/telephone.svg);
}

.az-mail:before
{
	margin-right: 12px;
	content: url(./images/envelope.svg);
}

.az-location:before
{
	margin-right: 12px;
	content: url(./images/geo-alt.svg);
}

.az-tram:before
{
	margin-right: 12px;
	content: url(./images/train-front.svg);
}

.az-parking:before
{
	margin-right: 12px;
	content: url(./images/car-front.svg);
}

.az-map
{
	width: 400px;
	height: 400px;
}



/* Page */
.az-page
{
	max-width: 100%;
	min-height: 100vh;
	width: 100%;
	float: center;
}

.az-page-container
{
	width: 70%;
	min-height: 100vh;
	margin: 24px 15% 24px 15%;
	padding: 48px;
	text-align: justify;
	background: white;
	border-radius: 12px;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.az-page-table
{
	text-align: left;
	box-shadow: 4px 4px 8px #ccc;
}

.az-page-table td
{
	width: 80%;
}

.az-page-table td:hover
{
	background-color: #85e9bd;
}

.az-page-table thead
{
	border: none;
}

.az-page-image
{

}



/* Footer */
.az-footer-container
{
	height: 36px;
	float: bottom;
	position: relative;
	background-image: url(./images/header-background.jpg);
	background-position: center 60%;
	background-size: cover;
}

.az-footer-container::after
{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
	backdrop-filter: blur(10px);
}

.az-copyright
{
	z-index: 2;
	position: absolute;
	right: 18px;
	bottom: 6px;
	color: white;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 1);
}




/* Information */
.az-information
{
	float: right;
	width: 100%;
}

.az-information-container
{
	width: 60%;
	margin: 12px 20% 12px 20%;
	padding: 24px;
	display: block;
	text-align: justify;
	background: #85e9bd;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);;
}

.az-information-title
{
	margin-top: 0;
}

.az-information-content
{
	margin-bottom: 0;
}




@media screen and (max-width: 991px)
{
	
}




@media screen and (max-width: 767px)
{
	body
	{
		font-size: 15px;
	}

	h1
	{
		margin-top: 0px;
		margin-bottom: 10px;
		font-size: 30px;
	}

	h2
	{
		margin-top: 15px;
		margin-bottom: 5px;
		font-size: 20px;
	}

	.az-title
	{
		font-size: 40px;
	}

	.az-title-container
	{
		margin-bottom: 15px;
	}

	.az-header-container
	{
		padding: 15px;
		margin-bottom: 20px;
	}

	.az-page-container
	{
		width: 100%;
		margin: 25px 0px 25px 0px;
		padding: 40px;
		border-radius: 0;
	}

	.az-footer-container
	{
		height: 30px;
	}

	.az-copyright
	{
		right: 15px;
		bottom: 5px;
	}

	.az-information-container
	{
		width: 90%;
		margin: 10px 5% 10px 5%;
	}

	.az-nav-menu-container
	{
		padding: 5px;
		border-radius: 15;
	}

	.az-nav-menu
	{
		flex-direction: column;
	}

	.az-nav-menu a
	{
		float: none;
	}

	.menu-main-container
	{
		width: 100%;
	}

	.current-menu-item
	{
		width: 100%;
		border-radius: 10px;
	}

	.az-phone:before
	{
		margin-right: 10px;
	}
	
	.az-person::before
	{
		
	}

	.az-mail:before
	{
		margin-right: 10px;
	}

	.az-location:before
	{
		margin-right: 10px;
	}

	.az-tram:before
	{
		margin-right: 10px;
	}

	.az-parking:before
	{
		margin-right: 10px;
	}

	.az-map
	{
		width: calc(min(100%, 400px));
		height: calc(min(100vw - 50px, 400px));
	}

	.az-time-table
	{
		width: 100%
	}
}



@media screen and (max-width: 479px)
{
	body
	{
		font-size: 12px;
	}

	h1
	{
		margin-top: 0px;
		margin-bottom: 8px;
		font-size: 24px;
	}

	h2
	{
		margin-top: 12px;
		margin-bottom: 4px;
		font-size: 16px;
	}

	.az-title
	{
		font-size: 32px;
	}

	.az-title-container
	{
		margin-bottom: 12px;
	}

	.az-header-container
	{
		padding: 12px;
		margin-bottom: 16px;
	}

	.az-page-container
	{
		margin: 20px 0px 20px 0px;
		padding: 32px;
	}

	.az-footer-container
	{
		height: 24px;
	}

	.az-copyright
	{
		right: 12px;
		bottom: 4px;
	}

	.az-information-container
	{
		margin: 8px 5% 8px 5%;
	}

	.az-nav-menu-container
	{
		padding: 4px;
		border-radius: 12;
	}

	.current-menu-item
	{
		border-radius: 8px;
	}

	.az-paragraph
	{
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.az-phone:before
	{
		margin-right: 8px;
	}

	.az-mail:before
	{
		margin-right: 8px;
	}

	.az-location:before
	{
		margin-right: 8px;
	}

	.az-tram:before
	{
		margin-right: 8px;
	}

	.az-parking:before
	{
		margin-right: 8px;
	}
}

