/* HR Styles for Tour Pages */
hr {
	border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section with Background Image */
.hero-section {
	background-size: cover;
	padding: 120px 0;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: -1;
}

/* Footer Styles */
footer {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 40px 0;
	margin-top: 50px;
}

footer a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

footer a:hover {
	color: #ffd700;
}
