/*************** Alle Standardwerte für Margin und Padding zurücksetzen ********************/
*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scrollbar-color: var(--rot);
	scrollbar-width: thin;
	scrollbar-color: var(--rot) var(--grau);
}

/******************** Definition der Farben ********************/
:root {
	--grau: #070505;
	/* Black Mamba */
	--rot: #ff0403;
	--weiss: #dfe2de;
	--schwarz: #111111;
	--orange: #ff8800;
	--schatten_textbox: -2px 0 18px inset var(--rot),
		12px 12px 12px inset var(--schwarz), -12px -12px 12px inset var(--schwarz);
	--schatten_bild: 0 0 18px var(--rot), 0 0 28px var(--rot);
}

/******************** Definition des HTML-TAGS ********************/

html {
	background: var(--schwarz);
	scroll-behavior: smooth;
	font-size: 1rem !important;
}

/******************** Definition des BODY-Bereichs ********************/
body {
	width: 100%;
	min-height: 100vh !important;
	background-color: var(--schwarz) !important;
}

body::-webkit-scrollbar {
	width: 10px;
	/* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
	background: var(--rot);
	/* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
	background-color: var(--schatten_bild);
	/* color of the scroll thumb */
	border-radius: 20px;
	/* roundness of the scroll thumb */
	border: 3px solid var(--rot);
	/* creates padding around scroll thumb */
}

.site {
	height: auto;
	min-height: 100%;
}

section {
	width: 80%;
	height: 80%;
	margin: 0 auto 0 auto;
	position: relative;
	z-index: 0;
	pointer-events: none;
}

a,
a:visited {
	text-decoration: none !important;
	color: var(--weiss) !important;
	cursor: pointer;
}

/******************** Definition des HEADER-Bereichs ********************/
/* Navigation */
#header {
	display: flex;
	position: fixed;
	margin: 0;
	top: 0;
	width: 100%;
	background-color: var(--schwarz);
	box-shadow: 0 0px 50% var(--weiss);
	z-index: 100000000 !important;
	background: url("../img/wave.jpg") no-repeat center;
	background-size: cover;
	box-shadow: 0px 5px 26px 14px var(--schwarz);
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: -1;
	transition: all 0.6s ease-in-out;
}

.overlay.show {
	background-color: rgba(0, 0, 0, 0.8);
	opacity: 1;
	z-index: 99999999;
	transition: all 0.6s ease-in-out;
}

.logo {
	position: absolute;
	display: flex;
	left: calc(50% - 1rem);
	top: 50%;
	transform: translate(calc(-50% - 1rem), -50%);
	max-width: 130px;
	height: auto;
	opacity: 0.7;
	z-index: inherit;
	transition: all 0.5s ease-in-out;
}

.logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.logo.show {
	opacity: 0.2;
	transition: all 0.5s ease-in-out;
}

.menu-container {
	display: flex;
	width: 100%;
	position: relative;
	padding: 2.4rem 1rem;
	min-height: 5.5rem;
	overflow: visible;
	isolation: isolate;
}

.menu-button {
	--menu-btn-size: 3.35rem;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--menu-btn-size);
	height: var(--menu-btn-size);
	padding: 0;
	border: none;
	border-radius: 1rem;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	z-index: 100000002 !important;
	-webkit-tap-highlight-color: transparent;
	transition: transform 0.45s cubic-bezier(0.34, 1.25, 0.64, 1);
}

.menu-button:not(.open):hover {
	transform: translateY(-50%) scale(1.05);
}

.menu-button:focus-visible {
	outline: 2px solid var(--rot);
	outline-offset: 4px;
}

.menu-button.open {
	transform: translateY(-50%) scale(1.03);
}

/* Feuereffekt nur beim Schließen-Button (Menü offen) */
.menu-button__fire {
	display: none;
}

.menu-button.open .menu-button__fire {
	display: block;
	position: absolute;
	inset: -5px;
	border-radius: 1.25rem;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(ellipse 80% 45% at 50% 115%, rgba(255, 110, 0, 0.42) 0%, transparent 70%),
		radial-gradient(ellipse 40% 30% at 25% 108%, rgba(255, 4, 3, 0.28) 0%, transparent 62%),
		radial-gradient(ellipse 40% 30% at 75% 108%, rgba(255, 136, 0, 0.28) 0%, transparent 62%);
	filter: blur(3px);
	animation: menuButtonFire 1.1s ease-in-out infinite alternate;
}

.menu-button.open .menu-button__fire::before,
.menu-button.open .menu-button__fire::after {
	content: "";
	position: absolute;
	bottom: -2px;
	width: 30%;
	height: 40%;
	border-radius: 50% 50% 20% 20%;
	filter: blur(4px);
	opacity: 0.4;
	animation: menuButtonEmber 1.4s ease-in-out infinite alternate;
}

.menu-button.open .menu-button__fire::before {
	left: 12%;
	background: radial-gradient(circle, rgba(255, 160, 0, 0.55) 0%, rgba(255, 4, 3, 0.2) 45%, transparent 72%);
	animation-delay: 0.15s;
}

.menu-button.open .menu-button__fire::after {
	right: 12%;
	background: radial-gradient(circle, rgba(255, 120, 0, 0.5) 0%, rgba(255, 4, 3, 0.18) 45%, transparent 72%);
	animation-delay: 0.45s;
}

@keyframes menuButtonFire {
	0% {
		opacity: 0.35;
		transform: scale(0.97) translateY(2px);
		filter: blur(2px);
	}

	100% {
		opacity: 0.65;
		transform: scale(1.02) translateY(-1px);
		filter: blur(4px);
	}
}

@keyframes menuButtonEmber {
	0% {
		opacity: 0.25;
		transform: scale(0.9) translateY(2px);
	}

	100% {
		opacity: 0.5;
		transform: scale(1.02) translateY(-1px);
	}
}

/* Rahmen nur im Hamburger-Zustand – transparent, kein schwarzer Kasten */
.menu-button__frame {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	z-index: 1;
}

.menu-button:not(.open) .menu-button__frame {
	background: transparent;
	border: 1px solid rgba(255, 95, 85, 0.42);
	box-shadow: inset 1px 1px 0 rgba(255, 130, 120, 0.32);
	opacity: 0.9;
	transition: opacity 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.menu-button:not(.open):hover .menu-button__frame {
	opacity: 1;
	border-color: rgba(255, 4, 3, 0.58);
	box-shadow:
		inset 1px 1px 0 rgba(255, 150, 140, 0.42),
		0 0 14px rgba(255, 4, 3, 0.18);
}

.menu-button.open .menu-button__frame {
	opacity: 1;
	border: 1px solid rgba(255, 4, 3, 0.55);
	background: transparent;
	box-shadow:
		inset 1px 1px 0 rgba(255, 160, 150, 0.25),
		0 0 12px rgba(255, 4, 3, 0.22);
	transition: opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
	animation: menuButtonFireGlow 1.2s ease-in-out infinite alternate;
}

@keyframes menuButtonFireGlow {
	0% {
		box-shadow:
			inset 1px 1px 0 rgba(255, 160, 150, 0.2),
			0 0 8px rgba(255, 4, 3, 0.18);
		border-color: rgba(255, 4, 3, 0.45);
	}

	100% {
		box-shadow:
			inset 1px 1px 0 rgba(255, 180, 150, 0.32),
			0 0 14px rgba(255, 4, 3, 0.28);
		border-color: rgba(255, 80, 0, 0.65);
	}
}

.menu-button.is-pressed:not(.open) {
	transform: translateY(-50%) scale(0.96);
}

.menu-button.is-pressed.open {
	transform: translateY(-50%) scale(0.96);
}

.menu-button__lines {
	position: relative;
	z-index: 2;
	display: block;
	width: 1.55rem;
	height: 1.1rem;
}

.menu-button__line {
	position: absolute;
	left: 0;
	height: 3px;
	border-radius: 3px;
	transform-origin: center;
	transition:
		transform 0.55s cubic-bezier(0.65, -0.25, 0.2, 1.35),
		opacity 0.3s ease,
		width 0.4s ease,
		left 0.4s ease,
		box-shadow 0.4s ease,
		background 0.4s ease;
}

/* Hamburger-Striche – hell, mit Schatten für Kontrast auf rotem Header */
.menu-button:not(.open) .menu-button__line {
	background: #ffffff;
	box-shadow:
		0 0 8px rgba(255, 255, 255, 0.35),
		0 1px 3px rgba(0, 0, 0, 0.85),
		0 0 1px rgba(0, 0, 0, 0.95);
}

.menu-button:not(.open) .menu-button__line:nth-child(1) {
	top: 0;
	width: 100%;
}

.menu-button:not(.open) .menu-button__line:nth-child(2) {
	top: 50%;
	width: 68%;
	left: 16%;
	transform: translateY(-50%);
}

.menu-button:not(.open) .menu-button__line:nth-child(3) {
	bottom: 0;
	width: 100%;
}

.menu-button:not(.open):hover .menu-button__line:nth-child(2) {
	width: 100%;
	left: 0;
}

.menu-button.open .menu-button__line {
	background: #ffffff;
	box-shadow:
		0 0 12px rgba(255, 255, 255, 0.55),
		0 0 16px rgba(255, 4, 3, 0.35),
		0 1px 4px rgba(0, 0, 0, 0.8);
}

.menu-button.open .menu-button__line:nth-child(1) {
	top: 50%;
	width: 100%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
}

.menu-button.open .menu-button__line:nth-child(2) {
	opacity: 0;
	width: 0;
	left: 50%;
	transform: translateY(-50%) scaleX(0);
}

.menu-button.open .menu-button__line:nth-child(3) {
	bottom: auto;
	top: 50%;
	width: 100%;
	left: 0;
	transform: translateY(-50%) rotate(-45deg);
}

/* Legacy-Fallback: alter Header auf dem Live-Server (<div><span class="bar"></span></div>) */
.menu-button .bar {
	display: block;
	position: relative;
	width: 1.55rem;
	height: 3px;
	border-radius: 3px;
	background: #ffffff;
	box-shadow:
		0 0 8px rgba(255, 255, 255, 0.35),
		0 1px 3px rgba(0, 0, 0, 0.85),
		0 0 1px rgba(0, 0, 0, 0.95);
	transition:
		transform 0.55s cubic-bezier(0.65, -0.25, 0.2, 1.35),
		opacity 0.3s ease,
		background 0.4s ease,
		box-shadow 0.4s ease;
}

.menu-button .bar::before,
.menu-button .bar::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	border-radius: 3px;
	background: #ffffff;
	box-shadow:
		0 0 8px rgba(255, 255, 255, 0.35),
		0 1px 3px rgba(0, 0, 0, 0.85),
		0 0 1px rgba(0, 0, 0, 0.95);
	transition:
		transform 0.55s cubic-bezier(0.65, -0.25, 0.2, 1.35),
		opacity 0.3s ease,
		background 0.4s ease,
		box-shadow 0.4s ease;
}

.menu-button:not(.open) .bar::before {
	top: -8px;
}

.menu-button:not(.open) .bar::after {
	bottom: -8px;
}

.menu-button.open .bar {
	background: transparent;
	box-shadow: none;
}

.menu-button.open .bar::before {
	top: 0;
	transform: rotate(45deg);
	box-shadow:
		0 0 12px rgba(255, 255, 255, 0.55),
		0 1px 4px rgba(0, 0, 0, 0.9);
}

.menu-button.open .bar::after {
	bottom: 0;
	transform: rotate(-45deg);
	box-shadow:
		0 0 12px rgba(255, 255, 255, 0.55),
		0 1px 4px rgba(0, 0, 0, 0.9);
}

.menu-button.open .overlay {
	opacity: 1;
}

/* Mega-Menü */
.close-button {
	display: none !important;
}

.mega-menu {
	position: fixed;
	top: 0;
	right: 0;
	max-width: 40rem;
	width: 100%;
	height: 100%;
	background: radial-gradient(#ff030357, var(--schwarz));
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 100000001 !important;
	transform: translate3d(100%, 0, 0);
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.mega-menu.open {
	pointer-events: auto;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(20px);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	visibility: visible;
	z-index: 100000001 !important;
	transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.mega-menu.closing {
	opacity: 0;
	visibility: visible;
	pointer-events: none;
	transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.menu {
	position: absolute;
	width: 100%;
	height: 100dvh;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	text-align: center;
}

.menu-item {
	display: block;
	width: fit-content;
	text-decoration: none;
	color: var(--schwarz);
	text-transform: uppercase;
	transform: translateX(100%);
	opacity: 0;
	position: relative;
	transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.menu-item a.aktiv .menu-link__char {
	color: var(--rot);
}

.mega-menu.open .menu-item {
	transform: translateX(0);
	opacity: 1;
	transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.mega-menu.open .menu-item:nth-child(1) {
	transition-delay: 0.15s;
}

.mega-menu.open .menu-item:nth-child(2) {
	transition-delay: 0.3s;
}

.mega-menu.open .menu-item:nth-child(3) {
	transition-delay: 0.45s;
}

.mega-menu.open .menu-item:nth-child(4) {
	transition-delay: 0.6s;
}

.mega-menu.open .menu-item:nth-child(5) {
	transition-delay: 0.75s;
}

.mega-menu.open .menu-item:nth-child(6) {
	transition-delay: 0.9s;
}

.menu-item a {
	position: relative;
	display: inline-block;
	padding: 0.35rem 0.15rem 0.55rem;
	font-family: "sammiessansserIfSans", sans-serif;
	color: var(--weiss);
	font-size: clamp(1.5rem, 4vw, 1.8rem);
	font-weight: 700;
	letter-spacing: 6px;
	background: transparent;
	border: none;
	box-shadow: none;
	text-decoration: none;
	transition: letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-link__text {
	display: inline-block;
}

.menu-link__char {
	display: inline-block;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.35s ease,
		text-shadow 0.35s ease;
	transition-delay: calc(var(--char-i, 0) * 28ms);
}

.menu-link__underline {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.1rem;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 4, 3, 0.15) 15%,
		var(--rot) 50%,
		rgba(255, 136, 0, 0.85) 50%,
		rgba(255, 4, 3, 0.15) 85%,
		transparent 100%
	);
	transform: scaleX(0);
	opacity: 0;
	transform-origin: center;
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.4s ease;
}

.menu-item a:hover,
.menu-item a:focus-visible {
	letter-spacing: 0.22rem;
}

.menu-item a:hover .menu-link__char,
.menu-item a:focus-visible .menu-link__char {
	color: var(--rot);
	transform: translateY(-3px);
	text-shadow: 0 0 12px rgba(255, 4, 3, 0.35);
}

.menu-item a:hover .menu-link__underline,
.menu-item a:focus-visible .menu-link__underline {
	transform: scaleX(1);
	opacity: 1;
}

.menu li {
	width: fit-content;
	min-width: unset;
	position: relative;
	list-style: none;
}

@media (prefers-reduced-motion: reduce) {
	.menu-link__char {
		transition: color 0.25s ease;
		transition-delay: 0ms;
	}

	.menu-item a:hover .menu-link__char,
	.menu-item a:focus-visible .menu-link__char {
		transform: none;
		text-shadow: none;
	}

	.menu-link__underline {
		display: none;
	}

	.menu-button.open .menu-button__fire,
	.menu-button.open .menu-button__fire::before,
	.menu-button.open .menu-button__fire::after,
	.menu-button.open .menu-button__frame {
		animation: none;
	}
}

.mega-menu.open .nachoben {
	display: none;
}

/* Ende Navigation */

/******************** Definition des MAIN-Bereichs ********************/
main {
	min-height: 220%;
}

.img {
	margin: 0;
	padding: 0;
	display: inline-block;
	width: 70%;
}

/******************** Definition der Bereiche auf der Seite "Band" ********************/
.band-logo-mobil {
	display: none;
}

.img_bandfoto {
	width: 50%;
	position: relative;
	display: flexbox;
	margin: 4rem auto 4rem auto;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(25px) !important;
}

/* Definition des Bandfotos */
.img_bandfoto img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: relative;
	justify-content: center;
}

.img_bandfoto .logo_red_hot {
	position: relative;
	width: 40%;
	margin: 6rem auto -6rem auto;
}

/* Startseite */
.home_main {
	width: 100%;
	min-height: 100dvh;
	position: relative;
	z-index: 1 !important;
}

.home_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	/* Passt die Höhe an den Bildschirm an */
	overflow: hidden;
	z-index: 1 !important;
}

.home_bg .slider {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	opacity: 0.6;
	z-index: inherit;
}

.home_bg .slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.home_bg .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	/* Deckt den gesamten Bereich ab */
	background-position: center center;
	/* Zentriert das Bild */
	background-repeat: no-repeat;
	opacity: 0;
	animation: slideAnimation 35s infinite;
}

.home_bg .slide:nth-child(1) {
	animation-delay: 0s;
}

.home_bg .slide:nth-child(2) {
	animation-delay: 6s;
}

.home_bg .slide:nth-child(3) {
	animation-delay: 12s;
}

.home_bg .slide:nth-child(4) {
	animation-delay: 18s;
}

.home_bg .slide:nth-child(5) {
	animation-delay: 24s;
}

/* Slider Animation */
@keyframes slideAnimation {
	0% {
		opacity: 0;
	}

	15% {
		opacity: 1;
	}

	30% {
		opacity: 1;
	}

	45% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

/* Hero Content */
.hero-content {
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -80%);
	width: 60rem;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.35);
	padding: 2rem;
	z-index: 10;
}

.hero-content h1 {
	font-family: "Captureit", sans-serif !important;
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: 6px;
	margin-bottom: 2rem;
	color: var(--rot);
}

.hero-content p {
	font-family: "PT Sans", sans-serif;
	color: var(--rot);
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
	color: transparent;
	color: var(--weiss);
	font-weight: bold !important;
}

.hero-content p:last-child {
	font-family: "Captureit", sans-serif !important;
	font-size: clamp(2rem, 4vw, 3rem);
	margin-top: 2rem;
	letter-spacing: 10px;
	color: var(--rot);
	-webkit-text-stroke: 1px var(--weiss);
}

.hero-content .btn {
	display: flex;
	width: fit-content;
	padding: 0.5rem 1rem;
	margin: 0 auto;
	background-color: var(--rot);
	color: var(--weiss);
	font-family: "PT Sans", sans-serif;
	font-size: clamp(1rem, 2vw, 1.3rem);
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 4px;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: darkred;
}

/* Ende Startseite */

/* Definition der Überschrift der Bandmitglieder */
.absatz_ueberschrift,
.absatz_ueberschrift_member {
	font-family: "PT Sans", sans-serif;
	display: block;
	width: max-content;
	margin: 100px auto;
	font-size: clamp(1.25rem, 4vw, 1.6rem);
	font-weight: bold !important;
	letter-spacing: 2px;
	margin: 0 auto;
	justify-content: center;
	line-height: 1.5;
	color: var(--rot);
	pointer-events: none;
}

.absatz_ueberschrift_member {
	min-width: 310px;
	font-weight: 100;
	height: max-content;
	align-self: center;
	width: max-content;
	justify-content: center;
	pointer-events: visible;
}

.email {
	/*Email-Adresse*/
	display: flex;
	width: 100%;
	display: inline;
	color: var(--weiss);
	cursor: pointer;
	justify-content: center;
	text-align: center;
	font-family: "PT Sans", sans-serif;
	font-size: 1.2rem;
	font-weight: 900;
	letter-spacing: 4px;
	margin-bottom: 40px;
	margin: 0 auto;
	justify-content: center;
	transition: 0.6s;
}

.email:hover {
	color: var(--rot) !important;
	transform: scale(2) !important;
}

.absatz_ueberschrift,
.absatz_ueberschrift_member p {
	font-size: 1.6rem;
	pointer-events: none;
}

.absatz_ueberschrift:hover {
	cursor: default;
}

.members {
	display: flexbox;
	width: 100%;
	height: auto;
	margin: 150px auto 0 auto;
	justify-content: center;
	text-align: center;
}

.main-container {
	width: 100%;
	margin: 0 auto;
	line-height: 1.7;
	position: relative;
	z-index: 4;
	background-color: var(--schwarz);
	margin: 50px auto;
	justify-content: center;
	z-index: 10 !important;
}

.center img {
	z-index: 9999998 !important;
}

.img_schriftzug {
	margin: 0;
	padding: 0;
	pointer-events: none;
}

@keyframes highlight {
	from {
		background: linear-gradient(to right, var(--rot), var(--weiss));
		background-clip: text;
		-webkit-background-clip: text;
		color: transparent;
		background-size: 400% 400%;
	}

	to {
		background: linear-gradient(to right, var(--weiss), var(--rot));
		background-clip: text;
		-webkit-background-clip: text;
		color: transparent;
		background-size: 400% 400%;
	}
}

.letsrock {
	position: absolute;
	display: block;
	font-weight: 100;
	font-family: "Captureit", sans-serif;
	font-style: lighter;
	font-weight: 100;
	inset: 0;
	font-size: clamp(2rem, 50vw, 4.5rem);
	color: var(--rot) !important;
	letter-spacing: 20px;
	width: 100%;
	margin: 0 auto 6rem auto;
	margin-right: 2rem;
	top: 11rem;
	float: right;
	justify-content: end;
	text-align: end;
	pointer-events: none;
	color: transparent;
	background: url("../img/banner_web.png");
	-webkit-background-clip: text;
	background-clip: text;
	background-size: contain;
	background-position: center top;
	-webkit-text-fill-color: var(--rot);
	opacity: 0.5 !important;
	-webkit-text-stroke: 1px var(--weiss);
	z-index: 99999 !important;
}

.letsrock p {
	background-color: transparent;
}

.letsrock p:nth-child(1) {
	position: absolute;
	right: 0;
	top: 0;
	background-color: transparentg;
	clip-path: inset(-1% -1% 50% -1%);
	-webkit-text-fill-color: var(--grau) !important;
	-webkit-text-stroke: 2px var(--rot) !important;
}

.letsrock:hover {
	cursor: default;
}

.texthervorheben {
	font-family: "Captureit", sans-serif;
	font-size: clamp(1rem, 3vw, 1.5rem);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: bold !important;
	color: var(--rot);
	justify-content: center;
}

/* Datenschutz / Impressum */
.anschrift {
	font-family: inherit;
	font-style: normal;
	text-align: left;
	margin-left: 1.3rem;
	pointer-events: none;
}

.haftung {
	display: block;
	font-family: "Excess", sans-serif;
	width: 80%;
	margin: 0 auto 6rem auto;
	font-size: 1rem;
	justify-content: center;
	color: var(--weiss);
	line-height: 1.2;
	pointer-events: none;
}

.haftung .anschrift {
	display: flex;
	flex-direction: column;
	position: relative;
	font-size: clamp(1.2rem, 5vw, 1.4rem);
	pointer-events: none;
}

.haftung h2,
.haftung h1 {
	display: block;
	text-align: left;
	font-family: "PT Sans";
	text-align: left;
	width: 100%;
	pointer-events: none;
	color: var(--weiss);
	margin: 2rem 0;
}

.haftung h1 {
	font-size: clamp(1.4rem, 3vw, 3rem);
}

.haftung h2 {
	font-size: clamp(1.2rem, 5vw, 2.5rem);
}

.haftung .anschrift h3 {
	position: relative;
	line-height: 1.5;
	font-family: "PT Sans";
	font-size: clamp(1.4rem, 5vw, 2rem) !important;
	margin: 1.5rem 0;
}

.haftung .anschrift img {
	width: 1.2rem;
	color: white;
}

.haftung p,
.anschrift p {
	position: relative;
	display: block;
	font-family: "PT Sans";
	font-weight: 100;
	font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
	color: var(--weiss) !important;
	line-height: 1.5;
	text-align: justify;
}

.haftung .anschrift #dsgvo,
.haftung .anschrift #dsgvo li {
	color: var(--weiss) !important;
	list-style: disc !important;
	pointer-events: all;
	scrollbar-color: var(--weiss) !important;
	position: relative;
}

.haftung a {
	pointer-events: all;
	color: var(--rot) !important;
}

/* ENDE Datenschutz / Impressum */

.band_container {
	background-color: var(--grau);
}

.full_bg {
	background: #23232324 !important;
}

.band_bg1 {
	width: 100%;
	display: block;
	background-image: url("./../galerie-alben/2026/sasbach-open-air-13062026/1C4A9428.webp");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center top;
}

.member_bild {
	display: block;
	width: 100%;
	position: relative;
}

.bild {
	display: block;
	max-width: 300px;
	width: 100%;
	aspect-ratio: 1/1;
	margin: 0 auto;
	justify-content: center;
	padding: 0;
}

.bild img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#band {
	background-image: url("./../galerie-alben/2026/sasbach-open-air-13062026/1C4A9662.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
	padding: 4rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

#band_member_headline {
	margin-top: 2rem;
}

.besetzung {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	font-family: "ALL AGES";
	font-size: 2.5em;
	font-style: normal;
	border-radius: 1rem;
	border: 1px solid var(--rot);
	color: var(--rot);
	text-align: center;
	justify-content: space-evenly;
	position: relative;
	margin: 0 auto;
	padding: 2rem;
	gap: 4rem;
	margin: 2rem auto;
	transition: 0.4s all ease-in-out;
	backdrop-filter: blur(15px) !important;
	background-color: rgba(0, 0, 0, 0.5);
}

.besetzung:hover,
.besetzung_kh:hover {
	box-shadow: none;
	transition: 0.4s all ease-in-out;
}

.sound_bg {
	width: 50%;
	display: flex;
	flex-direction: column;
}

#sound_kh_abschnitt {
	margin: 0 auto;
	padding: 0;
}

#besetzung_kh_top {
	max-width: 100%;
	padding: 0;
	margin: 3rem auto;
}

.peters-paragraph {
	display: block;
	width: 90%;
	font-family: "sammiessansserIf", sans-serif;
	margin: 100px auto 70px auto;
	padding: 40px;
	font-family: "EXCESS";
	font-size: clamp(1.125rem, 5vw, 1.8rem);
	font-weight: normal;
	color: var(--weiss);
	justify-content: center;
	text-align: center;
	position: relative;
	line-height: 2;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(15px) !important;
}

.peters-paragraph:hover {
	cursor: default;
}

.band_text1 {
	position: relative;
	margin: 35rem auto 10rem auto;
}

.band_beschreibung {
	width: 100%;
	display: block;
	font-size: clamp(1.125rem, 5vw, 2rem);
	margin: 0 auto;
	position: relative;
	border: 1px solid transparent;
}

/************** Banner links für menu *****************/

.absatz_ueberschrift .email a {
	cursor: pointer;
	transform: scale(1.4, 1.4);
	border-radius: 20px;
}

.absatz_ueberschrift .email:hover {
	padding: 5px 10px;
	text-shadow: 0px 0px 35px #ff0000;
	border-radius: 10px;
	color: var(--rot) !important;
	transition: 0.4s;
	font-weight: 900;
	position: relative;
	cursor: pointer !important;
}

.headline {
	height: 300px;
}

.sound_bg {
	width: 100%;
	background: url("../galerie-alben/2026/sasbach-open-air-13062026/1C4A9533.webp");
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 6rem;
}

.soundkh {
	display: flex;
	width: max-content;
	margin: 0 auto -5rem auto;
	justify-content: center;
	padding-bottom: 4rem;
	position: relative;
}

.soundkh_image {
	width: 100%;
	display: flex;
	margin: 0 auto;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.soundkh_logo {
	max-width: 50%;
	display: flex;
	margin: 2rem auto;
	justify-content: center;
}

.soundkh_img {
	justify-content: center;
	align-items: center center;
	padding: 0;
	width: 30%;
	height: 100%;
	flex-direction: row;
	margin: 40px;
	object-fit: cover;
	align-self: center;
	border: 1px solid var(--rot);
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(15px) !important;
	border-radius: 1rem;
	position: relative;
}

#konrad_img {
	max-width: 20%;
}

.nachoben {
	position: fixed;
	transition: opacity 0.25s ease-in-out, visibility 0.7s ease-in-out;
	right: 1em;
	bottom: 1em;
	opacity: 0;
	visibility: hidden;
	z-index: 5000 !important;
	cursor: pointer;
}

.nachoben.show {
	opacity: 1;
	visibility: visible;
}

a:visited {
	color: var(--weiss);
}

a:visited:hover {
	color: var(--rot);
}

a:hover {
	text-decoration: none !important;
}

.own-links {
	margin-bottom: 2rem;
}

.highlight-headline {
	letter-spacing: 6px;
	font-family: "ALL AGES", sans-serif;
	justify-content: center;
	margin-bottom: 50px;
	pointer-events: none;
}

.seiten-ueberschrift {
	font-family: "ALL AGES", sans-serif;
	display: flex;
	width: 100%;
	color: var(--rot);
	letter-spacing: 0.5rem;
	margin: 250px auto;
	justify-content: center;
	font-size: clamp(3rem, 6vw, 5rem);
	z-index: 99991;
	pointer-events: none;
}

.seiten-ueberschrift--galerie {
	margin-top: clamp(10rem, 22vh, 18rem);
	margin-bottom: clamp(5rem, 12vh, 9rem);
}

.band_member_headline {
	width: 100%;
	display: block;
	pointer-events: none;
	justify-content: center;
	margin: 4rem auto;
	position: relative;
}

.band_member_headline p {
	font-family: "Captureit", sans-serif;
	font-weight: 100;
	width: 100%;
	display: block;
	position: relative;
	font-size: clamp(1.5rem, 3vw, 3rem);
	color: var(--rot);
	line-height: 2;
	text-align: center;
	text-align: center;
	justify-content: center;
	margin: 0 auto;
	padding: 0;
}

.seiten-ueberschrift:hover {
	cursor: default;
}

.seiten-ueberschrift-kh {
	width: 100%;
	margin: 0 auto;
	justify-content: center;
	text-align: center;
}

.seiten-ueberschrift-kh p {
	display: flex;
	width: 100%;
	color: var(--rot);
	letter-spacing: 1.1rem;
	font-family: "Captureit", sans-serif;
	text-align: center;
	font-weight: 100;
	justify-content: center;
	margin: -150px auto -200px auto;
	font-size: clamp(0.7rem, 3vw, 3rem);
	line-height: 2;
	z-index: 9999;
}

/* Seite "GIGS */
.gigs-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15rem auto;
	font-family: "Captureit", sans-serif;
	font-weight: 100;
	width: 100%;
}

.banner {
	display: flex;
	margin: 0 auto 10rem auto;
	justify-content: center;
	width: 60% !important;
}

.banner img {
	width: 100%;
	object-fit: cover;
	mix-blend-mode: color-dodge;
}

.concert-list {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	margin: 0 auto;
	justify-content: center;
	position: relative;
	perspective: 1200px;
	perspective-origin: center center;
}

.concert-list .gig-picture,
.gigs-container > .gig-picture {
	width: 100%;
	max-width: 700px;
	height: auto;
	margin: 4rem auto 0;
	display: block;
	object-fit: cover;
	object-position: center;
}

.concert-item {
	font-family: "sammiessansserIfSans", sans-serif;
	font-weight: bold !important;
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 1rem;
	background-color: var(--grau);
	padding: 14rem 2rem 2rem 2rem;
	list-style-type: none;
	border-radius: 1rem;
	border: 1px solid var(--rot);
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	transform-style: preserve-3d;
	transition: transform 0.15s ease-out, box-shadow 0.25s ease;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
	will-change: transform;
}

.concert-item.is-hovering {
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.45),
		0 8px 24px rgba(255, 0, 0, 0.15);
	border-color: var(--rot);
}

@media (prefers-reduced-motion: reduce) {
	.concert-item {
		transition: box-shadow 0.25s ease;
		will-change: auto;
	}
}

.concert-item .skull {
	position: absolute;
	content: "";
	max-width: 7rem;
	width: 100%;
	max-height: 10em;
	height: 100%;
	top: 2rem;
	left: 50%;
	background-image: url("../img/skull_fire.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.6;
	z-index: 2;
	transform: translateX(-50%) translateY(0) translateZ(0);
	transform-style: preserve-3d;
	transition: transform 0.3s ease-out, filter 0.3s ease, opacity 0.3s ease;
	filter: none;
	pointer-events: none;
}

.concert-item.is-hovering .skull {
	transform: translateX(-50%) translateY(-8px) translateZ(20px);
	opacity: 0.85;
	filter:
		drop-shadow(0 2px 0 rgba(0, 0, 0, 0.2))
		drop-shadow(0 5px 9px rgba(0, 0, 0, 0.55))
		drop-shadow(0 9px 14px rgba(255, 0, 0, 0.35));
}

@media (prefers-reduced-motion: reduce) {
	.concert-item .skull {
		transition: opacity 0.3s ease, filter 0.3s ease;
	}

	.concert-item.is-hovering .skull {
		transform: translateX(-50%);
	}
}

.concert-item > h3.venue:first-of-type {
	transform-style: preserve-3d;
	transition: transform 0.3s ease-out, text-shadow 0.3s ease;
	transform: translateY(0) translateZ(0);
	text-shadow: none;
}

.concert-item.is-hovering > h3.venue:first-of-type {
	transform: translateY(-8px) translateZ(20px);
	text-shadow:
		0 2px 0 rgba(0, 0, 0, 0.2),
		0 5px 9px rgba(0, 0, 0, 0.55),
		0 9px 14px rgba(255, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
	.concert-item > h3.venue:first-of-type {
		transition: text-shadow 0.3s ease;
	}

	.concert-item.is-hovering > h3.venue:first-of-type {
		transform: none;
	}
}

.venue {
	position: relative;
	font-weight: 500;
	color: var(--rot);
	font-size: clamp(1rem, 5vw, 2rem);
	letter-spacing: 2px;
	text-align: center;
	width: 100%;
	margin: 0;
}

.venue-top {
	font-family: "Captureit", sans-serif;
	text-transform: uppercase;
	letter-spacing: 4px;
}

/* Untertitel (z. B. Veranstalter) – weiß, zentriert */
.concert-item > h3.venue.venue-sub {
	color: var(--weiss);
}

.concert-item > h3.venue.venue-sub .venue1 {
	display: block;
	width: 100%;
	justify-content: center;
	text-align: center;
	color: var(--weiss);
}

.concert-item > .venue-sub + .gig_details,
.concert-item > .venue:first-of-type + .gig_details {
	margin-top: 4rem;
}

/* Detailzeilen: Label links (rot), Wert rechts (weiß) */
.concert-item .gig_details,
.concert-item .time {
	text-align: left;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.75rem;
	width: 100%;
}

.concert-item .venue1 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
	font-weight: 500;
	letter-spacing: 2px;
	font-size: clamp(1rem, 5vw, 1.8rem);
	color: var(--weiss);
	text-align: right;
}

.concert-item .red-arrow {
	color: var(--rot);
	margin-right: 10px;
}

.time {
	display: flex;
	position: relative;
	color: var(--rot);
	font-size: clamp(1.3rem, 5vw, 2rem);
	margin-top: 6px;
	font-weight: 100;
}

.tickets,
.tickets a {
	position: relative;
	color: var(--rot);
	text-decoration: none;
	transition: 0.4s all ease-in-out;
	font-weight: 100;
}

.tickets a {
	width: max-content !important;
}

.tickets a:hover,
.tickets a:active,
.tickets a:focus-within {
	color: var(--rot) !important;
	transition: 0.4s all ease-in-out;
}

.hinweis_gigs {
	font-family: "PT Sans" !important;
	max-width: 100%;
	letter-spacing: 4px;
	text-transform: uppercase;
	border-bottom: 1px solid var(--weiss);
}

.gig_details {
	display: flex;
	font-weight: 500;
	font-size: clamp(0.8rem, 5vw, 1.8rem);
}

.gig_location {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	grid-column: 1 / -1;
	color: var(--rot);
	font-weight: 100;
	text-align: left;
}

.gig_location-label {
	flex-shrink: 0;
	font-weight: 500;
	color: var(--rot);
}

.gig_location-address {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex: 1 1 auto;
	width: auto;
	gap: 0.35rem;
}

.gig_location .venue1 {
	display: block;
	width: 100%;
	text-align: right;
	justify-content: flex-end;
}

.gigs_vvk {
	display: block !important;
	line-height: 1.5;
	width: 100% !important;
}

.gigs_vvk span {
	font-size: 1.2rem !important;
}

.link-gigs {
	width: 60%;
	letter-spacing: 10px;
	align-content: center;
	text-align: center;
	position: relative;
	opacity: 0.8;
	font-weight: 100;
}

.link-gigs:hover {
	opacity: 1;
	box-shadow: 0px 0px 45px rgba(255, 0, 0, 40.5);
}

.letsrock_gigs {
	position: relative;
	display: block;
	text-align: center;
	margin-left: 0;
	top: 5rem !important;
	height: max-content;
	justify-content: center;
	left: 0;
	width: max-content;
	-webkit-text-stroke: 1px var(--grau);
}

.letsrock_gigs::after {
	position: absolute;
	content: "";
	background-color: var(--weiss);
	bottom: 0rem;
	right: 0;
	left: -120%;
	height: 0.1rem;
	opacity: 1 !important;
}

/* ENDE Seite "GIGS */

.ueberschrift_abschnitt {
	letter-spacing: 1.3rem;
	font-family: "ALL AGES", sans-serif;
	text-align: center;
	filter: drop-shadow(2px 2px 10px rgb(250, 250, 250, 0.7));
	margin-bottom: 40px;
	font-size: 35px;
}

.galerie-einzeln-ueberschrift {
	font-family: "Captureit", sans-serif;
	display: flex;
	justify-content: center;
	font-weight: 800;
	text-align: center;
	font-size: clamp(1.5rem, 5vw, 3rem);
	letter-spacing: 2px;
	margin-bottom: 4rem;
	color: var(--rot);
	margin: 12rem auto 6rem auto;
}

.galerie-einzeln-ueberschrift:hover {
	cursor: default;
}

.video-container {
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	position: relative;
	margin: 0 auto 10rem auto;
	padding: 50px 1rem;
	border: 1px solid var(--rot);
	border-radius: 1rem;
	gap: 3rem;
	background-color: var(--grau);
}

.video-box {
	display: block;
	position: relative;
	max-width: 100%;
	height: auto;
}

.linkvideo {
	width: 360px;
	max-width: 100%;
	/* height: 450px; */
	max-height: 100%;
	align-items: center;
	position: relative;
	max-width: 100%;
	display: flex;
	margin: 0 auto;
	justify-content: center;
}

.video-bilder {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 350px;
	width: 100%;
	height: auto;
	max-height: 100%;
}

.video-bilder img {
	max-width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: top;
	border: 1px solid var(--weiss);
}

.video-bilder:hover {
	cursor: pointer;
}

.video-beschreibung {
	width: 100%;
	display: flex;
	position: relative;
	text-align: center !important;
	justify-content: center;
	color: var(--rot);
	font-size: clamp(1rem, 5vw, 1.2rem);
	font-family: "Captureit", sans-serif;
	font-weight: 100;
	letter-spacing: 1px;
	margin: 0.5rem auto;
	padding: 0 0.1rem;
}

.video-beschreibung:hover {
	cursor: default;
}

/****************** Galerie-Übersicht der Hauptseite "Galerie" ******************/
.album_jahres_zahl {
	width: 100%;
	display: block;
	font-size: clamp(2.4rem, 7vw, 4.2rem);
	font-family: "Captureit", sans-serif;
	font-weight: 100;
	text-align: center;
	margin: 0;
	letter-spacing: 0.18em;
	line-height: 0.95;
	color: var(--weiss);
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.jahr_linie {
	width: min(7rem, 28%);
	height: 2px;
	margin: 0.85rem auto 0;
	border: none;
	background: linear-gradient(90deg, transparent, var(--rot), transparent);
	transform-origin: center;
}

.galerie,
.galerie-jahr {
	width: min(1280px, 94%);
	position: relative;
	margin: 0 auto 4.5rem;
	padding: clamp(3.2rem, 6vw, 4.8rem) clamp(0.85rem, 2vw, 1.4rem) clamp(1.8rem, 3vw, 2.6rem);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.35rem;
	box-sizing: border-box;
	overflow: hidden;
	isolation: isolate;
	pointer-events: auto;
	background:
		radial-gradient(ellipse 80% 60% at 12% 0%, rgba(255, 4, 3, 0.16), transparent 55%),
		radial-gradient(ellipse 70% 50% at 88% 100%, rgba(255, 255, 255, 0.04), transparent 50%),
		linear-gradient(165deg, #141010 0%, #070505 48%, #0c0909 100%);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.galerie-jahr::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 8%, var(--rot) 50%, transparent 92%);
	opacity: 0.85;
	pointer-events: none;
	transform: scaleX(0.35) translateY(var(--galerie-parallax, 0px));
	transform-origin: center;
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.galerie-jahr.js-reveal.is-visible::before {
	transform: scaleX(1) translateY(var(--galerie-parallax, 0px));
	opacity: 1;
	transition: opacity 0.7s ease;
}

/* Scroll-Reveal: Jahresblöcke */
.galerie-jahr.js-reveal {
	opacity: 0;
	transform: translateY(3.2rem) scale(0.972);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.85s ease;
	will-change: transform, opacity;
}

.galerie-jahr.js-reveal.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.galerie-jahr.js-reveal .album_jahres_zahl {
	opacity: 0;
	transform: translateY(1.15rem);
	letter-spacing: 0.42em;
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
		letter-spacing 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.galerie-jahr.js-reveal.is-visible .album_jahres_zahl {
	opacity: 1;
	transform: translateY(0);
	letter-spacing: 0.18em;
}

.galerie-jahr.js-reveal .jahr_linie {
	transform: scaleX(0);
	opacity: 0;
	transition:
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.22s,
		opacity 0.5s ease 0.22s;
}

.galerie-jahr.js-reveal.is-visible .jahr_linie {
	transform: scaleX(1);
	opacity: 1;
}

/* Scroll-Reveal: Album-Kacheln (gestaffelt) */
.galerie-album.js-reveal {
	opacity: 0;
	transform: translateY(2.4rem) scale(0.92);
	filter: saturate(0.7);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.8s ease;
	transition-delay: calc(var(--reveal-i, 0) * 85ms);
	will-change: transform, opacity;
}

.galerie-album.js-reveal.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: saturate(1);
}

/* Hero-Titel der Galerie-Übersicht */
.page-galerie .js-galerie-hero {
	opacity: 0;
	transform: translateY(1.5rem) scale(0.96);
	filter: blur(6px);
	transition:
		opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.9s ease;
}

.page-galerie .js-galerie-hero.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

.galerie-jahr__header {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 0;
	margin-bottom: clamp(3rem, 6.4vw, 4.4rem);
	text-align: center;
}

.galerie-box {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.2vw, 1.85rem);
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	align-items: stretch;
}

.galerie-jahr[data-count="1"] .galerie-box {
	grid-template-columns: minmax(0, 28rem);
	justify-content: center;
}

.galerie-jahr[data-count="2"] .galerie-box {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 56rem;
	margin-inline: auto;
}

.galerie-album {
	margin: 0;
	width: 100%;
	max-width: none;
	flex: none;
	position: relative;
	z-index: 1;
	text-align: left;
	pointer-events: auto;
}

.galerie-album__link {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	border-radius: 1rem;
	overflow: hidden;
	background: #0a0707;
	isolation: isolate;
	cursor: pointer;
	pointer-events: auto;
	transform: translateZ(0);
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s ease,
		border-color 0.35s ease;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.galerie-album__media {
	position: relative;
	aspect-ratio: 5 / 4;
	overflow: hidden;
}

.Galerie-Vorschau {
	width: 100%;
	height: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
	display: block;
	object-fit: cover;
	object-position: center center;
	border: none;
	border-radius: 0;
	transform: scale(1.02);
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
	filter: saturate(0.92) contrast(1.04);
	pointer-events: none;
}

.galerie-album__glow {
	position: absolute;
	inset: auto 0 0 0;
	height: 72%;
	background:
		linear-gradient(
			180deg,
			transparent 0%,
			rgba(0, 0, 0, 0.15) 22%,
			rgba(0, 0, 0, 0.55) 52%,
			rgba(0, 0, 0, 0.88) 78%,
			rgba(0, 0, 0, 0.96) 100%
		);
	pointer-events: none;
	z-index: 1;
}

.galerie-album__shine {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		125deg,
		rgba(255, 255, 255, 0.14) 0%,
		rgba(255, 255, 255, 0.02) 28%,
		transparent 52%
	);
	opacity: 0;
	transform: translateX(-18%) scale(1.05);
	transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.galerie-album__meta {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: grid;
	gap: 0.28rem;
	padding: 1.35rem 1rem 1.1rem;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(0, 0, 0, 0.35) 35%,
		rgba(0, 0, 0, 0.72) 100%
	);
	transform: translateY(0);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.galerie-album__title {
	font-family: "PT Sans", sans-serif;
	font-size: clamp(0.95rem, 1.7vw, 1.12rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	color: var(--weiss);
	text-wrap: balance;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

.galerie-album__date {
	font-family: "PT Sans", sans-serif;
	font-size: clamp(0.95rem, 1.7vw, 1.12rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-transform: none;
	color: var(--rot);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

.galerie-album__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.35rem;
	width: fit-content;
	font-family: "PT Sans", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--weiss);
	opacity: 0;
	transform: translateY(0.45rem);
	transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}

.galerie-album__cta::after {
	content: "→";
	font-size: 0.95em;
	transition: transform 0.3s ease;
}

.galerie-album__link:hover,
.galerie-album__link:focus-visible {
	transform: translateY(-10px) scale(1.015);
	border-color: rgba(255, 4, 3, 0.55);
	box-shadow:
		0 26px 52px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 4, 3, 0.4),
		0 0 28px rgba(255, 4, 3, 0.18);
	outline: none;
	text-decoration: none;
	z-index: 2;
}

.galerie-album__link:hover .Galerie-Vorschau,
.galerie-album__link:focus-visible .Galerie-Vorschau {
	transform: scale(1.12);
	filter: saturate(1.12) contrast(1.08) brightness(1.06);
}

.galerie-album__link:hover .galerie-album__shine,
.galerie-album__link:focus-visible .galerie-album__shine {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.galerie-album__link:hover .galerie-album__meta,
.galerie-album__link:focus-visible .galerie-album__meta {
	transform: translateY(-2px);
}

.galerie-album__link:hover .galerie-album__date,
.galerie-album__link:focus-visible .galerie-album__date {
	color: #ff5a59;
}

.galerie-album__link:hover .galerie-album__cta,
.galerie-album__link:focus-visible .galerie-album__cta {
	opacity: 1;
	transform: translateY(0);
	color: var(--rot);
}

.galerie-album__link:hover .galerie-album__cta::after,
.galerie-album__link:focus-visible .galerie-album__cta::after {
	transform: translateX(4px);
}

.galerie-album__link:active {
	transform: translateY(-3px) scale(0.995);
}

@media (hover: none) {
	.galerie-album__cta {
		opacity: 0.85;
		transform: none;
	}
}

/* Legacy-Klassen (falls noch irgendwo referenziert) */
.Galerie-Beschreibung,
.tlg-galerie {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.galerie,
	.galerie-jahr,
	.galerie-jahr.js-reveal,
	.galerie-jahr.js-reveal .album_jahres_zahl,
	.galerie-jahr.js-reveal .jahr_linie,
	.galerie-album.js-reveal,
	.page-galerie .js-galerie-hero,
	.galerie-album__link,
	.Galerie-Vorschau,
	.galerie-album__shine,
	.galerie-album__meta,
	.galerie-album__cta {
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
		filter: none !important;
		letter-spacing: 0.18em;
	}

	.galerie-jahr::before {
		transform: scaleX(1) !important;
	}

	.galerie-album__cta {
		opacity: 0.9;
	}

	.galerie-album__link:hover,
	.galerie-album__link:focus-visible {
		transform: none;
	}

	.galerie-album__link:hover .Galerie-Vorschau,
	.galerie-album__link:focus-visible .Galerie-Vorschau {
		transform: none;
	}
}

@media (max-width: 1100px) {
	.galerie-box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.galerie-jahr[data-count="1"] .galerie-box {
		grid-template-columns: minmax(0, 26rem);
	}
}

.back_galerie {
	position: relative;
	margin: 0 auto 10rem auto !important;
	background-color: transparent;
	display: block;
	font-size: clamp(1.2rem, 3vw, 2rem);
	padding: 0.4rem 1.2rem;
	color: var(--rot);
	border-radius: 2.5rem;
	border: none;
	transition: 0.4s all ease-in-out;
	border: 2px solid var(--rot);
}

.back_galerie:hover {
	background-color: var(--rot);
	color: var(--weiss);
	transition: 0.4s all ease-in-out;
	cursor: pointer;
}

/* Zurück zur Galerieauswahl – modern (CSS greift ohne JavaScript) */
a[href="/seiten/galerie.php"],
.galerie-back-link {
	display: block;
	width: fit-content;
	margin: clamp(3.5rem, 8vw, 5.5rem) auto 10rem;
	perspective: 1000px;
	perspective-origin: center center;
	text-decoration: none;
}

a[href="/seiten/galerie.php"] > .back_galerie,
.galerie-back-link > .back_galerie,
.galerie-back-btn {
	margin: 0 !important;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	padding: 0.9rem 1.75rem 0.9rem 1.45rem;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 999px;
	background: rgba(10, 10, 10, 0.62) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	color: var(--weiss) !important;
	font-family: "PT Sans", sans-serif;
	font-size: clamp(0.82rem, 2vw, 1rem);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1.2;
	cursor: pointer;
	overflow: hidden;
	transform-style: preserve-3d;
	transform: translateZ(0);
	box-shadow:
		0 14px 36px rgba(0, 0, 0, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition:
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		color 0.35s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

a[href="/seiten/galerie.php"] > .back_galerie:not(.galerie-back-btn)::before {
	content: "←";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: var(--weiss);
	font-size: 0.95rem;
	line-height: 1;
	flex-shrink: 0;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, color 0.35s ease;
}

.galerie-back-btn__glow {
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.09) 0%, transparent 55%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

a[href="/seiten/galerie.php"]:hover > .back_galerie,
.galerie-back-link:hover > .back_galerie,
.galerie-back-link.is-hovering > .back_galerie,
.galerie-back-link.is-hovering > .galerie-back-btn {
	border-color: rgba(255, 255, 255, 0.24) !important;
	background: rgba(10, 10, 10, 0.72) !important;
	color: var(--rot) !important;
	box-shadow:
		0 20px 44px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

a[href="/seiten/galerie.php"]:hover .galerie-back-btn__glow,
.galerie-back-link.is-hovering .galerie-back-btn__glow {
	opacity: 1;
}

.galerie-back-btn__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: var(--weiss);
	font-size: 0.95rem;
	line-height: 1;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, color 0.35s ease;
}

a[href="/seiten/galerie.php"]:hover .galerie-back-btn__icon,
a[href="/seiten/galerie.php"]:hover > .back_galerie:not(.galerie-back-btn)::before,
.galerie-back-link:hover .galerie-back-btn__icon,
.galerie-back-link.is-hovering .galerie-back-btn__icon {
	transform: translateX(-3px);
	border-color: rgba(255, 4, 3, 0.45);
	color: var(--rot);
}

.galerie-back-btn__label {
	position: relative;
	z-index: 1;
	transition: color 0.35s ease;
}

a[href="/seiten/galerie.php"]:hover .galerie-back-btn__label,
.galerie-back-link:hover .galerie-back-btn__label,
.galerie-back-link.is-hovering .galerie-back-btn__label {
	color: var(--rot);
}

a[href="/seiten/galerie.php"]:active > .back_galerie,
.galerie-back-link:active > .back_galerie,
.galerie-back-link:active > .galerie-back-btn {
	box-shadow:
		0 8px 22px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
	a[href="/seiten/galerie.php"] > .back_galerie,
	.galerie-back-link > .back_galerie,
	.galerie-back-link > .galerie-back-btn {
		transform: none !important;
		will-change: auto;
	}

	.galerie-back-btn__icon,
	a[href="/seiten/galerie.php"] > .back_galerie:not(.galerie-back-btn)::before {
		transition: border-color 0.25s ease, color 0.25s ease;
	}

	a[href="/seiten/galerie.php"]:hover .galerie-back-btn__icon,
	a[href="/seiten/galerie.php"]:hover > .back_galerie:not(.galerie-back-btn)::before,
	.galerie-back-link.is-hovering .galerie-back-btn__icon {
		transform: none;
	}
}

/* ENDE Galerie-Übersicht der Hauptseite "Galerie */
.galerie-box-seite {
	width: min(1200px, 92%);
	--gallery-row-unit: 100px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: var(--gallery-row-unit);
	grid-auto-flow: row;
	gap: 0.65rem;
	position: relative;
	margin: 0 auto;
	padding-bottom: 3rem;
}

.main-container.content:has(.galerie-box-seite) .galerie-box-seite {
	padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.galerie-box-seite a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	border-radius: 0.75rem;
	border: 2px solid transparent;
	pointer-events: auto;
	cursor: pointer;
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.galerie-box-seite a:hover,
.galerie-box-seite a:focus {
	text-decoration: none;
	outline: none;
	color: var(--weiss);
	transform: scale(1.02);
	border-color: var(--rot);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
	z-index: 2;
	cursor: zoom-in;
}

@media (min-width: 769px) {
	.galerie-box-seite {
		grid-template-columns: repeat(3, 1fr);
	}
}

.galerie-vorschau-seite {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border: none;
	border-radius: 0;
	transition: transform 0.35s ease;
}

.Galerie-Bild {
	width: 97%;
	height: 99%;
	object-fit: cover;
}

.Galerie-Bild:active {
	width: 40%;
	object-fit: cover;
	transition: all 0.7s ease-out;
	visibility: visible;
	align-items: center;
}

.pointer {
	color: var(--rot);
}

.tlg {
	position: relative;
	width: 300px;
	height: auto;
	color: var(--weiss);
	margin-left: 30px;
	font-size: 1.125rem;
	transition: 0.4s all ease-in-out;
}

/* Ende der Bildergalerie */

.h1 {
	color: var(--weiss);
	border: yellow;
}

/*************** Kontaktformular ***************/
.presse {
	display: block;
	color: var(--weiss);
	margin: 3rem auto;
	justify-content: center;
	text-align: center;
	font-size: 1.5rem;
}

.presse p {
	display: flex;
	width: fit-content;
	padding: 2rem;
	font-family: "Captureit", sans-serif;
	font-weight: 100;
	text-align: center;
	margin: 3rem auto;
	letter-spacing: 1px;
	background-color: var(--grau);
	border: 1px solid var(--rot);
	border-radius: 1rem;
	font-size: clamp(1.2rem, 3vw, 2rem);
	pointer-events: none;
	text-wrap: wrap;
}

::placeholder {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.506);
	position: relative;
	margin-left: 2rem;
}

#kontakt_box {
	/* Box für das Kontaktformular inklusive Hintergrund und Kontaktformular Kontakt-Seite"  */
	display: flex;
	width: 70%;
	max-width: 60%;
	height: 70%;
	color: var(--weiss);
	margin: 0 auto;
	position: relative;
	justify-content: center;
	align-items: center;
}

@media (min-width: 890px) {
	#kontakt_box {
		width: 60%;
		max-width: 70%;
		margin-left: auto;
		margin-right: auto;
	}
}

form {
	/* Eingabefelder Kontakt-Seite"  */
	display: inline-flexbox;
	position: relative;
	color: var(--weiss);
	font-family: "Captureit", sans-serif;
	font-size: 2.5rem;
	font-weight: 100;
	padding-top: 1.2em;
}

form div {
	margin: 2rem auto;
}

input {
	/* Eingabefelder außer "Nachricht ändern */
	display: inline-flexbox;
	background-color: rgba(0, 0, 0, 0.546);
	color: rgb(255, 255, 255);
	opacity: 1;
	font-size: 0.8em;
	content: "";
	z-index: 99999;
	position: relative;
	padding: 0.5rem 0;
}

.kontakt_headline {
	font-family: "captureit", sans-serif !important;
	margin: 3rem auto 0 auto;
	text-align: center;
	color: var(--rot);
	z-index: 99999999999 !important;
	pointer-events: none;
}

#h3kontakt {
	/* Überschrift Kontaktformular "Hier können Sie mit der Band Red Hot in Verbindung treten */
	margin-top: 100px;
	/* font-size: 2.2em; */
	letter-spacing: 7px;
	font-weight: 200;
	font-family: "EXCESS", sans-serif;
	color: var(--weiss);
	margin: 20px auto;
	justify-content: center;
	text-align: center;
	position: relative;
}

#kontakt_formular {
	background-color: var(--grau);
	padding: 2rem;
	width: 100%;
	margin-bottom: 10rem;
	position: relative;
	border: 1px solid var(--rot);
	border-radius: 1rem;
}

#kontakt_box #message {
	display: flex;
}

#kontakt_box input {
	/* Eingabefeld für Feld "Nachricht bei Aktiv-Status ändern */
	outline: none;
	content: "";
	background-color: var(--schwarz);
	color: var(--weiss);
}

#kontakt_box input:focus,
#kontakt_box select:focus,
#kontakt_box textarea:focus {
	/* Eingabefeld für Feld "Nachricht bei Aktiv-Status ändern */
	outline: none;
	content: "" !important;
	border: 1.5px solid var(--rot);
	color: var(--weiss);
}

#kontakt_box input,
#kontakt_box select,
#kontakt_box textarea,
#kontakt_box label {
	border: 1px solid #c9c8c8;
	background-color: rgba(0, 0, 0, 0.527);
	outline: none;
	content: "";
	color: var(--weiss);
	font-size: 1.5rem !important;
	background-color: none;
	width: 100%;
	margin: 0 auto;
	position: relative;
	border-radius: 1rem;
	padding: 1rem;
}

#kontakt_box textarea {
	display: inline-flexbox;
	height: 150px;
	resize: none;
	color: var(--weiss);
	margin-bottom: 4rem;
}

#kontakt_box label {
	display: inline-block;
}

#kontakt_box .required {
	font-weight: bold;
	color: var(--rot);
}

.form-box {
	width: 100%;
}

.form-box > input[name="email"]:invalid {
	/* Wenn die Email falsch eingegeben wurde erscheint ein rotes Kreuz */
	color: rgb(255, 255, 255);
	content: " x";
}

.form-box > input[name="email"]:valid {
	/* Wenn die Email richtig eingegeben wurde erscheint ein grüner Haken */
	color: green;
	content: url(/img/Haken_gruen.png);
}

#bestaetigungs_box {
	display: grid;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	place-items: center;
	grid-gap: 4rem;
}

.bestaetigung_text p {
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-family: "Captureit", sans-serif;
	font-size: clamp(1.5rem, 4vw, 2rem);
	color: var(--weiss);
}

/******************** Footer-Definition ********************/
footer {
	display: flex !important;
	flex-wrap: wrap;
	width: 100%;
	background: url("../img/wave.jpg") no-repeat center;
	background-size: auto;
	background-size: cover;
	margin-top: auto;
	padding: 1rem 0;
	gap: 2rem;
	position: relative;
	bottom: 0;
	justify-content: space-evenly;
	align-items: center;
	z-index: 999 !important;
}

footer a,
footer p {
	display: inline-block;
	width: fit-content;
	font-family: "PT Sans", sans-serif;
	color: var(--weiss);
	font-weight: 500;
	text-align: center;
	margin: 0 !important;
	text-transform: uppercase;
	font-size: clamp(0.7em, 3vw, 1rem);
	transition: 0.4s all ease-in-out;
}

footer a:hover {
	color: var(--rot) !important;
	transition: 0.4s all ease-in-out;
	font-weight: 400;
}

footer p {
	pointer-events: none;
	color: var(--rot);
}

/******************** ENDE Footer-Definition ********************/
