:root {
	--primary: #1e3a5f;
	--primary-light: #2d4a6f;
	--accent: #c9a227;
	--accent-light: #e8c547;
	--text: #333;
	--text-light: #666;
	--bg: #fafafa;
	--bg-alt: #fff;
	--border: #e0e0e0;
}

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

body {
	font-family: 'Open Sans', sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
}

h1, h2, h3, h4 {
	font-family: 'Merriweather', serif;
	color: var(--primary);
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: var(--accent);
}

/* Header */
header {
	background: var(--primary);
	color: #fff;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
	font-family: 'Merriweather', serif;
	font-size: 1.5rem;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-icon {
	color: var(--accent);
	font-size: 1.8rem;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
}

nav a {
	color: #fff;
	font-weight: 500;
	padding: 0.5rem 0;
	border-bottom: 2px solid transparent;
}

nav a:hover {
	color: var(--accent-light);
	border-bottom-color: var(--accent);
}

.mobile-menu {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Page Header */
.page-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: #fff;
	padding: 2.5rem 1.5rem;
}

.page-header-content {
	max-width: 900px;
	margin: 0 auto;
}

.breadcrumb {
	font-size: 0.9rem;
	margin-bottom: 1rem;
	opacity: 0.9;
}

.breadcrumb a {
	color: var(--accent-light);
}

.breadcrumb span {
	margin: 0 0.5rem;
	color: rgba(255,255,255,0.6);
}

.page-header h1 {
	color: #fff;
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.page-header-meta {
	font-size: 0.95rem;
	opacity: 0.85;
}

/* Main Content */
main {
	max-width: 900px;
	margin: 3rem auto;
	padding: 0 1.5rem;
}

.content-section {
	background: var(--bg-alt);
	padding: 2.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
	border: 1px solid var(--border);
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.intro {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text);
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid var(--border);
}

.content-section h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	padding-top: 1rem;
}

.content-section h3 {
	font-size: 1.4rem;
	margin: 2rem 0 1rem;
	color: var(--primary-light);
}

.content-section p {
	margin-bottom: 1.25rem;
	line-height: 1.8;
}

/* Verse Cards */
.verse-card {
	background: linear-gradient(to right, #f8f9fa 0%, #fff 100%);
	border-left: 4px solid var(--accent);
	padding: 1.5rem;
	margin: 1.5rem 0;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.verse-text {
	font-family: 'Merriweather', serif;
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--text);
	margin-bottom: 0.75rem;
	font-style: italic;
}

.verse-reference {
	font-weight: 600;
	color: var(--accent);
	font-size: 0.95rem;
}

.verse-explanation {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.7;
}

/* Callout Box */
.callout {
	background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
	border: 2px solid var(--accent);
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
}

.callout-title {
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
}

.callout p {
	margin-bottom: 0.75rem;
}

.callout p:last-child {
	margin-bottom: 0;
}

/* List Styling */
.content-section ul {
	margin: 1rem 0 1.5rem 1.5rem;
	line-height: 1.8;
}

.content-section li {
	margin-bottom: 0.75rem;
	color: var(--text);
}

/* Related Links */
.related-links {
	background: var(--bg);
	padding: 2rem;
	border-radius: 8px;
	margin-top: 3rem;
}

.related-links h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.related-link {
	background: var(--bg-alt);
	padding: 1rem;
	border-radius: 4px;
	border: 1px solid var(--border);
	transition: all 0.2s;
}

.related-link:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.related-link a {
	display: block;
	font-weight: 500;
}

/* Footer */
footer {
	background: var(--primary);
	color: #fff;
	padding: 3rem 1.5rem 1.5rem;
	margin-top: 4rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h4 {
	color: var(--accent-light);
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

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

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

.footer-section a {
	color: rgba(255,255,255,0.8);
	font-size: 0.95rem;
}

.footer-section a:hover {
	color: var(--accent-light);
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding-top: 2rem;
	color: rgba(255,255,255,0.7);
	font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	nav ul {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--primary);
		padding: 1rem;
		gap: 0.5rem;
	}

	nav ul.active {
		display: flex;
	}

	.mobile-menu {
		display: block;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	.content-section {
		padding: 1.5rem;
	}

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