/* ===== Produktions-Video-Galerie ===== */

.production-gallery-section {
	background: #080c14;
	padding: 72px 20px 80px;
	border-top: 1px solid rgba(213, 74, 210, 0.12);
	border-bottom: 1px solid rgba(213, 74, 210, 0.12);
}

.production-gallery-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.production-gallery-header {
	text-align: center;
	margin-bottom: 48px;
}

.production-gallery-heading {
	font-family: "Syne", sans-serif;
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	font-weight: 700;
	color: #FCFBFB;
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}

.production-gallery-subline {
	font-size: 1rem;
	color: rgba(252, 251, 251, 0.55);
	margin: 0;
}

/* ── Swiper-Wrapper ── */
.production-swiper-wrapper {
	position: relative;
}

#production-swiper {
	overflow: hidden;
	padding-bottom: 48px; /* Platz für Pagination */
}

/* ── Einzelne Slide-Button ── */
.prod-slide-btn {
	display: block;
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	outline: none;
}

.prod-slide-btn:focus-visible {
	box-shadow: 0 0 0 3px rgba(232, 103, 234, 0.7);
}

.prod-slide-btn[disabled] {
	cursor: default;
	opacity: 0.45;
}

.prod-slide-btn[disabled] .prod-play-overlay {
	display: none;
}

/* ── Thumbnail ── */
.prod-thumb {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid rgba(213, 74, 210, 0.18);
	transition: transform 0.35s ease, border-color 0.25s ease;
}

.prod-slide-btn:not([disabled]):hover .prod-thumb,
.prod-slide-btn:not([disabled]):focus-visible .prod-thumb {
	transform: scale(1.04);
	border-color: rgba(232, 103, 234, 0.55);
}

/* ── Play-Overlay ── */
.prod-play-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(6, 10, 16, 0.35);
	transition: background 0.25s ease;
	border-radius: 8px;
}

.prod-play-overlay svg {
	filter: drop-shadow(0 0 10px rgba(232, 103, 234, 0.55));
	transition: transform 0.25s ease, filter 0.25s ease;
}

.prod-slide-btn:not([disabled]):hover .prod-play-overlay,
.prod-slide-btn:not([disabled]):focus-visible .prod-play-overlay {
	background: rgba(6, 10, 16, 0.5);
}

.prod-slide-btn:not([disabled]):hover .prod-play-overlay svg,
.prod-slide-btn:not([disabled]):focus-visible .prod-play-overlay svg {
	transform: scale(1.12);
	filter: drop-shadow(0 0 16px rgba(232, 103, 234, 0.85));
}

/* ── Titel-Overlay ── */
.prod-title-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 28px 12px 10px;
	background: linear-gradient(to top, rgba(6, 10, 16, 0.85) 0%, transparent 100%);
	font-family: "Syne", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(252, 251, 251, 0.85);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-radius: 0 0 8px 8px;
	pointer-events: none;
}

/* ── Navigation-Arrows ── */
.prod-btn-prev,
.prod-btn-next {
	color: #FCFBFB;
}

.prod-btn-prev::after,
.prod-btn-next::after {
	font-size: 1.1rem;
}

.prod-btn-prev,
.prod-btn-next {
	width: 40px;
	height: 40px;
	background: rgba(6, 10, 16, 0.7);
	border: 1px solid rgba(213, 74, 210, 0.4);
	border-radius: 50%;
	top: calc(50% - 24px);
	transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.prod-btn-prev:hover,
.prod-btn-next:hover {
	background: rgba(213, 74, 210, 0.2);
	border-color: #E867EA;
	box-shadow: 0 0 12px rgba(232, 103, 234, 0.4);
}

/* ── Pagination ── */
#production-swiper .swiper-pagination {
	bottom: 0;
}

#production-swiper .swiper-pagination-bullet {
	background: rgba(252, 251, 251, 0.3);
	opacity: 1;
	transition: background 0.2s, transform 0.2s;
}

#production-swiper .swiper-pagination-bullet-active {
	background: #E867EA;
	transform: scale(1.2);
	box-shadow: 0 0 8px rgba(232, 103, 234, 0.7);
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.production-gallery-section {
		padding: 48px 16px 56px;
	}

	.production-gallery-header {
		margin-bottom: 32px;
	}

	.prod-btn-prev,
	.prod-btn-next {
		display: none;
	}
}

/* ── SEO-Text (sichtbar für Suchmaschinen, unsichtbar für Nutzer) ── */
.prod-seo-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ===== Produktions-Teaser (Startseite) ===== */

.prod-teaser-section {
	background: #080c14;
	border-top: 1px solid rgba(213, 74, 210, 0.12);
	border-bottom: 1px solid rgba(213, 74, 210, 0.12);
	padding: 72px 20px 80px;
}

.prod-teaser-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 56px;
}

/* ── Linke Spalte: Text ── */
.prod-teaser-copy {
	flex: 1 1 0;
	min-width: 0;
}

.prod-teaser-label {
	font-family: "Syne", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #00cea8;
	margin: 0 0 0.5rem;
}

.prod-teaser-heading {
	font-family: "Syne", sans-serif;
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	color: #FCFBFB;
	margin: 0 0 1rem;
	letter-spacing: -0.01em;
	line-height: 1.15;
}

.prod-teaser-text {
	font-size: 1rem;
	color: rgba(252, 251, 251, 0.65);
	line-height: 1.75;
	margin: 0 0 2rem;
	max-width: 480px;
}

/* ── Rechte Spalte: Bild ── */
.prod-teaser-visual {
	flex: 0 0 480px;
	max-width: 480px;
}

.prod-teaser-frame {
	display: block;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(213, 74, 210, 0.25);
	text-decoration: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.prod-teaser-frame:hover {
	border-color: rgba(232, 103, 234, 0.6);
	box-shadow: 0 0 28px rgba(232, 103, 234, 0.22);
}

.prod-teaser-thumb {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.prod-teaser-frame:hover .prod-teaser-thumb {
	transform: scale(1.04);
}

.prod-teaser-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(6, 10, 16, 0.35);
	color: #E867EA;
	transition: background 0.25s ease;
}

.prod-teaser-frame:hover .prod-teaser-play {
	background: rgba(6, 10, 16, 0.5);
}

.prod-teaser-play svg {
	filter: drop-shadow(0 0 10px rgba(232, 103, 234, 0.6));
	transition: transform 0.25s ease;
}

.prod-teaser-frame:hover .prod-teaser-play svg {
	transform: scale(1.12);
}

.prod-teaser-count {
	position: absolute;
	bottom: 10px;
	right: 12px;
	font-family: "Syne", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(252, 251, 251, 0.85);
	background: rgba(6, 10, 16, 0.7);
	padding: 2px 8px;
	border-radius: 4px;
	letter-spacing: 0.06em;
}

/* ── Responsive Teaser ── */
@media (max-width: 1024px) {
	.prod-teaser-visual {
		flex: 0 0 380px;
		max-width: 380px;
	}
}

@media (max-width: 767px) {
	.prod-teaser-section {
		padding: 56px 16px 64px;
	}

	.prod-teaser-inner {
		flex-direction: column;
		gap: 36px;
	}

	.prod-teaser-visual {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
	}

	.prod-teaser-text {
		max-width: 100%;
	}
}
