/* Simple, Clean Style for Podbury Family Website */

/* Header - Bold title on colored background using Arms colors */
.site-header {
	background: linear-gradient(135deg, #1E4B18 0%, #D4A838 100%);
	padding: 2rem 1rem;
	text-align: center;
	margin-bottom: 0;
}

.site-branding {
	margin: 0;
}

.site-title {
	margin: 0;
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.site-title a {
	color: #ffffff;
	text-decoration: none;
}

.site-title a:hover {
	opacity: 0.9;
}

/* Hide navigation menu */
.main-navigation,
#site-navigation {
	display: none !important;
}

/* Main content area */
.site-main {
	padding: 2rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.entry-content {
	margin-bottom: 3rem;
	line-height: 1.8;
	font-size: 1.1rem;
}

.entry-content p {
	margin-bottom: 1rem;
}

.entry-content h1 {
	color: #1E4B18;
	margin-bottom: 1rem;
}

.entry-content h2 {
	color: #1E4B18;
	margin-top: 2rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid #D4A838;
	padding-bottom: 0.5rem;
}

/* Family Tree Section */
.family-tree-section {
	margin: 3rem 0 0 0;
	padding: 0;
}

.family-tree-content {
	width: 100%;
	overflow-x: auto;
}

/* Family Tree Image */
.family-tree-image-wrapper {
	text-align: center;
	margin: 2rem 0;
}

.family-tree-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer - Similar colored background using Arms colors */
.site-footer {
	background: linear-gradient(135deg, #1E4B18 0%, #D4A838 100%);
	color: #ffffff;
	padding: 2rem 1rem;
	text-align: center;
	margin-top: 3rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.copyright {
	margin: 0;
	color: #ffffff;
	font-size: 0.9rem;
}

.footer-navigation {
	display: none; /* Hide footer menu too */
}

/* Family Arms Image - Top right corner */
.family-arms-image {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 10;
	margin: 0;
}

.family-arms {
	max-width: 120px;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
	.site-title {
		font-size: 2rem;
	}
	
	.site-main {
		padding: 1.5rem 1rem;
	}
	
	.entry-content {
		font-size: 1rem;
	}
	
	.family-arms {
		max-width: 80px;
	}
	
	.family-arms-image {
		top: 0.5rem;
		right: 0.5rem;
	}
}

