*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
	--gold: #c8943e;
	--gold-light: #f49e02;
	--gold-glow: rgba(226, 180, 74, 0.4);
	--cream: #fff8ee;
	--text-dark: #3a2210;
}

html { scroll-behavior: smooth; }

body {
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a.disabled {
    pointer-events: none;
}

/* ── Background ── */
.page-bg {
	position: fixed;
	inset: 0;
	z-index: -1;

	background-image: url('img/bg.png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;

	/* Important for iOS */
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}
/*
.page-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	background:
	url('img/bg.jpeg') center/cover no-repeat fixed;
}
*/

.page-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.45) 0%,
		rgba(0,0,0,0.5) 50%,
		rgba(0,0,0,0.65) 100%
	);
}

@media (max-width: 600px) {
	.page-bg {
		background-image: url('img/bg_mobile.png');
	}
}

/* ── Layout ── */
.wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 1.5rem;
}

#main-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ── Title ── */
.title {
	margin-top: clamp(3rem, 10vh, 7rem);
	width: 100%;
	max-width: 720px;
	text-align: center;
}

.title h1 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(2.4rem, 7vw, 4.5rem);
	color: #fff;
	text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0,0,0,0.5);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.1;
	display: flex;
	justify-content: center;
	width: 100%;
}

/* ── Trailer ── */
.trailer {
	margin-top: clamp(2rem, 5vh, 4rem);
	width: 100%;
	max-width: 720px;
	margin-inline: auto;
}

.video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow:
		0 8px 40px rgba(80, 40, 0, 0.35),
		0 0 0 1px rgba(255,255,255,0.15);
}

.video-wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
}

/* Custom poster taps through to deferred YouTube iframe (home trailer) */
.video-poster-btn {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	border: 0;
	cursor: pointer;
	background: #000;
	font: inherit;
	color: inherit;
	border-radius: 0;
	box-shadow: none;
}

.video-poster-btn img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.video-poster-btn:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.95);
	outline-offset: -4px;
}

.video-poster-btn::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: clamp(4rem, 12vw, 4.75rem);
	height: clamp(4rem, 12vw, 4.75rem);
	z-index: 1;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	box-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
	pointer-events: none;
}

.video-poster-btn::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	transform: translate(calc(-50% + clamp(6px, 1.8vw, 8px)), -50%);
	z-index: 2;
	border-style: solid;
	border-width: clamp(12px, 3.5vw, 16px) 0 clamp(12px, 3.5vw, 16px)
		clamp(20px, 5vw, 28px);
	border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
	pointer-events: none;
}

.trailer-video-wrapper.is-playing .video-poster-btn,
.video-poster-btn[hidden] {
	display: none !important;
}

.trailer-video-wrapper.is-playing iframe {
	z-index: 2;
}

/* ── Kino Line ── */
.kino-line {
	margin-top: clamp(2rem, 4vh, 3.5rem);
	width: 100%;
	max-width: 720px;
	text-align: center;
	margin-inline: auto;
}

.kino-line h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: clamp(1.4rem, 4vw, 2.2rem);
	color: #fff;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0,0,0,0.5);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	width: 100%;
}

.title img,
.kino-line img {
	width: 80%;
	max-width: 80%;
	height: auto;
	display: block;
}

/* ── Shared Button ── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.6rem 1.8rem;
	background: linear-gradient(to bottom right, var(--gold-light), var(--gold));
	border: none;
	border-radius: 50px;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	cursor: pointer;
	text-decoration: none;
	text-shadow: 0 1px 3px rgba(100, 50, 0, 0.4);
	box-shadow: 0 3px 12px rgba(180, 120, 30, 0.35);
	transition: all 0.25s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(180, 120, 30, 0.5);
	background: linear-gradient(135deg, #ecc45a, #d4a040);
}

.btn-sm {
	padding: 0.4rem 1.2rem;
	font-size: 0.8rem;
}

/* ── Nav Buttons ── */
.nav-buttons {
	margin-top: clamp(1.5rem, 3vh, 2.5rem);
	width: 100%;
	max-width: 720px;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	gap: 0.9rem;
	flex-wrap: wrap;
}

/* ── About Section ── */
.about {
	margin-top: clamp(3rem, 6vh, 5rem);
	width: 100%;
	max-width: 640px;
	margin-inline: auto;
	text-align: center;
}

.about p {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.85;
	color: rgba(255,255,255,0.92);
	text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ── Dates ── */
.dates {
	margin-top: clamp(2.5rem, 5vh, 4rem);
	width: 100%;
	max-width: 640px;
	margin-inline: auto;
}

.dates h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #fff;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.dates-list {
	list-style: none;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 12px;
	padding: 0.5rem 1.5rem;
}
.dates-list li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 1rem;
	row-gap: 0;
	align-items: start;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dates-list li:last-child { border-bottom: none; }

.date-day {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	color: #fff;
	min-width: 5rem;
	white-space: nowrap;
	align-self: start;
	text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.date-venue-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	min-width: 0;
}

.date-venue {
	font-weight: 300;
	font-size: 0.95rem;
	color: rgba(255,255,255,0.8);
	align-self: stretch;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.date-link {
	flex-shrink: 0;
	align-self: flex-start;
}
/* ── Subpages ── */
.subpage {
	display: none;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem 0 4rem;
}

.subpage.active { display: block; }

.subpage-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.subpage-header h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 2rem;
	color: #fff;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(80, 40, 0, 0.4);
}


/* ── Carousel ── */
.carousel {
	position: relative;
	width: 100%;
}

.carousel-main {
	position: relative;
	width: 100%;
	aspect-ratio: 3/2;
	border-radius: 10px;
	overflow: hidden;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	background: rgba(0,0,0,0.25);
	box-shadow: 0 8px 40px rgba(80, 40, 0, 0.3);
}

.carousel-main img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.carousel-main img.active {
	opacity: 1;
}

.carousel-main .placeholder-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.4);
	font-size: 1rem;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.carousel-main .placeholder-slide.active {
	opacity: 1;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(0,0,0,0.35);
	color: #fff;
	font-size: 1.3rem;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-arrow:hover {
	background: rgba(0,0,0,0.55);
}

.carousel-arrow.prev { left: 0.75rem; }
.carousel-arrow.next { right: 0.75rem; }

.carousel-counter {
	position: absolute;
	bottom: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	padding: 0.25rem 0.7rem;
	border-radius: 50px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(0,0,0,0.4);
	color: rgba(255,255,255,0.8);
	font-size: 0.75rem;
	font-weight: 500;
}

.carousel-thumbs {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.75rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.carousel-thumbs::-webkit-scrollbar {
	height: 4px;
}

.carousel-thumbs::-webkit-scrollbar-track {
	background: transparent;
}

.carousel-thumbs::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.2);
	border-radius: 2px;
}

.carousel-thumb {
	flex-shrink: 0;
	width: 90px;
	height: 60px;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	opacity: 0.5;
	transition: all 0.25s ease;
}

.carousel-thumb:hover {
	opacity: 0.8;
}

.carousel-thumb.active {
	opacity: 1;
	border-color: var(--gold-light);
}

.carousel-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-thumb .thumb-placeholder {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.4);
	font-size: 0.6rem;
}

.clips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
	gap: 1.5rem;
}

.clips-grid .video-wrapper {
	box-shadow: 0 4px 20px rgba(80, 40, 0, 0.25);
}

.presse-content {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 12px;
	padding: 2rem;
}

.presse-content p {
	color: rgba(255,255,255,0.85);
	font-weight: 300;
	margin-bottom: 1rem;
	line-height: 1.8;
}

.presse-content a {
	color: var(--gold-light);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.presse-content a:hover { color: #fff; }

.presse-content a.btn {
	color: #fff;
	text-decoration: none;
}

.download-btn {
	margin-top: 1rem;
}

.presskit-download-wrap {
	margin-top: 1rem;
}/* Story section */
.story-content {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 12px;
	padding: 2rem;
}

.story-content p {
	color: rgba(255,255,255,0.88);
	font-weight: 300;
	line-height: 1.9;
	margin-bottom: 1.2rem;
}

.story-content p:last-child { margin-bottom: 0; }

/* ── Legal pages (Impressum, Datenschutz) ── */
.legal-page {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(1.5rem, 4vw, 2.5rem) 0 4rem;
}

.legal-page-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

.legal-page-header h1 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: clamp(1.75rem, 5vw, 2.25rem);
	color: #fff;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(80, 40, 0, 0.4);
}

.legal-content {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: clamp(1.25rem, 4vw, 2rem);
}

.legal-content h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: #fff;
	margin: 1.75rem 0 0.75rem;
	letter-spacing: 0.04em;
}

.legal-content h2:first-child {
	margin-top: 0;
}

.legal-content h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.95);
	margin: 1.5rem 0 0.6rem;
	letter-spacing: 0.03em;
}

.legal-content h4 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 1.25rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
	color: rgba(255, 255, 255, 0.88);
	font-weight: 300;
	line-height: 1.85;
	margin-bottom: 1rem;
}

.legal-content p:last-child,
.legal-content li:last-child {
	margin-bottom: 0;
}

.legal-content ol,
.legal-content ul {
	margin: 0 0 1rem 1.25rem;
	padding: 0;
}

.legal-content a {
	color: var(--gold-light);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.legal-content a:hover {
	color: #fff;
}

/* ── Footer ── */
footer {
	margin-top: auto;
	width: 100%;
	text-align: center;
	padding: 2rem;
	color: rgba(255,255,255,0.45);
	font-size: 0.75rem;
}

footer a {
	color: rgba(255,255,255,0.45);
	text-decoration: underline;
	text-underline-offset: 2px;
}

footer a:hover { color: rgba(255,255,255,0.8); }

/* ── Responsive ── */
@media (max-width: 600px) {
	.nav-buttons { gap: 0.6rem; }
	.nav-buttons .btn { padding: 0.55rem 1.3rem; font-size: 0.88rem; }

	.dates-list { padding: 0.5rem 1rem; }

	.dates-list li {
		column-gap: 0.75rem;
	}

	.date-day {
		min-width: 4.25rem;
		font-size: 0.98rem;
	}

	.date-venue-stack {
		gap: 0.55rem;
	}

	.clips-grid {
	grid-template-columns: 1fr;
	}

	.subpage-header {
	flex-direction: row;
	align-items: center;
	}
}