﻿body {
	background-image: url('/Content/anh/nen.jpg');
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
	margin-top: 40px;
	max-width: 100%;
	padding: 0 30px;
}

.row-tour {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	column-gap: 60px;
	flex-wrap: wrap;
	margin-left: 40px;
}

.col-image {
	flex: 0 0 48%;
}

.col-form {
	flex: 0 0 45%;
}

.mainImage {
	width: 100%;
	height: 530px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.thumb-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 12px;
}

.thumbnail-img {
	height: 65px;
	width: 100px;
	object-fit: cover;
	margin: 6px;
	border-radius: 6px;
	cursor: pointer;
	border: 2px solid transparent;
}

	.thumbnail-img:hover {
		border-color: #e74c3c;
	}

.promo-label {
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: #e74c3c;
	color: white;
	padding: 10px 18px;
	font-weight: bold;
	border-radius: 10px;
	font-size: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.form-box {
	width: 100%;
	max-width: 420px;
	background: rgba(255, 255, 255, 0.98);
	padding: 25px;
	border: 2px solid #e74c3c;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

label {
	font-weight: bold;
	margin-top: 10px;
	display: block;
}

.form-control {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	border-radius: 6px;
	border: 1px solid #ccc;
	background-color: #f9f9f9;
}

.btn-submit {
	display: inline-block;
	padding: 12px 24px;
	background-color: #e74c3c;
	color: white;
	font-weight: bold;
	border: none;
	border-radius: 8px;
	margin-top: 15px;
	transition: background 0.3s;
	font-size: 16px;
	text-align: center;
}

	.btn-submit:hover {
		background-color: #c0392b;
	}

.btn-back {
	display: inline-block;
	margin-left: 15px;
	margin-top: 20px;
	font-weight: bold;
	color: #2980b9;
	text-decoration: none;
}

	.btn-back:hover {
		text-decoration: underline;
	}

.description-section {
	background-color: white;
	padding: 25px;
	border-radius: 12px;
	margin-top: 40px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

	.description-section h3 {
		font-size: 22px;
		font-weight: bold;
		color: #2c3e50;
		margin-bottom: 15px;
	}

	.description-section p {
		text-align: justify;
		line-height: 1.8;
	}

.video-title {
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 10px;
	color: #444;
}

.video-wrapper iframe {
	width: 100%;
	height: 350px;
	border-radius: 12px;
}

.related-tours-section {
	margin-top: 40px;
}

.section-title {
	font-size: 22px;
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 20px;
}

.scroll-wrapper {
	display: flex;
	overflow-x: auto;
	gap: 16px;
	padding-bottom: 10px;
}

.tour-card {
	width: 220px;
	min-width: 220px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	flex-shrink: 0;
	overflow: hidden;
	transition: transform 0.2s;
}

	.tour-card:hover {
		transform: scale(1.03);
	}

	.tour-card img {
		width: 100%;
		height: 140px;
		object-fit: cover;
	}

.tour-info {
	padding: 10px;
	text-align: center;
}

.tour-name {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	margin-bottom: 6px;
}

.tour-link {
	display: inline-block;
	padding: 6px 12px;
	background-color: #e74c3c;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
}

	.tour-link:hover {
		background-color: #c0392b;
	}
.scroll-wrapper {
	display: flex;
	overflow-x: auto;
	gap: 16px;
	padding: 10px 0;
	width: 100%;
	white-space: nowrap; /* ✅ giúp các thẻ không xuống dòng */
}
.mota-text {
	white-space: pre-line; /* Giữ \n thành xuống dòng */
	word-wrap: break-word; /* Xuống dòng nếu từ quá dài */
}

