@import "navbar.css";
@import "video-background.css";
@import "AudioPlayer.css";
@import "fonts.css";

body, html {
    margin:0;
    padding:0;
}

.header {
    width: 100%

}

h2 {
    color: black;
    text-align: center;
    font-family: metafora;
    letter-spacing: 6px;
    font-size: 42pt;
    padding: 42px;
    margin: 0%;
}

h3 {
    color: black;
    text-align: center;
    font-family:  metropolis-regular;
    
    font-size: 20pt;
    padding: 42px;
    margin: 0%;
}

a {
    text-decoration: none;
}

.section h2 {
    color: white;
}

.section {
    background-image: url(../images/wavey-fingerprint.svg);
    background-repeat: repeat;
}

#video-section {
    padding-bottom: 42px;
}

#concert-list {
    border: 0;
    width: 90%;
    min-height: 500px;
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 40px;
}

#band-image {
    width: 100%;
}

.text {
    color: black;
    width:90%;
    max-width: 1180px;
    text-align: justify;
    margin:0 auto;
    padding-bottom: 40px;
    font-family:  metropolis-regular;
    font-size: larger;
    line-height: 1.6;
}

.text a {
    color: black;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text a:hover {
    color:#d68685;
}

.ul-text {
    color: black;
    width:90%;
    max-width: 1080px;
    text-align: justify;
    margin:0 auto;
    padding-bottom: 40px;
    font-family:  metropolis-regular;
    font-size: larger;
    line-height: 1.6;
    list-style-type: none;
    padding-left: 0; 
}


.contact {
    color: black;
    text-align: center;
    font-family:  metropolis-regular;
    font-size: larger;
    line-height: 1.6;
    padding-bottom: 40px;
}


#booking-email {
    color: black;
    transition: color 0.3s ease;
}

#booking-email:hover {
    color:#d68685;
}

#social-media-section {
    height: auto;
    padding-bottom: 20px;
    text-align: center;
}

#social-media-section a {
    text-decoration: none;
    color: white;
}

#social-media-section > a {
    display: inline-block;
    margin: 0 10px;
    font-family: metropolis-regular;
    font-size: 14px;
}

#video-frame {
    border: 0;
    overflow: hidden;
	width: 60%;
	/* Keep it the right aspect-ratio */
	aspect-ratio: 16/9;
    margin-left: 20%;
    margin-bottom: 60px;
}

@media only screen and (max-width: 599px) {
    #video-frame {
        width: 100%;
        margin-left: 0;
    }
}

.icon-stack {
 padding-top: 20px;
 padding-bottom: 32px;
}

.social-media-icon img {
    transition: filter 0.3s ease;
}

.social-media-icon:hover img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(18%) saturate(1044%) hue-rotate(313deg) brightness(94%) contrast(86%);
}

@media only screen and (max-width: 599px) {
    .social-media-icon img {
        height: 24px;
        width: 24px;
        margin: 8px;
    }
}

@media screen and (min-width: 600px) {
    .social-media-icon img {
        height: 48px;
        width: 48px;
        margin:16px;
    }
}


/* YouTube consent / 2-click solution (DSGVO) */
.youtube-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    color: #c9c9c9;
    padding: 40px 20px;
    text-align: center;
    font-family: metropolis-regular;
    font-size: 16px;
    min-height: 300px;
}

#hero-video-container .youtube-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 0;
    padding: 0;
    display: block;
}

.youtube-placeholder .overlay-logo {
    width: 350px;
}

.youtube-placeholder p {
    max-width: 500px;
    line-height: 1.6;
    color: #666;
}

/* Consent banner fixed at bottom */
#youtube-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    color: #c9c9c9;
    padding: 20px 30px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: metropolis-regular;
    font-size: 14px;
    flex-wrap: wrap;
    text-align: center;
}

#youtube-consent-banner p {
    margin: 0;
    line-height: 1.6;
}

#youtube-consent-banner a {
    color: #d68685;
    text-decoration: underline;
}

.consent-button {
    background-color: #d68685;
    color: white;
    border: none;
    padding: 12px 28px;
    font-family: metafora;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.consent-button:hover {
    background-color: #c47574;
}

/* Video frame when loaded via consent */
#video-section iframe {
    border: 0;
    overflow: hidden;
    width: 60%;
    aspect-ratio: 16/9;
    margin-left: 20%;
    margin-bottom: 60px;
}

@media only screen and (max-width: 599px) {
    #video-section iframe {
        width: 100%;
        margin-left: 0;
    }

    .youtube-placeholder .overlay-logo {
        width: 220px;
    }

    #youtube-consent-banner {
        flex-direction: column;
        padding: 16px 20px;
    }
}
