* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/*############ ALLGEMEINES Anfang ############*/
:root {
    --schriftfarbe: #d8d8d8;
    --maxheaderhoehe: 31vh;
    --XX: 0 0 57px rgb(255, 0, 0);
}

    h1 {
        color: var(--schriftfarbe);
        text-align: center;
        font-size: 4vh;
        margin-bottom: 4vh;
    }

    h2 {
        color: var(--schriftfarbe);
        text-align: center;
        font-size: 2vh;
    }

    h3 {
        color: var(--schriftfarbe);
        text-align: center;
        font-size: 2vh;
        text-decoration-line: underline;
        padding-bottom: 1vh;
        padding-top: 2vh;
    }
    h4 {
        color: var(--schriftfarbe);
        text-align: center;
        font-size: 4vh;
        padding-bottom: 1vh;
        padding-top: 1vh;
    }


    p {
        color: var(--schriftfarbe);
        font-size: 2vh;
        line-height: 3.6vh;
        margin-bottom: 4vh;
    }
/*############ ALLGEMEINES Ende ############*/



/*############ BODY Anfang ############*/
body {
    z-index: 0;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(Bilder/Hintergrund_Weltall_bunt.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    animation: leuchten 12s linear infinite;
}

.logo-background {
    position: fixed;
    top: 46%;
    left: 53.4%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    /*animation: fadeInOut 12s infinite;*/
}

    .logo-background img{
        max-width: 536px;
        width: 80%;
        height: auto;
        opacity: 0.1;
        pointer-events: none;
        z-index: 1;
    }
/*############ BODY Ende ############*/



/*############ HEADER Anfang ############*/
.kopfbereich {
    position: sticky;
    top: 0;
    backdrop-filter: blur(4px) brightness(66%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
}


header {
    max-height: var(--maxheaderhoehe); 
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 2vh;
    z-index: 10;
    /*backdrop-filter: blur(0.7px);*/
    box-shadow: var(--X);
    transition: max-height 0.2s ease;
    }
    
    .header-schriftzug-feld {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1vh;
    }
    
    .header-schriftzug-feld img {
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: var(--schriftzughoehe, 28vh);
        pointer-events: none;
        transition: max-height 0.2s ease;
    }
        
        header.scrolled {
            max-height: calc(var(--maxheaderhoehe) / 2);
    }
    
        header.scrolled .header-schriftzug-feld img {
            max-height: calc(var(--schriftzughoehe, 28vh) / 2);
        }
    
    nav {
        width: 100%;
        z-index: 10;
    }
        
        nav ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            overflow: hidden;
        }
        
        .menueleiste {
            display: flex;
            justify-content: center;
            white-space: nowrap;
            gap: 3vw;
            background-color: rgba(0,0,0,85%);
            box-shadow: 0 0 2vh rgb(255, 255, 255);
        }
            
            .menueleiste a {
                padding-bottom: 0.75vh;
                padding-left: 0.75vh;
                padding-right: 0.75vh;
                display: flex;
                align-content: center;
                justify-content: center;
                text-decoration: none;
                font-family: Nippon, Verdana, Geneva, Tahoma, sans-serif;
                color: var(--schriftfarbe);
                font-size: 3vh;
                box-sizing:inherit;
                transition: transform 0.2s ease;
            }
                
                .menueleiste a.active {
                    color: #ffffff;
                    text-shadow:
                    -1px -1px 0 #989898,
                    1px -1px 0 black,
                    -1px  1px 0 black,
                    1px  1px 0 black;
                    background: radial-gradient(closest-side at 50%,rgba(255, 255,255, 1), transparent );
                }
                
                .menueleiste li a:not(.active):hover {
                    transform: scale(1.2);
                    background-image: linear-gradient(to bottom, rgba(0, 136, 255, 1) 25%, rgba(255, 255, 255, 255) 75%);
                    background-clip: text;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }    
/*############ HEADER Ende ############*/



/*############ MAIN Anfang ############*/
main {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    margin-top: 3vh;
    margin-bottom: 10vh;
    /*box-shadow: var(--XX);*/
} 
    
    .content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 4vh;
        width: 81vw;
        background: rgba(0, 0, 0, 0.55);
        border-radius: 20px;
        box-shadow: 0 0 4px rgb(0, 19, 255), inset 0 0 20px rgb(0, 19, 255);
        padding: 3vh;
    }
/*############ MAIN Ende ############*/



/*############ HOME Anfang ############*/
#ph-content-home {
    width: 64%; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15vh;
}

#ph-content-home p {
    text-align: center;
    font-style:italic;
}
/*############ HOME Ende ############*/



/*############ NEWS Anfang ############*/
#ph-content-news {
    width: 100%;
}

    #ph-content-news h3 {
        text-align: left;
    }
/*############ NEWS Ende ############*/



/*############ STORY Anfang ############*/
#ph-content-story {
    width: 100%;
}

#ph-content-story a {
    color: var(--schriftfarbe);
    font-style: italic;
}
#ph-content-story img {
    pointer-events: none;
    max-height: 70vh;
    max-width: 39vw;
}
.konzertplakat {
    display: flex;
    justify-content: center;
    margin-bottom: 4vh;
}
#ep-release {
    display: flex;
    justify-content: center;
}
/*############ STORY Ende ############*/



/*############ MEDIA Anfang ############*/
.media-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
    
    .media-links a {
        flex: 0 1 172px;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000000;
        border-radius: 14px;
        transition: transform 0.2s ease;
        text-decoration: none;
        border-style: solid;
        border-color: #dbdbdb;
    }
    
        .media-links a img {
            width: 78%;
            height: 78%;
            object-fit: contain;
            transition: transform 0.2s ease;
        }
            .media-links a:hover img {
              transform: scale(1.1);
            }
            
#BandcampLogo {
    width: 98%;
    height: 44%;
    object-fit: contain;
}
    
#AmazonLogo {
    width: 78%;
    height: 33%;
    object-fit: contain;
}
    
#DeezerLogo {
    width: 78%;
    height: 42%;
    object-fit: contain;
}
/*############## MEDIA Ende ##############*/



/*############## GALERIE Anfang ##############*/
#ph-content-galerie {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 33vh;
    grid-auto-flow: dense;
    grid-gap: 30px;
}

#ph-content-galerie .quer {
    grid-column: span 2;
}

#ph-content-galerie .hoch {
    grid-row: span 2;
}
#ph-content-galerie .quadrat {
    grid-row: span 2;
    grid-column: span 2;
}
#ph-content-galerie .klein {
    grid-row: span 1;
    grid-column: span 1;
}

#ph-content-galerie img {
    width: 100%;
    height: 100%;
    padding: 5px;
    box-shadow: 0 0 12px rgb(255, 255, 255);
    border-radius: 19px;
    background-color: rgba(0, 0, 0, 0.64);
    display: block;
    object-fit: cover;
    pointer-events: none;
}


/*############## GALERIE Ende ##############*/

/*############## MERCHANDISE Anfang ##############*/
#ph-content-merch {
    width: 100%;
    display: grid;
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    grid-gap: 30px;
}

.artikel {
    width: 100%;
    display: grid;
    grid-template-columns: 18% 18% auto;
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    grid-gap: 30px;
    box-shadow: 0 0 12px rgb(255, 255, 255);
    border-radius: 19px;
    padding: 10px;
}
#ph-content-merch h1 {
    margin-bottom: 0;
}
#ph-content-merch h2 {
    text-align: left;
    padding-top: 25px;
    padding-bottom: 10px;
}
.unterstrich {
    display: block;
    width: 90%;
    height: 4px;
    border-radius: 6px;
    background: linear-gradient(to right, var(--schriftfarbe) 0%, transparent 100%);
}

#ph-content-merch p {
    margin-bottom: 10px;
    text-align: right;
    padding-right: 36px;
    font-weight: bold;
    font-size: 2.5vh;
}

#ph-content-merch ul{
    list-style-type: '- ';
    padding-left: 15px;
    padding-top: 1vh;
}
#ph-content-merch li{
        color: var(--schriftfarbe);
        font-size: 2vh;
        line-height: 2vh;
        margin-bottom: 1vh;
}

#ph-content-merch img {
    width: 100%;
    height: 100%;
    padding: 5px;
    border-radius: 19px;
    display: block;
    object-fit: contain;
    pointer-events: auto;
    transition: transform 0.3s ease;
}
    #ph-content-merch img:hover {
        transform: scale(1.2);
    }

#ph-content-merch .mwst p{
    font-size: 12px;
}

#ph-content-merch .anleitung p {
    font-size: 2vh;
    text-align: left;
    font-weight: 1;
}
#ph-content-merch .adresse {
    text-decoration: underline;
}

/*############## MERCHANDISE Ende ##############*/


/*############ KONTAKT Anfang ############*/
#ph-content-kontakt {
    width: 100%;
    padding-bottom: 6vh;
}

.email-container {
  display: flex;
  flex-direction: column;
width: 100%;
  gap: 2vh;
}

.email-eintrag {
  display: flex;
  flex-wrap: wrap;
}

.abteilung, .adresse {
  width: 50%;
  box-sizing: border-box;
}

.abteilung {
  text-align: right;
  padding-right: 1vw;
  font-weight: bold;
color: var(--schriftfarbe);
}

.adresse {
text-align: left;
color: var(--schriftfarbe);
text-decoration: none;
overflow-wrap:anywhere;
}

.adresse:hover {
color: #ffffff;
}
/*############ KONTAKT Ende ############*/



/*############ IMPRESSUM Anfang ############*/
#ph-content-impressum {
    width: 100%;
}
#ph-content-impressum h1 {
    hyphens: auto;
    margin-bottom: 10px;
    font-size: 4vh;
}
#ph-content-impressum p {
    font-size: 1.5vh;
    line-height: 2.7vh;
    margin-bottom: 18px;
}

#ph-content-impressum li {
    color: var(--schriftfarbe);
    margin-left: 30px;
    margin-bottom: 10px;
    font-size: 1.5vh;
    line-height: 2.0vh;
}

#ph-content-impressum a {
    color: var(--schriftfarbe);
    font-style: italic;
}
/*############ IMPRESSUM Ende ############*/



/*############ FOOTER Anfang ############*/
footer {
    z-index: 100;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.footerbereich {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 0 2vh rgb(255, 255, 255);
    backdrop-filter: blur(4px) brightness(66%);
    background: rgba(0, 0, 0, 0.83);
}

#ph-content-footer {
box-shadow: 0 0 2vh rgb(255, 255, 255);
}
#ph-content-footer p {
    color: antiquewhite;
    margin: 0.5vh;
    display: inline-block;
    white-space: nowrap;
    animation: laufschrift 44s linear infinite;
    pointer-events: none;
    overflow: hidden;
}
.impressum-link {
    text-align: right;
    margin-bottom: 5px;
    margin-right: 5px;
}
.impressum-link a {
    color: var(--schriftfarbe);
    font-size: 12px;
}

/*############ FOOTER Ende ############*/


/*############ QUERIES Anfang ############*/
@font-face {
    font-family: "Nippon";
    src: url("Fonts/NipponTech.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@keyframes leuchten {
    0% {filter: brightness(25%);}
    50% {filter: brightness(100%);}
    100% {filter: brightness(25%);}
}

@keyframes fadeInOut {
  0%   { opacity: 1; }
  50%  { opacity: 0.1; }
  100% { opacity: 1; }
}

@keyframes laufschrift {
    0% {
        transform: translate(100%);
    }
    100% {
        transform: translate(-100%);
    }
}

.menue-button {
    display: none;
    font-size: 4vh;
    background: none;
    border: none;
    color: var(--schriftfarbe);
    font-family: Nippon, Verdana, Geneva, Tahoma, sans-serif;
    cursor: pointer;
    padding: 1vh 2vw;
    z-index: 20;
}

@media (max-width: 550px) {
    #ph-content-galerie {
        grid-template-columns: 1fr;
        grid-auto-rows: 40vw;
    }

    #ph-content-galerie .quer,
    #ph-content-galerie .quadrat,
    #ph-content-galerie .hoch,
    #ph-content-galerie .klein {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
  .abteilung,
  .adresse {
    width: 100%;       /* untereinander */
    text-align: left;  /* beides linksbündig für bessere Lesbarkeit */
    padding-right: 0;
  }

  .abteilung {
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 900px) {
    
    .kopfbereich {
        max-height: 21vh;
    }
    
    .menue-button-bereich {
        width: 100%;
        display: flex;
        justify-content: center;
        background-color: rgba(0,0,0,85%);
        box-shadow: 0 0 2vh rgb(255, 255, 255);
        z-index: 11;
    }
        
        .menue-button {
            display: block;
        }
    
    /* Navigation default verstecken */
    .menueleiste {
        display: none;
        flex-direction: column;
        background-color: rgba(0,0,0,0.85);
        width: 100%;
        padding: 2vh 0;
        margin: 0 auto;
        text-align: center;
        gap: 2vh;
    }

    /* Wenn aktiv geöffnet */
    .menueleiste.open {
        display: flex;
        width: 70%;
    }

    /* Menüpunkte etwas größer / fingerfreundlich */
    .menueleiste a {
        font-size: 3vh;
        padding: 1vh 0;
    }

        .menueleiste a.active {
        margin-left: 15vw;
        margin-right: 15vw;
        }
    
    /* Schriftzug verkleinern für Mobile */
    .header-schriftzug-feld img {
        max-height: 14vh;
    }

    header.scrolled .header-schriftzug-feld img {
        max-height: 8vh;
    }
}
