/*
Theme Name: Printshop / FlowTrack
Theme URI: https://whyble.space
Author: BitBeam
Description: Industry-agnostic theme for real estate, print and professional services.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: bb-printshop-flowtrack
*/

:root {
	--primary: #2563eb;
	--secondary: #10b981;
	--dark: #111827;
	--light: #f3f4f6;
	--radius: 0.5rem;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	color: var(--dark);
	line-height: 1.6;
	background: #fff;
}

header.site-header {
	background: var(--dark);
	color: #fff;
	padding: 1rem 2rem;
}

header .site-title a {
	color: #fff;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 700;
}

main.site-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

footer.site-footer {
	background: var(--light);
	padding: 2rem;
	text-align: center;
	color: #6b7280;
}

.property-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.property-card {
	border: 1px solid #e5e7eb;
	border-radius: var(--radius);
	overflow: hidden;
}

.property-card img { width: 100%; height: auto; display: block; }

.property-card h2 { margin: 0.75rem 1rem 0; font-size: 1.125rem; }

.property-card .price { color: var(--secondary); font-weight: 700; margin: 0.25rem 1rem; }

.property-card .meta { color: #6b7280; margin: 0 1rem 1rem; }

.property-detail .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }

.property-detail .gallery img { width: 100%; height: auto; border-radius: var(--radius); }
