/* === GENERAL BODY & BACKGROUND === */
body {
	background-color: #000000;
	color: #e0e0e0;
	font-family: 'Georgia', serif;
}

/* === HEADERS === */
h1, h2, h3, h4, h5, h6 {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
}

/* === SITE TITLE & TAGLINE === */
.site-title a,
.site-description {
	color: #ffffff !important;
}

/* === MAIN NAVIGATION === */
.main-navigation {
	background-color: #1a1a1a;
	border-bottom: 2px solid #333;
}

.main-navigation a {
	color: #e0e0e0;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
}

.main-navigation a:hover {
	color: #ff4c4c;
}

/* === BUTTON STYLES === */
button,
.wp-block-button__link {
	background-color: #ff4c4c;
	color: #ffffff;
	font-weight: bold;
	border-radius: 4px;
	text-transform: uppercase;
	padding: 12px 24px;
	transition: background-color .3s ease;
}

button:hover,
.wp-block-button__link:hover {
	background-color: #cc0000;
}

/* === LINKS === */
a {
	color: #ff4c4c;
	text-decoration: none;
}

a:hover {
	color: #F1B051;
	text-decoration: underline;
}

/* === SIDEBAR WIDGETS === */
.widget {
	background-color: #1e1e1e;
	padding: 5px;
	margin-bottom: 20px;
	border-left: 2px solid #F1B051;
}

/* === FOOTER === */
.site-footer {
	background-color: #0d0d0d;
	color: #888;
}

.site-footer a {
	color: #aaa;
}

.site-footer a:hover {
	color: #ff4c4c;
}

/* Optional: make blockquote border lighter (if any) */
.widget blockquote {
	border-left: 2px solid #ff4c4c;
}

.widget .wp-block-pullquote blockquote p {
	color: #ffffff !important;
}

.widget .wp-block-pullquote cite {
	color: #F1B051 !important;
}

/* Hide the meta area (date, tags, etc.) on single posts and pages */
.single-post .entry-meta,
.page .entry-meta,
.single-post .entry-footer,
.page .entry-footer,
.single-post .sharedaddy,
.page .sharedaddy,
.single-post .post-likes,
.page .post-likes {
	display: none !important;
}

/* Expand post/content area to full width on single posts and pages */
.single-post .hentry,
.page .page-id {
	display: block;
}

.single-post .entry-content,
.page .entry-content {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	margin-left: 0 !important;
}

/* Restore post/page meta/footer and move it below content */
.single-post .entry-meta,
.page .entry-meta,
.single-post .entry-footer,
.page .entry-footer,
.single-post .sharedaddy,
.page .sharedaddy,
.single-post .post-likes,
.page .post-likes {
	display: block !important;
	float: none !important;
	width: 100% !important;
	clear: both;
	margin-top: 2em;
	text-align: left;
	padding-top: 1em;
	border-top: 1px solid #444;
/* Optional: a subtle divider */
	color: #aaa;
	font-size: .9em;
}

/* Expand Related Posts (#jp-relatedposts) and Comments to match full content width */
#jp-relatedposts,
.single-post .comments-area,
.single-post .comments-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
	clear: both !important;
/* Make sure there's no floating issues */
}

/* Optional: tweak layout wrapper to support new flow for pages too */
.single-post .hentry,
.page .page-id {
	display: block;
}

/* Constrain featured image inside post to match content width */
.single .post-thumbnail {
	max-width: 1300px;
/* Match your post content width */
	margin: 0 auto;
}

/* Ensure the image itself scales correctly */
.single .post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}