@CHARSET "ISO-8859-1";

@font-face { 
	font-family: "Alegreya"; 
	src: url("alegreyasans-light-webfont.woff"); 
}
@font-face {
  font-family: "Cinzel";
  src: url("Cinzel-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 900;
  font-style: normal;
}
@font-face { 
	font-family: "CormorantSC"; 
	src: url("CormorantSC-SemiBold.ttf"); 
}
@font-face {
  font-family: "Manrope";
  src: url("Manrope-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 800;
  font-style: normal;
}

:root {
	font-size: clamp(12px, 1vw, 16px);
}

/* Grundlayout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    color: #222;
    background: #111;
    scroll-behavior: smooth; /* Fallback, zusätzlich zu jQuery-Animation */
    font-family: Manrope, Arial, Helvetica, sans-serif;
	line-height: 1.5;
	font-size: 1rem;
}

#title {
	position: fixed;
	left: 2rem;
	top: 2rem;
	width: 22rem;
	z-index: 1002;
}
#titleName {
	position: relative;
	width: 100%;
}
#titleName img {
	width: 100%;
}
#titleVio {
	position: relative;
	font-family: CormorantSC;
	font-weight: 500;
	font-size: 1.5rem;
	margin: -1.5rem 0 0 4rem;
}
.red {
	color: #da000d;
}

h2 {
	font-family: CormorantSC;
	font-weight: 500;
	font-size: 1.5rem;
	color: #da000d;
	margin-bottom: 1.5rem;
}
h3 {
	font-size: 1rem;
    font-weight: 800;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #da000d;
	text-decoration: none;
	font-weight: bold;
}
/* Hamburger oben rechts */
.hamburger {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 2rem;
    height: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger aktiv (X-Icon) */
.hamburger.active span:nth-child(1) {
    transform: translateY(.8rem) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-.8rem) rotate(-45deg);
}

/* Overlay-Menü */
.menu-overlay, .menuMain-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 100
}

.menu-overlay.open, .menuMain-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-overlay-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-overlay nav ul, .menuMain-overlay nav ul {
    list-style: none;
    text-align: center;
}

.menu-overlay nav ul li, .menuMain-overlay nav ul li {
    margin: 15px 0;
}

.menu-overlay nav ul li a, .menuMain-overlay nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: CormorantSC;
	font-weight: 500;
	font-size: 1.5rem;
}

/* Content-Sektionen */
main {
    width: 100%;
}

.content-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    box-shadow:
        0 60px 80px rgba(0, 0, 0, 0.25),
        0 20px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border-top: 1px solid #ccc;
}

.content-section:nth-of-type(odd) {
    background: #e9e9e9;
}

#home {
	background-image: url("../images/home.jpg");
    background-size: cover;
    background-position: center;
}
#about {
	background-image: url("../images/about.jpg");
    background-size: cover;
    background-position: center;
}
#concerts {
	background-image: url("../images/concerts.jpg");
    background-size: cover;
    background-position: center;
}
#media {
	background-image: url("../images/media.jpg");
    background-size: cover;
    background-position: center;
}
#discography {
	background-image: url("../images/disco.jpg");
    background-size: cover;
    background-position: center;
}
#contact {
	background-image: url("../images/contact.jpg");
    background-size: cover;
    background-position: center;
}
.content-inner {
    background: rgba(255, 255, 255, 0.80);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #333;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.section-arrow {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    z-index: 999;
}

/* zwei Linien, die ein V bilden */
.section-arrow::before,
.section-arrow::after {
    content: "";
    position: absolute;
    bottom: .4rem;
    width: 1.4rem; 
    height: .2rem;
    background: #fff;
    border-radius: 2px;
    transition: background 0.3s ease;
}

/* linke Linie */
.section-arrow::before {
    left: 0;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

/* rechte Linie */
.section-arrow::after {
    right: 0;
    transform-origin: bottom right;
    transform: rotate(-45deg);
}

.section-arrow:hover::before,
.section-arrow:hover::after {
    background: #da000d;
}

.section-arrow-up {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 3rem;
    cursor: pointer;
    z-index: 2000;
}

/* beide Pfeile */
.section-arrow-up::before,
.section-arrow-up::after {
    content: "";
    position: absolute;
    width: 1.6rem;
    height: .2rem;
    background: #fff;
    border-radius: 2px;
    transition: background 0.3s ease;
}

/* UNTERER Pfeil */
.section-arrow-up::before {
    bottom: .4rem;
    left: 0;
    transform-origin: bottom left;
    transform: rotate(-45deg);
}
.section-arrow-up::after {
    bottom: .4rem;
    right: 0;
    transform-origin: bottom right;
    transform: rotate(45deg);
}

/* OBERER Pfeil - sauber parallel verschoben */
.section-arrow-up::before {
    box-shadow: .5rem -.5rem 0 0 #fff;
}
.section-arrow-up::after {
    box-shadow: -.5rem -.5rem 0 0 #fff;
}

/* Hover */
.section-arrow-up:hover::before {
	background: #da000d;
    box-shadow: .5rem -.5rem 0 0 #da000d;
}
.section-arrow-up:hover::after {
    background: #da000d;
    box-shadow: -.5rem -.5rem 0 0 #da000d;
}



.content-inner h1 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.scrollable-text {
    flex: 1;
    overflow: auto;
    padding-right: 10px;
    display: block;               /* NEU */
   
}
#home-inner {
	position: absolute;
	left: 2rem;
	top: calc(100vh - 27rem);
	width: 30%;
	height: 24rem;
}
#about-inner {
	position: absolute;
	left: calc(45% - 2rem);
	top: max( 12vh , calc(100vh - 42rem) );
	width: 55%;
	height: 39rem;
	max-height: calc(88vh - 3rem);
	text-align: justify;
}
#concerts-inner {
	position: absolute;
	left: 2rem;
	top: max( 8rem , calc(100vh - 40rem) );
	width: 55%;
	height: 37rem;
	max-height: calc(100vh - 11rem);
}	
#media-inner {
	position: absolute;
	left: calc(45% - 2rem);
	top: calc(100vh - 36rem);
	width: 55%;
	height: 33rem;
}
#discography-inner {
	position: absolute;
	left: 2rem;
	top: 8rem;
	width: 55%;
	height: calc(100vh - 12rem);
}
#contact-inner {
	position: absolute;
	left: 2rem;
	top: 20h;
	width: 55%;
	height: calc(78vh - 4rem);
}


/* Parallax für Sections */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 1;
}
#home.parallax-section .parallax-bg {
	background-image: url("../images/home.jpg");
}
#discography.parallax-section .parallax-bg {
	background-image: url("../images/disco.jpg");
}

/* Inhalt über dem Parallax-BG */
.parallax-section .content-inner {
    position: relative;
    z-index: 2;
}


/* Parallax-Separatoren */
.separator {
    position: relative;
    width: 100%;
    height: 40vh; /* Höhe des Separators */
    overflow: hidden;
    background: #000;
}

.separator {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

.separator .parallax-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0%;      /* Bild nach oben erweitern */
    height: 180%;   /* Bild höher als der Container */
    background-image: url("../images/separatorBg3.jpg");
    background-size: cover;
    background-position: center;
    will-change: transform;
}


/* Scrollbar-Styling (optional, nur WebKit) */
.scrollable-text::-webkit-scrollbar {
    width: 8px;
}
.scrollable-text::-webkit-scrollbar-track {
    background: #f0f0f0;
}
.scrollable-text::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}


.lang-switch {
    width: 100%;
    padding-left: calc(100% - 8rem);
}

.lang-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #1c2331;
    cursor: pointer;
    float: left;
    margin-left: 1rem;
    padding-top: .25rem;
    text-align: center;
    color: #fff;
    font-size: 0.75rem;     /* 12px */
    transition: background 0.3s ease;
    line-height: 1.2;
    
}

.lang-switch .lang-dot.active {
    opacity: 1;
    font-weight: bold;
    background: #da000d;
}


/* Sprachblöcke */
#aboutText {
    position: relative;
}

#aboutText > div, #fullBioTextInner > div {
	display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

#aboutText > div.active-lang, #fullBioTextInner > div.active-lang {
    display: block;
    opacity: 1;
    pointer-events: auto;
    position: relative;
}


/** ----- concerts  ------------------------------- **/


.event {
	float: left;
	width: calc(50% - 1.5rem);
	margin: 0 1.5rem .5rem 0;
	height: 12.5rem; 
}

.eventsH3 {
	float: left;
	width: 100%;
	margin-top: 2rem;
	border-top: 1px solid #999;
	padding-top: 1rem;
	margin-bottom: 2rem;
}

.dateD {
	font-family: Alegreya;
	font-weight: lighter;
	color: #da000d;
	font-size: 2.6rem;
	float: left;
	padding: 0 5px 0 0;
	line-height: 1.1;
}
.dateM {
	font-size: 1.1em;
	padding: 1rem 0 .4rem 0;
	color: #999;
}

/** ----- media  ---------------------------------- **/

#mediaImg {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 50%;
}

#mediaText h3 {
	float: left;
	width: 100%;
	margin-top: 2rem;
	border-top: 1px solid #999;
	padding-top: 1rem;
}
.mediaEl {
	width: 33%;
	display: inline-block;
	padding: 0 2rem 2rem 0;
	overflow: hidden;
	vertical-align: top;
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.23%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	overflow: hidden;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.thumb {
	float: left;
	padding: 10px 20px 10px 0;
	width: calc(25% - 10px);
	cursor: pointer;
}
.thumb a {
	padding: 0px;
}
.thumb img, .thumbr img {
	width: 100%;
}

#layer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.9);
	z-index: 2;
}
#stepDown {
	position: fixed;
	top: 48%;
	left: 10px;
}
#stepUp {
	position: fixed;
	top: 48%;
	right: 10px;
}
.fullImg {
	display: none;
	position: fixed;
	margin: auto;
	z-index: 10;
}
.fullImg img {
	max-width: 90vw;
	max-height: 90vh;
}
.imgTxt {
	text-align: center;
	padding-top: 10px;
	color: #fff;
}

.allInfoLink {
	float: left;
	width: 100%;
	padding-top: 1rem;
}

/** ----- discography  ---------------------------- **/

.discoEl {
	display: inline-block;
	width: 100%;
	margin-bottom: 1.5rem;
}
.discImg {
	float: left;
}
.discImg img {
	width: 25rem;
}
.discText {
	width: calc(100% - 25rem);
	padding-left: 2rem;
	float: right;
}
.discQuote {
	color: #983707;
}
.discQuoteSrc {
	padding: .2rem 0 .5rem 0;
	font-size: 1rem;
}

/** ----- contact  -------------------------------- **/

#contactImg {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	min-width: 528px;
	background: url("../images/contact_desktop.jpg") no-repeat top center; 
}
#contactImg:before {
	position: absolute;
	top: calc(25% - 5vw);
	left: 0;
	content: '';
	width: calc(50% - 7.5vh);
	height: calc(5vw);
	background-image: linear-gradient(6deg, rgb(243.9, 248.9, 252.9) 50%, rgba(0, 0, 0, 0) 50%);
}
#contactImg:after {
	position: absolute;
	top: 25%;
	left: calc(50% - 7.5vh);
	content: '';
	width: calc(7.5vh);
	height: 75%;
	background-image: linear-gradient(84deg, rgb(243.9, 248.9, 252.9) 50% , rgba(0, 0, 0, 0) 50%);
}
#contactContent {
	position: fixed;
	top: 25%;
	left: 0;
	width: calc(50% - 11.5vh - 4vw);
	height: 75%;
	background-color: #f4f9fd;
	padding: calc(2vh + 2vw);
}

#contactText {
	margin-top: calc(-4vh - 4vw);
	font-size: calc(7px + 0.3vh + 0.3vw);
}

#contactText h2 {
	font-size: calc(1.6vh + 1.6vw);
	font-weight: normal;
	color: #bb4867;
}
#contactText a {
	color: #bb4867;
}
.socMed {
	margin-right: 1.6rem;
}
.socMed img {
	width: 3rem;
}

.dmr img {
	width: calc(6vh + 6vw);
	padding-top: calc(0.3vh + 0.3vw);
	padding-bottom: calc(0.3vh + 0.3vw);
}

#bioDownLContact {
	display: inline-block;
	background-color: #da000d;
	padding: 5px 10px;
	border-radius: 5px;
	margin-bottom: 10px;
}
#contactTxtPicDl a {
	text-decoration: none;
	color: #ffffff;
}


/** ----- home ------------------------------------ **/

.homeInfo h3 {
	margin-bottom: 1rem;
}

.home-slider {
    position: relative;
    width: 100%;
    min-height: 90%;
}

.topic {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.topic.active, .topic.active-disc {
    display: block;
    opacity: 1;
}

.home-dots {
    text-align: center;
    margin: auto;
}

.home-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
    background: black;
    cursor: pointer;
    transition: background 0.3s ease;
}

.home-dots .dot.active, .home-dots .dot.active-disc {
    background: red;
}

#allConcerts {
	position: absolute;
	background-image: url("../images/separatorBg3.jpg");
    background-size: contain;
    width: 100%;
    padding-bottom: 1rem;
}
#allConcertsText {
	margin: 2rem;
	margin-top: 8rem;
	width: calc(100% - 4rem);
	min-height: calc(100vh - 12rem);
	display: block;
}
#allConcertsText .event {
	width: calc(33.3% - 1.5rem);
}
#allMedia {
	position: absolute;
	background-image: url("../images/separatorBg3.jpg");
    background-size: contain;
    width: 100%;
    padding-bottom: 1rem;
}
#allMediaText {
	margin: 2rem;
	margin-top: 8rem;
	width: calc(100% - 4rem);
	min-height: calc(100vh - 12rem);
}

#fullBio {
	position: absolute;
	background-image: url("../images/separatorBg3.jpg");
    background-size: contain;
    width: 100%;
    padding-bottom: 1rem;
}
#fullBioText {
	margin: 2rem;
	margin-top: 8rem;
	width: calc(100% - 4rem);
	min-height: calc(100vh - 12rem);
}
.bioCols {
	column-count: 2;
	column-gap: 3rem;
	text-align: justify;
}