/**
 * Meals on Wheels LaPorte County — Menu Print Stylesheet
 *
 * Strips chrome (header, footer, nav, CTAs) and formats the menu calendar
 * as a clean, PDF-like document for printing monthly handouts.
 *
 * @package mow-laporte
 */

@media print {

	/* ── Hide site chrome ─────────────────────────────────── */
	.site-header,
	.skip-link-wrapper,
	.site-footer,
	.tagline-strip,
	.wp-block-template-part,
	.wp-block-navigation,
	.wp-block-buttons,
	.wp-block-button,
	.pay-cta,
	.donate-cta,
	#wpadminbar,
	.admin-bar,
	.mow-cta-section,
	.cta-lime,
	.cta-navy,
	.newsletter-card,
	.footer-detail-cards {
		display: none !important;
	}

	/* ── Reset page layout ────────────────────────────────── */
	@page {
		size: landscape;
		margin: 0.5in;
	}

	html, body {
		margin: 0 !important;
		padding: 0 !important;
		background: #fff !important;
		color: #000 !important;
		font-size: 10pt !important;
		line-height: 1.3 !important;
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
	}

	* {
		box-shadow: none !important;
		text-shadow: none !important;
	}

	/* ── Strip backgrounds and round corners ──────────────── */
	.wp-block-group,
	.wp-block-columns,
	.wp-block-column,
	.wp-site-blocks,
	.site-main,
	.entry-content,
	.wp-block-post-content {
		background: transparent !important;
		border-radius: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	/* Keep the hero section minimal — just the month title */
	.hero-light-page {
		padding: 0 !important;
		background: transparent !important;
	}

	.hero-light-page .mow-hero-light__decorative {
		display: none !important;
	}

	/* ── Month heading ────────────────────────────────────── */
	.hero-light-page h1,
	.wp-block-heading {
		color: #003952 !important;
		font-size: 18pt !important;
		text-align: center !important;
		margin: 0 0 8pt 0 !important;
		padding: 0 !important;
		page-break-after: avoid !important;
	}

	.hero-light-page p,
	.hero-light-page .wp-block-paragraph {
		color: #333 !important;
		font-size: 9pt !important;
		text-align: center !important;
		margin-bottom: 6pt !important;
	}

	/* Hide pill eyebrow in print */
	.wp-block-mow-pill-eyebrow,
	[class*="pill-eyebrow"] {
		display: none !important;
	}

	/* ── Menu calendar grid ───────────────────────────────── */
	.wp-block-columns {
		display: flex !important;
		flex-wrap: nowrap !important;
		gap: 2pt !important;
		page-break-inside: avoid !important;
	}

	.wp-block-column {
		flex: 1 1 0 !important;
		min-width: 0 !important;
		page-break-inside: avoid !important;
	}

	/* Menu day cards */
	.wp-block-column .wp-block-group {
		border: 1px solid #ccc !important;
		border-radius: 4pt !important;
		padding: 6pt !important;
		margin-bottom: 4pt !important;
		background: #fff !important;
		page-break-inside: avoid !important;
	}

	/* Preserve top-border color accents for day cards */
	.wp-block-column .wp-block-group[style*="border-top-color"] {
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
	}

	/* Day label (Mon, Tue, etc.) */
	.wp-block-column .wp-block-group .has-teal-color {
		color: #00B7C4 !important;
		font-size: 8pt !important;
		margin: 0 !important;
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
	}

	/* Entree title */
	.wp-block-column .wp-block-group h4 {
		font-size: 10pt !important;
		color: #003952 !important;
		margin: 2pt 0 !important;
		line-height: 1.2 !important;
	}

	/* Sides / details */
	.wp-block-column .wp-block-group p {
		font-size: 8pt !important;
		color: #333 !important;
		margin: 0 !important;
		line-height: 1.3 !important;
	}

	/* ── Footer info cards (cancellation info etc.) ───────── */
	.footer-detail-cards {
		display: none !important;
	}

	/* ── Section backgrounds → white for print ────────────── */
	[class*="has-gray-1-background-color"],
	[class*="has-navy-background-color"],
	[class*="has-navy-deep-background-color"],
	[class*="has-teal-background-color"],
	[class*="has-lime-background-color"] {
		background-color: #fff !important;
	}

	/* ── Navy text → dark for print ───────────────────────── */
	.has-navy-color,
	.has-navy-deep-color,
	[class*="has-navy-color"] {
		color: #003952 !important;
	}

	.has-white-color {
		color: #003952 !important;
	}

	/* ── Links: no underlines, dark text ──────────────────── */
	a, a:visited {
		color: #003952 !important;
		text-decoration: none !important;
	}

	/* ── Prevent widows / orphans ─────────────────────────── */
	p, h1, h2, h3, h4, h5, h6 {
		orphans: 3;
		widows: 3;
	}

	h1, h2, h3, h4 {
		page-break-after: avoid !important;
	}

	/* ── Logo for print header ────────────────────────────── */
	.footer-logo,
	.wp-block-site-logo {
		display: none !important;
	}

	/* ── Cancellation notice at bottom ────────────────────── */
	.menu-cancellation-notice {
		border-top: 1px solid #ccc !important;
		padding-top: 6pt !important;
		margin-top: 12pt !important;
		font-size: 8pt !important;
		color: #666 !important;
		text-align: center !important;
	}

}
