@import url('//fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@700&display=swap');

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

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	background-color: #f9f9f9;
	color: #333;
}

ul {
	list-style: none;
}

a {
	color: currentColor;
	text-decoration: none;
}

.container {
	width: 95%;
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
	padding: 20px 0;
}

.navbar {
	background: linear-gradient(90deg, #1e3c72, #2a5298);
	color: #fff;
	padding: 15px 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-brand {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	text-decoration: none;
	color: #fff;
	transition: color 0.3s;
}

.navbar-brand:hover {
	color: #ffd700;
}

.navbar-menu {
	list-style: none;
	display: flex;
}

.navbar-menu li {
	margin-left: 30px;
}

.navbar-menu a {
	text-decoration: none;
	color: #fff;
	font-size: 1.1em;
	transition: color 0.3s, border-bottom 0.3s;
	padding-bottom: 5px;
}

.navbar-menu a:hover {
	color: #ffd700;
	border-bottom: 2px solid #ffd700;
}

.navbar-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.navbar-toggle svg {
	height: 40px;
	width: 40px;
}

.footer {
	background-color: #1e1e1e;
	color: #ccc;
	text-align: center;
	padding: 40px 0;
}

.footer a {
	color: #ccc;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.footer .social-icons {
	margin-top: 15px;
}

.footer .social-icons a {
	margin: 0 10px;
	display: inline-block;
	transition: transform 0.3s;
}

.footer .social-icons a img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}

.footer .social-icons a:hover {
	transform: scale(1.2);
}

.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), center center/cover no-repeat;
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
	background-size: 100% 100%;
}

.hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	text-align: center;
	animation: fadeInDown 1s ease-out;
}

.hero p {
	font-size: 3rem;
	text-align: center;
	animation: fadeInDown 1s ease-out;
}

.row {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.card {
	background-color: #fff;
	border: none;
	border-radius: 10px;
	margin-bottom: 40px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s, box-shadow 0.3s;
	width: calc(100% / 2 - 10px);
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s;
}

.card img:hover {
	transform: scale(1.05);
}

.no-img {
	position: relative;
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.no-img:before {
	content: 'Images Missing';
	background-color: #ccc;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.card-body {
	padding: 20px;
}

.card-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.8em;
	margin-bottom: 15px;
	color: #2a5298;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-text {
	font-size: 1em;
	margin-bottom: 20px;
	color: #555;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cardList-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cardList-title button {
	border: none;
	background-color: transparent;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

.cardList-title button:hover {
	text-decoration: underline;
}

.btn {
	display: inline-block;
	padding: 12px 25px;
	background-color: #2a5298;
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
	background-color: #1e3c72;
	transform: scale(1.05);
}

.carousel {
	position: relative;
	overflow: hidden;
}

.carousel img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: opacity 1s ease-in-out;
}

.carousel img.active {
	display: block;
	opacity: 1;
}

.carousel-controls {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

.carousel-controls span {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	padding: 10px;
	cursor: pointer;
	border-radius: 50%;
	transition: background-color 0.3s, transform 0.3s;
}

.carousel-controls span:hover {
	background-color: rgba(0, 0, 0, 0.7);
	transform: scale(1.2);
}

.img-fluid {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.blogList {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.blogList .card {
	width: calc(100% / 3 - 14px);
}

.row-tab {
	display: flex;
}

.row-tab .left-list {
	width: 25%;
	margin-right: 20px;
}

.row-tab .left-list a {
	color: #333;
	text-decoration: none;
	margin-top: 10px;
	display: block;
}

.row-tab .left-list li:hover a {
	font-weight: bold;
	text-decoration: underline;
}

.row-tab .left-list li a.active {
	font-weight: bold;
	text-decoration: underline;
}

.row-tab .right-list {
	width: calc(75% - 20px);
}

.page-navigation {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.page-navigation a {
	color: #333;
	font-size: 18px;
	text-decoration: none;
	padding: 10px;
}

.page-navigation a.pageActive {
	background-color: #1e3c72;
	color: #fff;
	text-decoration: underline;
	border-radius: 5px;
}

.noScroll {
	overflow: hidden;
}

.main-mask {
	height: 100%;
	width: 100%;
	background-color: #00000060;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	display: none;
}

.main-mask.open {
	display: block;
}

.filterBtn {
	padding: 5px 10px;
	border: 1px solid #1e3c72;
	background-color: #1e3c72;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	display: none;
}

ol {
	display: flex;
	gap: 10px;
	padding: 0;
	list-style: none;
}

.blogContent h1 {
	font-size: 40px;
	margin-bottom: 10px;
	font-family: 'Playfair Display', serif;
	margin-bottom: 15px;
	color: #2a5298;
}

.blogContent .date {
	font-style: italic;
}

.carousel img {
	max-width: 80%;
}

.blogContent p {
	font-size: 17px;
	margin: 15px 0;
}

.blogContent a {
	cursor: pointer;
}

.blogContent ul {
	display: flex;
	flex-direction: column;
}

.detailContent {
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
}

.detail-left {
	width: 60%;
	border-radius: 5px;
	overflow: hidden;
	height: 500px;
	display: flex;
}

.detail-left img {
	display: block;
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 500px;
}

.detail-left .swiper-wrapper {
	display: flex;
	align-items: center;
}

.detail-left .swiper-slide img {
	display: flex;
	align-items: center;
	justify-content: center;
}

.detail-right {
	width: calc(40% - 20px);
	border-radius: 5px;
	border: 1px solid #d4d4d4;
	margin-left: 20px;
	padding: 20px;
	box-sizing: border-box;
}

.detail-right h1 {
	font-family: 'Playfair Display', serif;
	font-size: 1.8em;
	margin-bottom: 15px;
	color: #2a5298;
	word-break: break-all;
}

.detail-right p {
	margin: 10px 0;
	display: flex;
	align-items: start;
	justify-content: space-between;
}

.detail-right p.noAvailable::after {
	display: flex;
	justify-content: end;
	align-items: center;
	content: 'No data available';
	color: #333;
	font-size: 16px;
}

.detail-right p a {
	text-decoration: underline;
	color: #264a8a;
}

.detail-right p span:first-child {
	font-weight: bold;
}

.detail-right p span:last-child {
	text-align: end;
	max-width: 60%;
	word-break: break-all;
}

iframe {
	width: 100%;
	height: 300px;
}

.mapCard {
	margin: 40px 0;
}

.rating-summary {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding: 10px;
	box-sizing: border-box;
}

.rating-score {
	font-size: 2em;
	font-weight: 400;
	margin-right: 20px;
	text-align: center;
}

.score {
	font-size: 56px;
}

.total-reviews {
	font-size: 14px;
	color: #1a73e8;
}

.stars {
	display: flex;
	align-items: center;
}

.stars-bar {
	flex: 1;
	margin-right: 24px;
}

.stars-row {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.stars-row span {
	width: 20px;
}

.bar {
	flex: 1;
	height: 8px;
	background-color: #e0e0e0;
	margin-left: 10px;
	border-radius: 5px;
	overflow: hidden;
}

.filled {
	height: 100%;
	background-color: #ffc107;
}

.destinationMsg {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-sizing: border-box;
}

.destinationMsg p {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}

.review-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0;
}

.tag {
	background-color: #f1f1f1;
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 0.9em;
}

.review {
	margin-top: 20px;
	padding: 15px;
	border-top: 1px solid #ddd;
}

.review-header {
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.review-userType {
	margin-left: 10px;
}

.userType {
	color: #70757a;
	font-size: 14px;
}

.review-stars {
	color: #ffc107;
	display: flex;
	align-items: center;
	gap: 5px;
}

.review-text {
	color: #555;
}

.review-date {
	color: #70757a;
}

.userImg {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #8bd8f9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	text-transform: uppercase;
}

.moreItem {
	margin-top: 50px;
}

.share-list {
	display: flex;
}

.share-list img {
	width: 40px;
	height: 40px;
}

@media screen and (max-width: 992px) {
	.detail-left {
		width: 100%;
	}

	.detail-right {
		width: 100%;
		margin: 20px 0;
	}

	.filterBtn {
		display: block;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.navbar-menu {
		flex-direction: column;
		width: 50%;
		height: 100%;
		background-color: #1e3c72;
		position: fixed;
		top: 0;
		right: -100%;
		padding: 20px 0;
		transition: right 0.3s ease;
		z-index: 3;
	}

	.navbar-menu.open {
		right: 0;
	}

	.navbar-menu li {
		margin: 15px 0;
		text-align: center;
	}

	.navbar-toggle {
		display: flex;
	}

	.blogList .card {
		width: calc(100% / 2 - 10px);
	}

	.card img {
		height: 200px;
	}

	.no-img {
		height: 200px;
	}

	.row-tab .left-list {
		position: fixed;
		height: 100%;
		width: 45%;
		top: 0;
		right: -100%;
		background-color: #fff;
		transition: right 0.3s ease;
		z-index: 3;
		margin: 0;
		padding: 20px;
	}

	.row-tab .left-list.open {
		right: 0;
	}

	.row-tab .left-list.open {
		right: 0;
	}

	.row-tab .right-list {
		width: 100%;
	}
}

@media screen and (max-width: 576px) {
	.hero {
		height: 60vh;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1.5rem;
	}

	.card img {
		height: 180px;
	}

	.blogList .card {
		width: 100%;
	}
}