* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #f5f5f5;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.header {
	background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
	color: white;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.logo {
	font-size: 2rem;
	font-weight: bold;
	color: #FFD700;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.header-btn {
	background: rgba(255,255,255,0.1);
	color: white;
	padding: 0.5rem 1rem;
	text-decoration: none;
	border-radius: 25px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
}

.header-btn:hover {
	background: rgba(255,255,255,0.2);
	transform: translateY(-2px);
}

/* Navigation */
.nav {
	background: #654321;
	padding: 0.5rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-list {
	display: flex;
	list-style: none;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.nav-list li a {
	color: white;
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 20px;
	transition: all 0.3s ease;
	display: block;
}

.nav-list li a:hover,
.nav-list li a.active {
	background: #FFD700;
	color: #333;
	transform: scale(1.05);
}

/* Hero Slider */
.hero-slider {
	position: relative;
	height: 400px;
	margin: 2rem 0;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-slider-container{
	padding: 0;
    height: 100%;
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.slide.active {
	opacity: 1;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	padding: 2rem;
	color: white;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #FFD700;
	transform: scale(1.2);
}

/* Main Content */
.main-content {
	background: white;
	margin: 2rem 0;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	overflow: hidden;
}

.content-section {
	padding: 2rem;
}

.section-title {
	font-size: 2rem;
	color: #8B4513;
	margin-bottom: 1rem;
	border-bottom: 3px solid #FFD700;
	padding-bottom: 0.5rem;
	display: inline-block;
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 2rem;
}

.location-card {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 2rem;
	border-radius: 10px;
	border-left: 5px solid #8B4513;
	margin-top: 1rem;
}

.location-title {
	font-size: 1.5rem;
	color: #8B4513;
	margin-bottom: 1rem;
	font-weight: bold;
}

.location-details {
	color: #666;
	line-height: 1.6;
}

.phone {
	color: #8B4513;
	font-weight: bold;
	font-size: 1.1rem;
	margin-top: 0.5rem;
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 2rem 0;
	text-align: center;
}

.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1rem;
}

.footer-links a {
	color: #FFD700;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

.separator {
	color: #666;
	margin: 0 0.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.header-content {
		flex-direction: column;
		text-align: center;
	}

	.logo {
		font-size: 1.5rem;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.nav-list {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #654321;
		padding: 1rem 0;
	}

	.nav-list.active {
		display: flex;
	}

	.nav-list li {
		width: 100%;
		text-align: center;
	}

	.hero-slider {
		height: 250px;
		margin: 1rem 0;
	}

	.content-section {
		padding: 1.5rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 0.5rem;
	}

	.separator {
		display: none;
	}
}

@media (max-width: 480px) {
	.header-actions {
		flex-direction: column;
		gap: 0.5rem;
	}

	.hero-slider {
		height: 200px;
	}

	.content-section {
		padding: 1rem;
	}

	.location-card {
		padding: 1.5rem;
	}
}