/* ==========================================================================
   Layout - Schildersbedrijf J. Bastiaansen
   Container, Grid, Page sections met veel witruimte
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--container, 1200px);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.page {
	background: var(--bg);
}

/* Section spacing - veel witruimte voor premium gevoel */
.page-section,
.site-section {
	padding: 4rem 0;
}

.page-section--soft,
.site-section--soft {
	background: var(--bg-soft);
}

.page-section--dark {
	background: var(--bg-dark);
	color: #ffffff;
}

.page-section--dark h2,
.page-section--dark h3 {
	color: #ffffff;
}

.page-section--dark p {
	color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
	.page-section,
	.site-section {
		padding: 6rem 0;
	}
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 28px;
	font-size: 14px;
	color: var(--text-soft);
}

.breadcrumb a { color: var(--link); font-weight: 500; }

.breadcrumb .hex-icon {
	color: var(--accent);
	width: 20px;
	height: 20px;
}

/* ---------- Data list (key-value pairs) ---------- */
.data-list { display: grid; }

.data-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	padding: 11px 0;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
}

.data-row span:first-child { color: var(--text-muted); }
.data-row span:last-child { color: var(--text); font-weight: 600; text-align: right; }

/* ---------- Options list (check items) ---------- */
.options-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--text-soft);
	font-size: 14px;
}

.options-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.options-list .hex-icon {
	color: var(--accent);
	width: 18px;
	height: 18px;
}

/* ---------- Check list ---------- */
.check-list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--text-soft);
	font-size: 14px;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.check-list .hex-icon {
	color: var(--accent);
	width: 20px;
	height: 20px;
}

/* ---------- Multi-column list ---------- */
.multicol {
	columns: 2;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: var(--text-soft);
}

.multicol li { padding: 4px 0; break-inside: avoid; }

/* ---------- Opening hours ---------- */
.opening-hours {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 4px;
	flex: 1;
	min-width: 0;
}

.opening-hours__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	line-height: 1.45;
}

.opening-hours__day {
	flex-shrink: 0;
}

.opening-hours__time {
	text-align: right;
}

.opening-hours__row.is-today {
	font-weight: 600;
	color: var(--text);
}

.opening-hours__row.is-today.is-closed {
	color: #c62828;
	font-weight: 600;
}

[data-theme="dark"] .opening-hours__row.is-today.is-closed {
	color: #ef5350;
}

/* ---------- Label badge ---------- */
.label {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: var(--radius-card);
	background: var(--accent-soft);
	color: var(--accent-dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* ---------- Responsive layout ---------- */
@media (max-width: 1020px) {
	.options-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.container { width: min(100% - 28px, var(--container)); }
	.options-list { grid-template-columns: 1fr; }
}
