/*
Version: 1.2
*/

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body, html {
	height: 100%;
	font-family: 'Montserrat', sans-serif;
	/*overflow: hidden; */
	color: #fff;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: 1;
}

.main-container {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px;
}

header {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center
}

.logo {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.5px;
	z-index: 20;
}

.logo span {
	color: #4CAF50;
}

.time-info {
	font-size: 14px;
	opacity: 0.85;
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 14px;
	border-radius: 20px;
}

.content-center {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

h1 {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 25px;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-map {
	display: inline-block;
	background-color: #e61123;
	color: #fff;
	text-decoration: none;
	padding: 16px 36px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(230, 17, 35 0.2);
}

.btn-map:hover {
	background-color: #e03f4c;
	box-shadow: 0 4px 15px rgba(230, 17, 35 0.3);
}

footer {
	width: 100%;
	text-align: center;
}

.social-title {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	padding: 10px 0;
	border-radius: 8px;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	transition: background 0.3s ease;
	background: #0077FF;
	border-color: #0077FF;
}

.social-btn.vk {
	background: #0077FF;
	border-color: #0077FF;
	color: #fff;
}

.social-btn.tg {
	background: #229ED9;
	border-color: #229ED9;
	color: #fff;
}

.social-btn.vk:hover {
	background: #4da0ff;
	border-color: #4da0ff;
	color: #fff;
}

.social-btn.tg:hover {
	background: #61b0e6;
	border-color: #61b0e6;
	color: #fff;
}

@media (max-width: 600px) {
	.main-container {
		padding: 20px;
	}

	.logo {
		font-size: 24px;
	}

	.time-info {
		font-size: 12px;
		padding: 5px 10px;
	}

	h1 {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.btn-map {
		padding: 14px 28px;
		font-size: 16px;
		width: 100%; 
	}

	.social-links {
		width: 100%;
	}

	.social-btn {
		flex: 1; 
	}
}

@media (max-height: 500px) {
	h1 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.btn-map {
		padding: 10px 20px;
		font-size: 14px;
	}
}
/*
.video-background-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1; 
overflow: hidden;
background-color: #000; 
}

.video-background-container video {
width: 100%;
height: 100%;
object-fit: cover;
}*/

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.image-background-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;

	background-image: url('https://europacitynv.ru/wp-content/uploads/2026/05/europa_citynv_2019_slider.jpg'); 

	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover; 
}