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

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

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

/* Navigation */
.navbar {
	background: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

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

.logo h2 {
	color: #007bff;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #007bff;
}

.btn-login,
.btn-logout {
	background: #007bff;
	color: white !important;
	padding: 8px 20px;
	border-radius: 5px;
}

.btn-login:hover,
.btn-logout:hover {
	background: #0056b3;
}

/* Hero Section */
.hero {
	background:
		linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url("https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1600");
	background-size: cover;
	background-position: center;
	min-height: 500px;
	display: flex;
	align-items: center;
	text-align: center;
	color: white;
}

.hero-content {
	width: 100%;
}

.hero-title {
	font-size: 48px;
	margin-bottom: 20px;
}

.gradient-text {
	color: #007bff;
}

.hero-subtitle {
	font-size: 20px;
	margin-bottom: 30px;
}

/* Packages Section */
.packages {
	padding: 60px 0;
	background: #f8f9fa;
}

.section-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 15px;
	color: #333;
}

.section-subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 40px;
}

.packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.package-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

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

.package-image {
	height: 200px;
	background-size: cover;
	background-position: center;
	background-color: #ddd;
}

.package-content {
	padding: 20px;
}

.package-meta {
	display: flex;
	gap: 15px;
	margin: 15px 0;
	font-size: 14px;
}

.price {
	color: #007bff;
	font-weight: bold;
	font-size: 22px;
}

.duration {
	color: #666;
}

.difficulty {
	padding: 3px 10px;
	border-radius: 15px;
	font-size: 12px;
}

.difficulty.hard {
	background: #ffe5e5;
	color: #dc3545;
}
.difficulty.moderate {
	background: #fff3e0;
	color: #ff9800;
}
.difficulty.easy {
	background: #e8f5e9;
	color: #28a745;
}

.btn-view,
.btn-book-now {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	background: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s;
}

.btn-view:hover,
.btn-book-now:hover {
	background: #0056b3;
}

/* Features Section */
.features {
	padding: 60px 0;
	background: white;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	text-align: center;
}

.feature-card {
	padding: 30px;
	background: #f8f9fa;
	border-radius: 10px;
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 40px;
	margin-bottom: 15px;
}

/* Auth Pages (Login/Register) */
.auth-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #007bff, #6610f2);
	padding: 20px;
}

.auth-card {
	background: white;
	max-width: 450px;
	width: 100%;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.auth-header {
	text-align: center;
	margin-bottom: 30px;
}

.auth-header h2 {
	color: #333;
	margin-bottom: 10px;
}

.auth-header p {
	color: #666;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #333;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: #007bff;
}

.btn-auth {
	width: 100%;
	padding: 12px;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

.btn-auth:hover {
	background: #0056b3;
}

.btn-demo {
	width: 100%;
	padding: 10px;
	background: #28a745;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 15px;
	transition: background 0.3s;
}

.btn-demo:hover {
	background: #1e7e34;
}

.demo-info {
	text-align: center;
	margin-top: 10px;
	font-size: 12px;
	color: #666;
}

.auth-footer {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.auth-footer a {
	color: #007bff;
	text-decoration: none;
}

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

/* Alert Messages */
.alert {
	padding: 12px;
	border-radius: 5px;
	margin-bottom: 20px;
	animation: slideIn 0.3s ease;
}

.alert-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.alert-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Dashboard */
.dashboard-container {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}

.dashboard-header {
	text-align: center;
	margin-bottom: 40px;
}

.dashboard-header h1 {
	color: #333;
	margin-bottom: 10px;
}

.dashboard-header p {
	color: #666;
}

.admin-stats,
.dashboard-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.stat-card {
	background: white;
	padding: 30px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.stat-card:hover {
	transform: translateY(-5px);
}

.stat-number {
	font-size: 36px;
	font-weight: bold;
	color: #007bff;
}

.stat-label {
	color: #666;
	margin-top: 10px;
}

.dashboard-section {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-section h2 {
	margin-bottom: 20px;
	color: #333;
}

.bookings-table {
	overflow-x: auto;
}

.bookings-table table {
	width: 100%;
	border-collapse: collapse;
}

.bookings-table th,
.bookings-table td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.bookings-table th {
	background: #f8f9fa;
	font-weight: bold;
	color: #333;
}

.status {
	padding: 3px 10px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: bold;
}

.status.pending {
	background: #fff3cd;
	color: #856404;
}
.status.confirmed {
	background: #d4edda;
	color: #155724;
}
.status.cancelled {
	background: #f8d7da;
	color: #721c24;
}

.empty-state {
	text-align: center;
	padding: 50px;
}

.empty-state p {
	margin-bottom: 20px;
	color: #666;
}

.btn-primary {
	display: inline-block;
	padding: 10px 25px;
	background: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s;
}

.btn-primary:hover {
	background: #0056b3;
}

/* Booking Page */
.booking-container {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background: #f8f9fa;
}

.booking-card {
	background: white;
	max-width: 500px;
	width: 100%;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-card h1 {
	text-align: center;
	margin-bottom: 20px;
	color: #333;
}

.package-summary {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 10px;
	margin: 20px 0;
	text-align: center;
}

.package-summary h2 {
	color: #007bff;
	margin-bottom: 10px;
}

.package-summary .price {
	font-size: 24px;
	margin: 10px 0;
}

.booking-form .form-group {
	margin-bottom: 20px;
}

.booking-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
}

.booking-form select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.btn-book {
	width: 100%;
	padding: 12px;
	background: #28a745;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

.btn-book:hover {
	background: #1e7e34;
}

.btn-cancel {
	display: block;
	text-align: center;
	margin-top: 15px;
	color: #dc3545;
	text-decoration: none;
}

.btn-cancel:hover {
	text-decoration: underline;
}

/* Packages Page */
.packages-page {
	padding: 60px 0;
	background: #f8f9fa;
	min-height: calc(100vh - 200px);
}

.packages-page .section-title {
	margin-bottom: 40px;
}

/* Footer */
footer {
	background: #343a40;
	color: white;
	padding: 40px 0 20px;
	margin-top: 60px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

.footer-col h3 {
	margin-bottom: 15px;
	color: #007bff;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-col a:hover {
	color: #007bff;
}

.footer-col p {
	margin-bottom: 10px;
	color: #ccc;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #555;
	color: #ccc;
	font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-title {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.section-title {
		font-size: 28px;
	}

	.packages-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.nav-links {
		display: none;
	}

	.auth-card {
		padding: 30px 20px;
	}

	.dashboard-container {
		padding: 0 15px;
	}

	.stat-card {
		padding: 20px;
	}

	.stat-number {
		font-size: 28px;
	}
}

/* Small devices */
@media (max-width: 480px) {
	.hero-title {
		font-size: 24px;
	}

	.package-card {
		margin: 0 10px;
	}

	.booking-card {
		padding: 20px;
	}
}
