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

.program_content {
	padding-top: 140px;
	background-color: #fff;
	width: 100%;
}

.program_container_fix {
	display: block !important;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.program_top_section {
	padding-bottom: 80px;
}

.program_main_title {
	font-size: 30px;
	font-weight: 700;
	color: #3f3d6f;
	text-align: center;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

.program_intro_text {
	max-width: 660px;
	margin: 0 auto;
	text-align: left;
}

.program_intro_text p {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 25px;
}

.program_days_section {
	padding-bottom: 100px;
}

.program_days_grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 60px;
	align-items: flex-start;
	max-width: 1060px;
	margin: 0 auto;
}

.program_days_image {
	width: 100%;
	height: 640px;
}

.program_days_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.program_days_info {
	text-align: left;
}

.program_days_title {
	font-size: 24px;
	font-weight: 700;
	color: #e96362;
	margin-bottom: 30px;
	position: relative;
	padding-left: 15px;
}

.program_days_title::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #e96362;
}

.program_list {
	padding-left: 0;
	list-style: none;
	counter-reset: custom-counter;
}

.program_list li {
	font-size: 15px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 18px;
	display: flex;
	align-items: flex-start;
	counter-increment: custom-counter;
}

.program_list li::before {
	content: counter(custom-counter) '. ';
	font-weight: 400;
	color: #444;
	margin-right: 8px;
	white-space: nowrap;
}

.program_special_section {
	position: relative;
	width: 100%;
	height: 1000px;
	background-image: url('../pictures/program_bg_special.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.program_special_overlay {
	width: 100%;
	height: 1000px;
	background: rgba(0, 0, 0, 0.35);
	padding: 90px 0 60px 0;
}

.program_special_content {
	max-width: 1060px;
	margin: 0 auto 60px auto;
	text-align: left;
}

.special_title {
	font-size: 26px;
	font-weight: 700;
	color: #d45251;
	margin-bottom: 40px;
	letter-spacing: 0.5px;
}

.special_text_block {
	max-width: 660px;
}

.special_text_block p {
	font-size: 16px;
	line-height: 1.8;
	color: #fff;
	margin-bottom: 25px;
	opacity: 0.95;
}

.program_cta_block {
	text-align: center;
	width: 100%;
}

.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: 992px) {
	.program_days_grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.program_days_image {
		height: 450px;
	}
}

@media (max-width: 768px) {
	.program_content {
		padding-top: 100px;
	}

	.program_container_fix {
		padding: 0 15px;
	}

	.program_top_section {
		padding-bottom: 50px;
	}

	.program_main_title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.program_intro_text p {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 18px;
	}

	.program_days_section {
		padding-bottom: 60px;
	}

	.program_days_grid {
		gap: 25px;
	}

	.program_days_image {
		height: 320px;
	}

	.program_days_title {
		font-size: 18px;
		padding-left: 12px;
		margin-bottom: 20px;
	}

	.program_list li {
		font-size: 13px;
		line-height: 1.6;
		margin-bottom: 12px;
	}

	.program_special_section {
		height: 650px;
	}

	.program_special_overlay {
		height: 650px;
		padding: 50px 0 30px 0;
	}

	.special_title {
		font-size: 20px;
		margin-bottom: 25px;
	}

	.special_text_block {
		max-width: 100%;
	}

	.special_text_block p {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 18px;
	}

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