/* Haen Menukaarten — frontend-weergave */

.haen-menukaart,
.haen-uitgelicht {
	/* Oranje uit het logo van In den dorstigen Haen */
	--haen-accent: #ea9d52;
}

.haen-menukaart {
	max-width: 720px;
	margin: 0 auto;
}

/* Taalkeuze */
.haen-taalkeuze {
	display: flex;
	justify-content: center;
	gap: 0.5em;
	margin-bottom: 2em;
	flex-wrap: wrap;
}

.haen-taalkeuze .haen-taal {
	padding: 0.35em 1.1em;
	border: 1px solid currentColor;
	border-radius: 2em;
	text-decoration: none;
	font-size: 0.9em;
	line-height: 1.4;
}

.haen-taalkeuze .haen-taal-actief {
	background: #222;
	border-color: #222;
	color: #fff;
	pointer-events: none;
}

/* Secties */
.haen-sectie {
	margin-bottom: 2.5em;
}

.haen-sectie-titel {
	text-align: center;
	margin: 0 0 0.2em;
	padding-bottom: 0.3em;
	border-bottom: 1px solid var(--haen-accent);
}

.haen-sectie-subtitel {
	text-align: center;
	font-style: italic;
	opacity: 0.75;
	margin: 0.4em 0 1.2em;
}

.haen-sectie-voetnoot {
	text-align: center;
	font-style: italic;
	font-size: 0.85em;
	opacity: 0.75;
	margin-top: 1.2em;
}

/* Items: één kolom op mobiel, twee kolommen vanaf tablet/desktop */
.haen-items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.1em 2.5em;
}

@media (min-width: 768px) {
	.haen-items {
		grid-template-columns: 1fr 1fr;
	}
}

.haen-item {
	text-align: center;
}

.haen-item-naam {
	font-size: 1.05em;
	margin: 0 0 0.15em;
}

.haen-item-beschrijving {
	margin: 0;
	font-size: 0.92em;
	opacity: 0.8;
}

.haen-veg {
	font-size: 0.85em;
	cursor: help;
}

@media (max-width: 600px) {
	.haen-menukaart {
		padding: 0 0.5em;
	}
}

/* Uitgelichte items: onder elkaar op mobiel, kolommen naast elkaar op desktop */
.haen-uitgelicht {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5em;
}

@media (min-width: 981px) {
	.haen-uitgelicht {
		grid-template-columns: repeat(var(--haen-uitgelicht-kolommen, 5), 1fr);
	}
}

.haen-uitgelicht .haen-item {
	padding: 1.2em 1em;
	border: 1px solid var(--haen-accent);
	border-radius: 8px;
}

.haen-uitgelicht .haen-item-naam,
.haen-uitgelicht .haen-item-beschrijving {
	color: #fff;
}

.haen-uitgelicht .haen-item-beschrijving {
	opacity: 0.9;
}
