/* === VINTAGE RETROMAN DESIGN UPGRADES === */
/* #1 – Hide redundant "Home" page title */
.home .entry-header .entry-title,
.home .page-header .page-title {
	display: none;
}

/* #3 – Dark branded nav bar */
.site-header {
	background-color: #ffffff;
	padding: 10px 0;
}

.site-header .site-title a,
.site-header .site-description {
	color: #ffffff;
}

.main-navigation a {
	color: #111111 !important;
}

.main-navigation a:hover {
	color: #f5a623 !important;
}

.menu-toggle {
	color: #111111 !important;
	border-color: #111111 !important;
}

/* #6 – Unify all buttons to brand orange */
.wp-block-button__link,
a.wp-block-button__link,
.entry-content .wp-block-button__link {
	background-color: #f5a623 !important;
	color: #111111 !important;
	border: none !important;
	border-radius: 4px !important;
	font-weight: 700 !important;
}

.wp-block-button__link:hover,
a.wp-block-button__link:hover {
	background-color: #d4891a !important;
	color: #111111 !important;
}

/* #7 – Warm off-white background */
body {
	background-color: #f9f5f0 !important;
}

.site-content,
.hentry,
.page,
.entry-content {
	background-color: #ffffff;
}

/* #8 – Hero banner for top homepage section */
.home .entry-content > h2:first-of-type,
.home .entry-content > p.has-large-font-size:first-of-type {
	background: linear-gradient(135deg, #111111 60%, #1a1a1a 100%);
	color: #f5a623;
	padding: 40px 30px;
	margin: 0 0 30px;
	text-align: center;
	letter-spacing: 2px;
}

/* #4 – Tighten empty spacing gaps */
.home .entry-content .wp-block-spacer {
	height: 30px !important;
}

.home .entry-content figure.wp-block-image + .wp-block-spacer,
.home .entry-content .wp-block-embed + .wp-block-spacer {
	height: 20px !important;
}

/* General polish – add subtle card shadow to post content */
.hentry {
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	border-radius: 4px;
	padding: 20px;
}

/* === ACCORDION / DETAILS BLOCK STYLING === */
/* Summary (question) styling */
.wp-block-details summary {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111111;
	background-color: #fff8f0;
	padding: 14px 18px;
	border-left: 4px solid #f5a623;
	border-radius: 4px;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
	transition: background-color .2s ease;
}

.wp-block-details summary::-webkit-details-marker {
	display: none;
}

.wp-block-details summary::after {
	content: '＋';
	font-size: 1.2rem;
	color: #f5a623;
	font-weight: 400;
	flex-shrink: 0;
}

.wp-block-details[open] summary::after {
	content: '－';
}

.wp-block-details summary:hover {
	background-color: #fff0d6;
}

/* Answer (content) styling */
.wp-block-details > p,
.wp-block-details .wp-block-paragraph {
	padding: 14px 18px;
	margin: 0 0 8px;
	background-color: #ffffff;
	border-left: 4px solid #e0e0e0;
	border-radius: 0 0 4px 4px;
	font-size: .97rem;
	line-height: 1.7;
	color: #333333;
}

/* Space between accordion items */
.wp-block-details {
	margin-bottom: 8px;
}