/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', 'Open Sans', 'Lato', Arial, sans-serif;
	background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(70, 130, 180, 0.1) 100%);
	background-attachment: fixed;
	min-height: 100vh;
	color: #333;
	line-height: 1.6;
}

/* Main Container */
.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	background: #F8F8F8;
	border-radius: 25px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	margin-top: 2rem;
	margin-bottom: 2rem;
}

/* Header */
.main-header {
	background: #fff;
	padding: 1.5rem 2rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: visible;
}

.demo-banner {
	position: absolute;
	top: 0;
	right: 0;
	background: #dc3545;
	color: #fff;
	padding: 0.5rem 4rem;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 2px;
	transform: translateX(25%) translateY(50%) rotate(45deg);
	transform-origin: center;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-section {
	display: flex;
	flex-direction: column;
}

.site-logo {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 2px;
	margin: 0;
}

.site-logo a {
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
}

.site-slogan {
	font-family: 'Bad Script', cursive;
	font-size: 1.1rem;
	color: #333;
	margin-top: 0.25rem;
	margin-left: calc(0.5rem + 25px);
}

/* Navigation */
.main-navigation {
	background: #fff;
	border-top: 1px solid #eee;
	padding: 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
}

.nav-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 1rem 0;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	color: #555;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s ease;
	padding: 0.5rem 0;
}

.nav-menu a:hover {
	color: #2E8B78;
}

/* Dropdown Menu */
.dropdown {
	position: relative;
}

.dropdown-toggle {
	cursor: pointer;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 180px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 0.5rem 0;
	margin-top: 0.5rem;
	list-style: none;
	z-index: 1000;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu li {
	padding: 0;
}

.dropdown-menu a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #555;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
	background-color: #f0f0f0;
	color: #2E8B78;
}

/* Hero Section */
.hero-section {
	position: relative;
	width: 100%;
	height: 500px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 3rem;
	background: linear-gradient(135deg, rgba(138, 43, 226, 0.7) 0%, rgba(30, 144, 255, 0.7) 100%);
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 500"><rect fill="%23ffffff" opacity="0.1" width="1200" height="500"/></svg>');
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem;
}

.hero-overlay {
	background: rgba(46, 139, 120, 0.85);
	padding: 2.5rem;
	border-radius: 15px;
	max-width: 600px;
	color: #fff;
}

.hero-section h1 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #fff;
}

.hero-section h1 .highlight {
	background: #2E8B78;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	display: inline-block;
}

.hero-section p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	color: #fff;
	line-height: 1.8;
}

.hero-logo {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	padding-left: 2rem;
}

.hero-logo img {
	max-height: 300px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background: #fff;
	color: #2E8B78;
}

.btn-secondary:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
}

/* Card Grid */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.card {
	background: #fff;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #333;
}

.card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #000;
}

.card p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.7;
	text-align: justify;
}

.card .btn {
	font-size: 0.95rem;
	padding: 0.75rem 1.5rem;
}

/* Content Sections */
.content-section {
	margin: 0.75rem 0;
	padding: 0.5rem 0;
}

.content-section h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #000;
}

.content-section h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 1.5rem 0 1rem 0;
	color: #333;
}

.content-section p {
	margin-bottom: 1rem;
	color: #555;
	line-height: 1.8;
}

.content-section ul,
.content-section ol {
	margin: 1rem 0 1rem 2rem;
	color: #555;
}

.content-section li {
	margin-bottom: 0.5rem;
	line-height: 1.7;
}

.content-section a {
	color: #2E8B78;
	text-decoration: none;
	transition: color 0.3s ease;
}

.content-section a:hover {
	color: #247A68;
	text-decoration: underline;
}

/* Footer */
.main-footer {
	background: #2c2c2c;
	color: #fff;
	padding: 2rem 2rem 1rem;
	margin-top: 2rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 1rem;
}

.footer-section h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #fff;
}

.footer-section p {
	color: #ccc;
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
	color: #4CAF50;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 1rem;
	border-top: 1px solid #444;
	text-align: center;
	color: #999;
	font-size: 0.9rem;
}

.footer-bottom p {
	margin-bottom: 0.5rem;
}

.developer-info a {
	color: #4CAF50;
	text-decoration: none;
}

.developer-info a:hover {
	text-decoration: underline;
}

/* Visit Us / Map */
.map-container {
	width: 100%;
	height: 500px;
	border-radius: 15px;
	overflow: hidden;
	margin: 2rem 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
	.main-content {
		padding: 1rem;
		margin: 1rem;
		border-radius: 15px;
	}

	.nav-container {
		flex-direction: column;
		padding: 1rem;
	}

	.nav-menu {
		flex-direction: column;
		width: 100%;
		gap: 0.5rem;
		align-items: flex-start;
	}

	.dropdown-menu {
		position: static;
		display: block;
		box-shadow: none;
		margin-top: 0.5rem;
		padding-left: 1rem;
	}

	.hero-section {
		height: auto;
		min-height: 400px;
		padding: 1.5rem;
	}

	.hero-section h1 {
		font-size: 1.8rem;
	}

	.hero-section p {
		font-size: 1rem;
	}

	.card-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.site-logo {
		font-size: 1.5rem;
	}

	.site-slogan {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 1.5rem;
	}

	.hero-section h1 .highlight {
		padding: 0.4rem 0.8rem;
		font-size: 1.3rem;
	}

	.btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}
}
