/* Header */

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.02); 
	z-index: 1;
	pointer-events: none;
}

.header::before {
  background: rgba(255, 255, 255, var(--before-opacity, 0.02)); /* Start-Deckkraft */
  transition: background 0.01s ease;
	pointer-events: none;
}
.header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	z-index: 1;
	pointer-events: none;	
	background: #020024;
background: linear-gradient(0deg, rgba(255,255,255, 1) 50%, rgba(255, 255, 255, 0) 100%);

}
body.home .header::after {
		height: 20%;

}

.header {
    width: 100vw;
    height: 75vh;
    background-size: cover !important;
    position: relative;
    background-position: center center !important; 
    overflow: hidden;
}


.header .inner-bg {
    width: 100vw;
    height: 100%;
    background-size: cover !important;
    position: relative;
    background-position: center center !important; 
    overflow: hidden;

}

.header .inner-bg .content {
    padding-top: 133px;
    color: #FFF;
    height: 65vh;
     width: calc(100vw - var(--main-padding) * 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	z-index: 9;
	position: relative;
}

.header .inner-bg .content p {
	padding-bottom: 45px;
}

.header .inner-bg .content h1 {
	color:rgba(var(--color-2), 1);
	color:#FFF;
}


body.single-artist .header {
	height: 70vh;
	position: relative !important;
}
body.single-artist .header .inner-bg {
	position: relative;
}
.header .artist_logo {
	background: transparent;
	width: 100%;
	height: 80vh;
	bottom:0 !important;
	z-index: -1;
	display: flex;
    justify-content: center;
    align-items: center;
}
.header .artist_logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
	text-align: center;
	object-position: center;
	filter: blur(15px);
	mix-blend-mode: hard-light; 
	
}

.header .artist {
	background: transparent;
	width: 100%;
	height: 75vh;
	text-align: center;
	padding-top:80px;
	position: absolute;
	bottom:-15vh;
	z-index: 1;
}
.header .artist img {
	height: 80%;
	width: auto;
	max-height: 80% !important;
	object-fit: contain;
	object-position: center;
}

.header .artist_headline {
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.artist_name,
.artist_title {
	display: inline-block;
	padding: 10px 20px;
	color: #fff;
	white-space: nowrap;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.artist_name {
	background: #fff;
	font-size: 30px;
	font-weight: 600;
	padding-bottom: 5px !important;
}

.artist_title {
	background: #606060;
	font-size: 20px;
	font-weight: 300;
	padding-bottom: 6px !important;
}



/* Standard: Desktop-Version anzeigen, Mobile-Version verstecken */
.inner-bg.mobile-bg {
	display: none;
}
.inner-bg.desktop-bg {
	display: block;
}

/* Auf Mobil: Desktop-Version verstecken, Mobile-Version anzeigen */
@media only screen and (max-width: 767px) {
	.inner-bg.mobile-bg {
		display: block;
	}
	.inner-bg.desktop-bg {
		display: none;
	}
	.header .artist img {
    width: 100%;
	}
	
	
	.header::after {
	height: 25%;
	
}
	
.header .inner-bg {
    background-size: cover !important;
	aspect-ratio:1/1 !important;
	}
	
	.header {
		height: 49vh;
		margin-top:var(--header-height);
		aspect-ratio: 1 / 1 !important;
	} 
	
	
	.artist_name {
	font-size: 25px;
}
	.artist_title {
    font-size: 18px;
}
	.header .artist_headline {
		width: 90%;
	}
	
	.header .artist {
	background: transparent;
	width: 100%;
	height: 70vh;
	text-align: center;
	padding-top:80px;
	position: absolute;
	bottom:-20vw;
	z-index: 1;
}
	
	
}


@media only screen and (max-width: 767px) {
  .artist_name,
  .artist_title {
    white-space: normal; /* Zeilenumbruch erlauben */
    text-align: center;  /* zentriert ausrichten */
  }
}

