/* =============================================================================
   GLOBAL — shared across all page types
   ============================================================================= */

:root {
	--content-width: 640px;
	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--color-text: #111;
	--color-muted: #888;
	--color-border: #e0e0e0;
}

/* Override style.css overly-broad body > div max-width constraint */
#page {
	max-width: none;
}

/* =============================================================================
   POST HEADER / NAV
   ============================================================================= */

.post-header {
	border-bottom: 1px solid var(--color-border);
	padding: 0 1.25em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	min-height: 52px;
}

.post-header-brand a {
	font-weight: 700;
	font-size: 15px;
	color: #e91e63 !important;
	text-decoration: none !important;
}

.post-header-brand a:hover {
	color: white !important;
}

.post-header-nav {
	margin-left: auto;
}

.post-header-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5em;
}

.post-header-nav li {
	margin: 0;
	text-align: right;
}

.post-header-nav a {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-decoration: none !important;
}

.post-header-nav a:hover {
	text-decoration: underline;
	color: white;
}

/* --- Hamburger toggle (hidden on desktop) --- */

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	margin-left: auto;
	flex-shrink: 0;
}

.nav-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: #333;
	border-radius: 1px;
}

@media (max-width: 600px) {
	.post-header {
		position: relative;
	}

	.nav-toggle {
		display: flex;
	}

	.post-header-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--color-border);
		padding: 0.75em 1.25em;
		z-index: 200;
		margin-left: 0;
	}

	.post-header-nav.nav-open {
		display: block;
	}

	.post-header-nav ul {
		flex-direction: column;
		gap: 0.5em;
	}
}

/* =============================================================================
   SITE FOOTER
   ============================================================================= */

.site-footer {
	border-top: 1px solid var(--color-border);
	margin-top: 1em;
	padding: 2.5em 3em;
	font-family: var(--font-sans);
	background-color: #e91e63;
	color: white;
	display: flex;
	flex-direction: column;
	gap: 1.5em;
}

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}

.footer-primary-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 1.5em;
	flex-wrap: wrap;
}

.footer-primary-nav li {
	margin: 0;
}

.footer-primary-nav a {
	color: rgba(255, 255, 255, 0.85) !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 500;
}

.footer-primary-nav a:hover {
	color: #fff;
	text-decoration: underline !important;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 0.875em;
}

.footer-social-link {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.15s;
}

.footer-social-link:hover {
	color: #fff;
}

.footer-social-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	display: block;
}

@media (max-width: 480px) {
	.site-footer {
		padding: 2em 1.5em;
		gap: 1.25em;
	}

	.footer-top {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-primary-nav ul {
		gap: 1em;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75em;
	}
}
