/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

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

body {
	font-family: 'Montserrat', sans-serif;
	background: #fff;
	color: #333;
}

/* Header */
header {
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
}

.logo {
	max-width: 300px;
	height: auto;
}

/* Navigation */
nav ul {
	list-style: none;
	display: flex;
	gap: 30px;
}

nav a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	transition: color 0.3s;
}

nav a:hover,
nav a.active {
	color: #ee6f5e;
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	font-size: 28px;
	cursor: pointer;
}

/* Hero Carousel */
.carousel-container {
	position: relative;
	width: 100%;
	height: 60vh;
	overflow: hidden;
	background: #000;
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Carousel dots */
.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s;
}

.dot.active {
	background: #fff;
}

/* Tagline Section */
.tagline {
	text-align: center;
	padding: 60px 20px;
	max-width: 800px;
	margin: 0 auto;
}

.tagline p {
	font-size: 18px;
	line-height: 1.6;
	color: #555;
	font-weight: 400;
}

/* Footer */
footer {
	text-align: center;
	padding: 40px 20px;
	border-top: 1px solid #eee;
}

/* Footer Donate Section */
.footer-donate {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.donate-text {
	font-size: 16px;
	color: #555;
	margin-bottom: 15px;
	font-weight: 500;
}

.footer-donate-btn {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(135deg, #52833f 0%, #42692f 100%);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	border-radius: 25px;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(82, 131, 63, 0.3);
}

.footer-donate-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(82, 131, 63, 0.4);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.social-links a {
	color: #333;
	font-size: 24px;
	transition: color 0.3s;
}

.social-links a:hover {
	color: #ee6f5e;
}

footer p {
	font-size: 14px;
	color: #777;
	font-weight: 400;
}

footer a {
	color: #ee6f5e;
	text-decoration: none;
	font-weight: 500;
}

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

/* Responsive */
@media (max-width: 768px) {
	header {
		padding: 15px 20px;
	}
	
	.logo {
		max-width: 200px;
	}
	
	nav {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 20px;
		box-shadow: 0 4px 6px rgba(0,0,0,0.1);
		z-index: 1000;
	}
	
	nav.active {
		display: block;
	}
	
	nav ul {
		flex-direction: column;
		gap: 15px;
	}
	
	.menu-toggle {
		display: block;
	}
	
	.carousel-container {
		height: 40vh;
	}
	
	.tagline p {
		font-size: 16px;
	}
}