body { 
	font-family: 'Segoe UI', sans-serif;
	background-color: #fafafa;
}
.city-card {
	transition: all 0.3s ease;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	border-radius: 10px;
}
.city-card:hover {
	background: #f1f1f1;
	transform: translateY(-4px);
}
.section-title {
	margin: 40px 0 20px;
	border-bottom: 2px solid #dee2e6;
	padding-bottom: 10px;
	font-weight: 600;
}
.list-group-item {
	display: flex;
	align-items: center;
	gap: 10px;
	border: none;
	border-bottom: 1px solid #eee;
}
.carousel-item img {
	object-fit: cover;
	height: 500px;
}
.carousel-caption {
	background: rgba(216, 216, 216, 0.5);
	padding: 20px;
	border-radius: 10px;
	animation: fadeUp 1s ease-in-out;
}
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.breadcrumb-wrapper {
	border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
	background: transparent;
	font-size: 0.95rem;
}

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

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

.breadcrumb-item + .breadcrumb-item::before {
	content: ">";
	color: #6c757d;
	padding: 0 0.5rem;
}

.section-title {
	font-size: 1.5rem;
	font-weight: 600;
}

.section-underline {
	width: 80px;
	height: 3px;
	background-color: #0d6efd;
	border-radius: 2px;
	margin-top:8px;
}

.categories-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: transform 0.3s ease;
}

.categories-card:hover {
	transform: translateY(-4px);
}

.category-image {
	height: 140px;
	object-fit: cover;
}

.category-title {
	font-size: 1rem;
}

.category-underline {
	width: 40px;
	height: 3px;
	background-color: #0d6efd;
	border-radius: 2px;
	margin-bottom:10px;
}
