body {
	font-family: 'Segoe UI', sans-serif;
	background-color: #fafafa;
}
.navbar-brand i {
	color: #007bff;
}
.hero {
	background: url('https://static.vinwonders.com/production/best-places-to-travel-banner.jpg') no-repeat center center;
	background-size: cover;
	color: white;
	text-align: center;
	padding: 120px 20px;
}
.hero h1 {
	font-size: 3rem;
	font-weight: bold;
}
.hero p {
	font-size: 1.2rem;
}
.card img {
	height: 200px;
	object-fit: cover;
}

.underline {
	width: 60px;
	height: 3px;
	background-color: #0d6efd;
	border-radius: 2px;
}

.title-underline {
	width: 40px;
	height: 2px;
	background-color: #0d6efd;
	border-radius: 1px;
}

.object-fit-cover {
	object-fit: cover;
	height: 200px;
}

.skeleton-box {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: shimmer 1.2s infinite;
	border-radius: 4px;
}

.card-img-top.skeleton-box {
	height: 200px;
	width: 100%;
	border-radius: 0.375rem 0.375rem 0 0;
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}


.breadcrumb-wrapper {
	background-color: #f8f9fa;
	padding: 0.75rem 1rem;
	border-radius: 0.375rem;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.breadcrumb {
	margin-bottom: 0;
	background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
	content: "›";
	color: #6c757d;
}

.breadcrumb a {
	color: #0d6efd;
	text-decoration: none;
}

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

.breadcrumb-item.active {
	color: #6c757d;
}

.tour-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tour-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.tour-card .card-img-top {
	height: 200px;
	object-fit: cover;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}
.tour-card-title {
	font-size: 1.05rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 0.4rem;
	margin-bottom: 1rem;
	min-height:100px;
}

@media (max-width: 576px) {
	.tour-card-title {
		font-size: 1rem;
		padding: 10px 0;
		min-height:130px;
	}
}

.tour-card-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background-color: #0d6efd;
	border-radius: 2px;
}
.tour-card-text {
	font-size: 0.95rem;
	color: #555;
}
.tour-card .card-footer {
	display: flex;
	padding: 0;
	border-top: 1px solid #dee2e6;
}
.tour-card .card-footer a {
	flex: 1;
	padding: 12px 0;
	text-align: center;
	background-color: #fff;
	color: #0d6efd;
	font-size: 0.9rem;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
	border: none;
}

@media (max-width: 576px) {
	.tour-card .card-footer a {
		font-size: 0.7rem;
		padding: 10px 0;
	}
}

.tour-card .card-footer a:hover {
	background-color: #0d6efd;
	color: #fff;
}
.tour-card .card-footer a + a {
	border-left: 1px solid #dee2e6;
}

.tour-gallery img {
	object-fit: cover;
	height: 400px;
}
.tour-info-card {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
}
.tour-info-card h1 {
	font-size: 1.8rem;
	font-weight: 600;
}
.tour-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}
.tour-buttons a {
	flex: 1;
	text-align: center;
	padding: 12px;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	color: #fff;
}
.tour-buttons .whatsapp {
	background-color: #25D366;
}
.tour-buttons .reserve {
	background-color: #0d6efd;
}
.tour-description {
	line-height: 1.7;
	font-size: 1rem;
}