@charset "utf-8";

/* Main
---------------------------------------- */
html {
	height: 101%;
	margin-bottom: 1px;
}

body {
	color: #343434;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}

a {
	color: #75092e;
	text-decoration: none;
}

a:hover {
	color: #75092e;
	text-decoration: underline;
}

a:active, a:focus, input[type="image"]:active, input[type="image"]:focus {
	outline: none;
}

a img {
	border: 0;
}

p {
	margin: 0 0 10px;
}


/* Body
---------------------------------------- */
#bodyContainer {
	background: url(/images/body_bg.png) left 328px repeat-x;
}

#headerBackground {
	background: url(/images/header_bg.jpg) top center repeat-x;
	padding-top: 38px;
}

#bodyContent {
	margin: 0 auto;
	width: 944px;
}

#contentTop {
	background: url(/images/content_top.png) top center no-repeat;
	height: 9px;
	position: relative;
	z-index: 10;
}

#contentContainer {
	background: url(/images/content_bg.png) top center repeat-y;
	padding: 25px 14px 6px;
}

#contentBackground {
	background: url(/images/building.jpg) center bottom no-repeat;
	background-size: 100% auto;
	height: 300px;
}

#contentTitle {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 30px;
	font-style: normal;
	line-height: 1.1;
	text-align: center;
}

#contentLogo {
	margin-top: 27px;
	text-align: center;
}

#contentAddress {
	font-weight: bold;
	margin-top: 15px;
	text-align: center;
}

.addressDivider {
	margin: 0 9px;
}

#contentMenu {
	border-top: 1px solid #b1b1b1;
	margin: 8px 7px 0;
	padding: 10px 0 2px;
}

#contentMenu ul {
	list-style: none;
	margin: 0 1px 0 3px;
	padding: 0;
	text-align: center;
}

#contentMenu li {
	display: inline-block;
	margin: 0 8px;
}

#contentMenu li#lastItem {
	margin: 0;
}

#footerContainer {
	background-color: #500016;
}

#footerTop {
	background: url(/images/content_bg.png) top center repeat-y;
	padding: 9px 0 0;
}

#footerBox {
	background-color: #9cd133;
	height: 15px;
	margin: 0 auto;
	width: 923px;
}

#contentBottom {
	background: url(/images/content_bottom.png) top center no-repeat;
	height: 9px;
}

#footerContent {
	color: #fff;
	padding: 9px 0 50px;
	text-align: center;
}


/* Buttons
---------------------------------------- */
.button {
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: inline-block;
    height: 150px;
    width: 175px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.button:hover {
    background: linear-gradient(to bottom, #e0e0e0, #ccc);
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
	text-decoration: none;
}

.button .logo {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.button .logo img {
	height: auto;
	max-height: 75px;
	max-width: 100%;
	width: auto;
}

.button .text, .button .text-translation {
    color: #333;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
	font-weight: bold;
    left: 0;
	line-height: 1.1;
	position: absolute;
    right: 0;
}

.button .text {
    top: 10px;
}

.button .text-translation {
    bottom: 10px;
}


/* Responsive Layout
---------------------------------------- */
@media only screen and (max-width: 980px) {
	#bodyContent {
		width: 100%;
	}

	#contentContainer {
		background-size: cover;
		padding: 20px 0;
	}

	#contentAddress {
		font-size: 12px;
	}

	#contentMenu ul {
		display: block;
	}

	#contentMenu li {
		display: block;
		margin: 30px 0;
		width: 100%;
	}

	#footerBox {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#headerBackground {
		padding-top: 20px;
	}

	#contentTitle {
		margin-top: 10px;
	}

	#contentLogo {
		margin-top: 15px;
	}
	
	#contentBackground {
		height: 140px;
	}

	#contentAddress {
		font-size: 10px;
	}
}



/* Popup
---------------------------------------- */
#popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 800px;
	max-height: 80vh;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	overflow-y: auto;
}

#popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.close-popup {
	text-align: right;
	cursor: pointer;
	font-weight: bold;
}

#popup h1 {
	margin-top: 0;
}

#popup h1, #popup h2 {
	color: #333;
	line-height: 1.1;
}

#popup p {
	line-height: 1.6;
}

#popup ul li {
	margin: 5px 0;
}

.popup-container {
	margin: auto;
	padding: 20px;
	background-color: #fff;
}

.popup-footer {
	margin-top: 20px;
	text-align: center;
}

.popup-footer a {
	color: #00aaff;
	text-decoration: none;
}