@import '../components/header/header.css';
@import '../components/container/base.css';
@import '../components/footer/footer.css';
@import '../components/modal/modal.css';

body {
	background-color: #ffffff;
	margin: 0;
	padding: 0;
}

.page_content {
	padding-top: 71px;
	background-color: #ffffff;
	width: 100%;
}

.container_fix {
	max-width: 1140px;
	margin: 0 auto;
	padding: 80px 40px 50px 40px;
}

.film_intro {
	max-width: 800px;
}

.film_main_title {
	font-size: 22px;
	font-weight: 700;
	color: #e87a79;
	display: flex;
	align-items: center;
	text-transform: lowercase;
	margin-bottom: 30px;
}

.red_dot {
	font-size: 28px;
	color: #e87a79;
	margin-right: 14px;
	line-height: 0;
	display: inline-block;
	transform: translateY(-2px);
}

.film_subtitle {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	color: #1a1a1a;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 0.5px;
}

.film_video_section {
	width: 100%;
	position: relative;

	background-image: url('../pictures/film_bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 100px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.video_wrapper {
	position: relative;
	width: 100%;
	max-width: 960px;
	padding-top: 34.5%;
	border-radius: 20px;
	background-color: #000000;
	box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.4);
}

.video_wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.film_cta {
	background-color: #ffffff;
	padding: 60px 0 80px 0;
	text-align: center;
}

.cta_btn {
	display: inline-block;
	background: #e87a79;
	color: #ffffff;
	text-decoration: none;
	padding: 18px 60px;
	border-radius: 35px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease;
}

.cta_btn:hover {
	background: #d45251;
	transform: translateY(-2px);
}

@media (max-width: 850px) {
	.container_fix {
		padding: 60px 20px 40px 20px;
	}

	.film_subtitle {
		font-size: 20px;
	}

	.film_video_section {
		padding: 60px 15px;
	}
}

@media (max-width: 768px) {
	.container_fix {
		padding: 40px 20px 30px 20px;
	}

	.film_main_title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.red_dot {
		font-size: 24px;
		margin-right: 12px;
	}

	.film_subtitle {
		font-size: 18px;
		line-height: 1.3;
		margin: 0;
	}

	.film_video_section {
		padding: 80px 15px;
	}

	.video_wrapper {
		max-width: 100%;
		padding-top: 84.5%;
		border-radius: 15px;
	}

	.film_cta {
		padding: 40px 0 50px 0;
	}

	.cta_btn {
		padding: 12px 30px;
		font-size: 12px;
	}
}
