/**
 * Ahan Theme - Print Styles
 * Version: 2.2.0
 *
 * Optimized for printing menus, contact info, and restaurant details.
 * Follows best practices from Google, Microsoft, and W3C print guidelines.
 */

/* ==========================================================================
   Print Foundation
   ========================================================================== */

@media print {
	/* Page Setup */
	@page {
		size: letter;
		margin: 0.75in;
	}

	@page :first {
		margin-top: 0.5in;
	}

	/* Base Reset */
	*,
	*::before,
	*::after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
		filter: none !important;
		-ms-filter: none !important;
	}

	/* Typography */
	html {
		font-size: 12pt;
	}

	body {
		font-family: Georgia, "Times New Roman", serif;
		line-height: 1.5;
		widows: 3;
		orphans: 3;
	}

	/* ==========================================================================
	   Headers & Text
	   ========================================================================== */

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		page-break-after: avoid;
		page-break-inside: avoid;
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	}

	h1 {
		font-size: 24pt;
		margin-bottom: 12pt;
	}

	h2 {
		font-size: 18pt;
		margin-top: 18pt;
		margin-bottom: 6pt;
		border-bottom: 1pt solid #333;
		padding-bottom: 3pt;
	}

	h3 {
		font-size: 14pt;
		margin-top: 12pt;
		margin-bottom: 6pt;
	}

	p {
		margin: 0 0 8pt;
	}

	/* ==========================================================================
	   Links
	   ========================================================================== */

	a,
	a:visited {
		text-decoration: underline;
		color: #000 !important;
	}

	/* Show URL after external links */
	a[href^="http"]:after,
	a[href^="https"]:after {
		content: " (" attr(href) ")";
		font-size: 9pt;
		font-style: italic;
		word-wrap: break-word;
	}

	/* Don't show URL for internal/anchor links */
	a[href^="#"]:after,
	a[href^="javascript"]:after,
	a[href^="tel"]:after,
	a[href^="mailto"]:after {
		content: "";
	}

	/* Phone numbers - make prominent */
	a[href^="tel"] {
		font-weight: bold;
	}

	a[href^="tel"]:after {
		content: " (Call: " attr(href) ")";
		font-weight: normal;
	}

	/* ==========================================================================
	   Images
	   ========================================================================== */

	img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}

	/* Hide decorative images */
	img[alt=""],
	img:not([alt]),
	.wp-block-cover img,
	.hero-image,
	.decorative-image {
		display: none !important;
	}

	/* Show important images like logo */
	.site-logo img,
	.custom-logo,
	img[alt*="Ahan"],
	img[alt*="logo"] {
		display: block !important;
		max-width: 150pt !important;
		margin: 0 auto 12pt;
	}

	/* ==========================================================================
	   Layout Elements
	   ========================================================================== */

	/* Hide navigation, footer nav, sidebars */
	header nav,
	.site-navigation,
	.mobile-menu,
	.hamburger,
	footer nav,
	aside,
	.sidebar,
	.social-links,
	.social-icons {
		display: none !important;
	}

	/* Hide interactive elements */
	button,
	input,
	select,
	textarea,
	form,
	.btn,
	.button,
	.wp-block-button,
	.cta-button,
	video,
	audio,
	iframe,
	embed,
	object,
	canvas {
		display: none !important;
	}

	/* Hide UI chrome */
	.skip-link,
	.screen-reader-text,
	.back-to-top,
	.scroll-indicator,
	.cookie-notice,
	.popup,
	.modal,
	.toast,
	#wpadminbar {
		display: none !important;
	}

	/* ==========================================================================
	   Menu Items - Restaurant Specific
	   ========================================================================== */

	/* Menu item styling */
	.menu-item,
	.wp-block-group.menu-item,
	[class*="menu-item"] {
		page-break-inside: avoid;
		margin-bottom: 8pt;
		padding: 4pt 0;
		border-bottom: 0.5pt dotted #ccc;
	}

	/* Menu item names */
	.menu-item-name,
	.menu-item h3,
	.menu-item h4 {
		display: inline;
		font-weight: bold;
		font-size: 11pt;
	}

	/* Menu item prices */
	.menu-item-price,
	.price {
		float: right;
		font-weight: bold;
	}

	/* Menu item descriptions */
	.menu-item-description,
	.menu-item p {
		font-size: 10pt;
		font-style: italic;
		margin: 2pt 0;
		clear: both;
	}

	/* Dietary indicators */
	.dietary-indicator,
	.vegan,
	.vegetarian,
	.gluten-free,
	.spicy {
		font-size: 9pt;
		text-transform: uppercase;
		letter-spacing: 0.5pt;
	}

	/* Menu sections */
	.menu-section,
	.wp-block-group[class*="menu-section"] {
		page-break-before: auto;
		page-break-after: auto;
		margin-bottom: 18pt;
	}

	/* Keep menu category headers with content */
	.menu-category,
	.menu-section h2 {
		page-break-after: avoid;
	}

	/* ==========================================================================
	   Contact Information
	   ========================================================================== */

	/* Make contact info prominent */
	.contact-info,
	address,
	.address,
	.location {
		font-style: normal;
		border: 1pt solid #333;
		padding: 8pt;
		margin: 12pt 0;
		page-break-inside: avoid;
	}

	/* Hours of operation */
	.hours,
	.business-hours,
	.opening-hours {
		border: 1pt solid #333;
		padding: 8pt;
		margin: 12pt 0;
		page-break-inside: avoid;
	}

	.hours table,
	.business-hours table {
		width: 100%;
		border-collapse: collapse;
	}

	.hours td,
	.business-hours td {
		padding: 2pt 4pt;
	}

	/* ==========================================================================
	   Tables
	   ========================================================================== */

	table {
		border-collapse: collapse;
		width: 100%;
	}

	th,
	td {
		border: 0.5pt solid #333;
		padding: 4pt 6pt;
		text-align: left;
	}

	th {
		background: #eee !important;
		font-weight: bold;
	}

	thead {
		display: table-header-group;
	}

	tr {
		page-break-inside: avoid;
	}

	/* ==========================================================================
	   Page Breaks
	   ========================================================================== */

	/* Force page breaks before major sections */
	.page-break-before,
	.menu-page,
	article + article {
		page-break-before: always;
	}

	/* Prevent breaks after headers */
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	blockquote,
	pre,
	figure,
	table {
		page-break-after: avoid;
	}

	/* Prevent breaks inside these elements */
	blockquote,
	pre,
	figure,
	table,
	ul,
	ol {
		page-break-inside: avoid;
	}

	/* ==========================================================================
	   Blockquotes & Testimonials
	   ========================================================================== */

	blockquote {
		border-left: 2pt solid #333;
		padding-left: 8pt;
		margin: 8pt 0;
		font-style: italic;
	}

	blockquote cite,
	blockquote footer {
		display: block;
		font-size: 10pt;
		margin-top: 4pt;
		font-style: normal;
	}

	/* ==========================================================================
	   Footer
	   ========================================================================== */

	.site-footer,
	footer {
		margin-top: 24pt;
		padding-top: 12pt;
		border-top: 1pt solid #333;
		font-size: 10pt;
	}

	/* Show restaurant essentials in footer */
	.footer-contact,
	.footer-address,
	.footer-hours {
		display: block !important;
	}

	/* ==========================================================================
	   Ahan-Specific Print Additions
	   ========================================================================== */

	/* Add restaurant name/logo at top if not present */
	body::before {
		content: "Ahan - Asian-Inspired Cuisine";
		display: block;
		text-align: center;
		font-size: 28pt;
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-weight: bold;
		margin-bottom: 6pt;
		letter-spacing: 2pt;
	}

	/* Add contact info at bottom */
	body::after {
		content: "744 Williamson St, Madison, WI 53703 | (608) 620-5703 | ahanmadison.com";
		display: block;
		text-align: center;
		font-size: 10pt;
		margin-top: 24pt;
		padding-top: 12pt;
		border-top: 1pt solid #333;
	}

	/* Chef attribution */
	.chef-info,
	.attribution {
		font-size: 10pt;
		text-align: center;
		margin-top: 12pt;
	}

	/* Awards/accolades - show but simplified */
	.awards,
	.accolades,
	.james-beard {
		text-align: center;
		font-size: 10pt;
		font-style: italic;
		margin: 8pt 0;
	}

	/* Hide video placeholders, maps */
	.wp-block-embed,
	.google-map,
	.map-container,
	[class*="map"] {
		display: none !important;
	}

	/* Show address instead of map */
	.map-container::after,
	.google-map::after {
		content: "Visit us at: 744 Williamson St, Madison, WI 53703";
		display: block;
	}
}

/* ==========================================================================
   High-Quality Print (300dpi+)
   ========================================================================== */

@media print and (min-resolution: 300dpi) {
	body {
		font-size: 11pt;
	}

	img {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
}
