:root {
	--green-dark: #2f5d50;
	--green-light: #e6f2ee;
	--earth-brown: #6b5e4a;
	--text-dark: #2b2b2b;
	--text-light: #f5f7f6;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Inter", sans-serif;
	color: var(--text-dark);
	background-color: var(--green-light);
	line-height: 1.7;
}

/* Hero Section */
.hero {
	height: 60vh;
	background: linear-gradient(
			rgba(47, 93, 80, 0.6),
			rgba(47, 93, 80, 0.6)
		),
		url("https://images.unsplash.com/photo-1501183638710-841dd1904471?auto=format&fit=crop&w=1600&q=80");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-overlay {
	text-align: center;
	color: var(--text-light);
	padding: 2rem;
}

.hero h1 {
	font-family: "Merriweather", serif;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Main Content */
.container {
	max-width: 900px;
	margin: -4rem auto 4rem;
	padding: 0 1.5rem;
}

.essay {
	background: #ffffff;
	padding: 3rem;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.essay h2 {
	font-family: "Merriweather", serif;
	color: var(--green-dark);
	margin-top: 0;
	font-size: 2rem;
}

.essay p {
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

/* Footer */
.footer {
	background-color: var(--green-dark);
	color: var(--text-light);
	text-align: center;
	padding: 1.5rem;
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.2rem;
	}

	.essay {
		padding: 2rem;
	}
}
