/**
 * Haven Theme - Print Styles
 *
 * Optimized styles for printing pages.
 * Removes unnecessary elements and formats content for print.
 *
 * @package Haven_Theme
 * @since 1.0.0
 */

/* ==========================================================================
   Print Media Styles
   ========================================================================== */

@media print {
	/* Hide non-essential elements */
	.site-header,
	.site-navigation,
	.site-footer,
	.sidebar,
	.widget-area,
	.comments-area,
	.booking-widget,
	.property-actions,
	.social-share,
	button,
	.btn,
	input[type="submit"] {
		display: none !important;
	}

	/* Reset layout for print */
	body {
		background: white;
		color: black;
		font-size: 12pt;
		line-height: 1.5;
	}

	.site-content {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 0;
	}

	/* Page breaks */
	h1, h2, h3, h4, h5, h6 {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

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

	/* Show URLs for links */
	a[href]:after {
		content: " (" attr(href) ")";
		font-size: 10pt;
		color: #666;
	}

	/* Hide URL for internal links and images */
	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}

	/* Property Details */
	.property-details,
	.property-description,
	.property-amenities {
		page-break-inside: avoid;
	}
}
