/* Piranha Speisekarte – Frontend */

.piranha-speisekarte {
	max-width: 1100px;
	margin: 0 auto;
	font-family: inherit;
}

/* ---- Übersicht: Banner-Liste ---- */
.piranha-tile-grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.piranha-tile {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 140px;
	padding: 2rem 1.5rem;
	background-color: #1a1a1a;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.piranha-tile:hover,
.piranha-tile:focus {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	color: #fff;
	text-decoration: none;
}

.piranha-tile-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}

.piranha-tile-label {
	position: relative;
	z-index: 1;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
	.piranha-tile {
		min-height: 110px;
	}
	.piranha-tile-label {
		font-size: 1.4rem;
	}
}

/* ---- Detailseite: Hero ---- */
.piranha-hero {
	position: relative;
	min-height: 260px;
	background-color: #1a1a1a;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.piranha-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%);
}

.piranha-hero-inner {
	position: relative;
	z-index: 1;
	padding: 1.5rem 1.5rem 2rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 260px;
}

.piranha-back {
	color: #fff;
	text-decoration: none;
	font-size: 0.95rem;
	opacity: 0.9;
	align-self: flex-start;
}

.piranha-back:hover {
	opacity: 1;
	text-decoration: underline;
	color: #fff;
}

.piranha-hero-title {
	margin: 0;
	font-size: 2.2rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ---- Intro / Tags ---- */
.piranha-intro {
	font-size: 1rem;
	color: #555;
	margin: 0 0 1rem;
}

.piranha-tags {
	color: #888;
	font-size: 0.95rem;
	margin: 0 0 1.5rem;
	letter-spacing: 0.01em;
}

/* ---- Sektionen / Sub-Sektionen ---- */
.piranha-section {
	margin-top: 2rem;
}

.piranha-section:first-of-type {
	margin-top: 1rem;
}

.piranha-section-title {
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
	padding-bottom: 0.4rem;
	border-bottom: 1px solid #e0e0e0;
}

.piranha-subsection-title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 1rem 0 0.4rem;
}

.piranha-section-intro {
	color: #777;
	font-size: 0.92rem;
	margin: -0.25rem 0 0.75rem;
	line-height: 1.45;
}

.piranha-subsections--two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
}

@media (max-width: 700px) {
	.piranha-subsections--two-col {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* ---- Outro / Hinweis-Block ---- */
.piranha-outro {
	margin: 2.5rem 0 1rem;
	padding: 1.25rem 1.5rem;
	background: #f7f7f7;
	border-radius: 8px;
	text-align: center;
	color: #333;
	font-weight: 600;
}

.piranha-outro p {
	margin: 0;
}

/* ---- Items ---- */

.piranha-items {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.piranha-item {
	padding: 0.85rem 0;
	border-bottom: 1px solid #eee;
}

.piranha-item:last-child {
	border-bottom: 0;
}

.piranha-item-row {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.piranha-item-name {
	font-weight: 600;
	flex: 0 1 auto;
}

.piranha-item-unit {
	font-weight: 400;
	font-size: 0.9em;
	color: #777;
	margin-left: 0.35rem;
}

.piranha-marker {
	font-size: 0.7em;
	font-weight: 500;
	color: #888;
	margin-left: 0.25rem;
	vertical-align: super;
}

.piranha-leader {
	flex: 1 1 auto;
	border-bottom: 1px dotted #bbb;
	transform: translateY(-4px);
	min-width: 1rem;
}

.piranha-item-price {
	font-weight: 600;
	flex: 0 0 auto;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.piranha-item-desc {
	margin: 0.35rem 0 0;
	color: #666;
	font-size: 0.95rem;
}

.piranha-item-desc p {
	margin: 0.25rem 0;
}

.piranha-empty {
	padding: 1rem;
	color: #777;
	font-style: italic;
}

/* ---- Legende ---- */
.piranha-legende {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
	padding: 1.25rem 1.5rem;
	background: #f7f7f7;
	border-radius: 8px;
	font-size: 0.9rem;
	color: #444;
}

.piranha-legende h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
}

.piranha-legende ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.piranha-legende li {
	padding: 0.15rem 0;
}

@media (max-width: 600px) {
	.piranha-hero-title {
		font-size: 1.6rem;
	}
	.piranha-tile {
		min-height: 160px;
	}
	.piranha-tile-label {
		font-size: 1.3rem;
	}
}
