/* Globale Stile und Farben */
body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
h1, h2, h3, h4, h5, h6, .section-subtitle {
    font-family: 'Orbitron', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

:root {
    --primary-color: #79a948; /* Hellgrün */
    --tertiary-color: #244205; /* Dunkelgrün */
    --orange-color: #d35400; /* Helles Orange */
    --dark-orange-color: #873600; /* Dunkles Orange */
    --text-color: #e0e0e0;
    --dark-bg: #1a1a1a;
    --dark-bg-secondary: #2a2a2a;
    --title-color: #5fe25f;
    --header-height-desktop: 80px;
    --header-height-mobile: 70px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle.orange-title {
    color: var(--orange-color);
}

.header {
    background-color: var(--dark-bg) !important;
    border-bottom: 2px solid var(--tertiary-color);
    margin-bottom: 0;
    height: var(--header-height-desktop);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.header .container {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
}
.header .nav {
    flex-grow: 1;
}

.header .nav-link {
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header .nav-link:hover,
.header .nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin: 0;
    box-sizing: border-box;
}

#hero-main, .hero-section-artist, .hero-section-soundcloud, #impressum, #social-links {
    border-bottom: 2px solid var(--tertiary-color);
    min-height: 70vh;
}

#hero-main {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    height: calc(100vh - var(--header-height-desktop));
    background: url('img/main.webp') no-repeat center center / cover;
    padding-top: 0; 
}

#hero-main > .container {
    transform: translateY(-13vh);
}

#hero-main h2 {
    color: var(--title-color);
    font-size: 4.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--title-color), 2px 2px 4px rgba(0,0,0,0.5);
}

#hero-main .hero-genre-text {
    font-size: 1.25rem; 
    color: var(--text-color); 
    line-height: 1.5; 
    margin-top: 0.1rem; 
}

.hero-section-artist {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('img/artist3.webp') no-repeat center center / cover;
}

.hero-section-soundcloud {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('img/soundcloud.webp') no-repeat center center / cover;
}

/* Neuer Content Hub */
#content-hub {
    background-color: #0d0d0d;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.podcast-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    position: relative; 
    z-index: 1;
}

.content-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; 
    pointer-events: none; /* Macht den Container klick-durchlässig, wenn kein Panel aktiv ist */
}

.content-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    transform: translateX(100%); /* Standardposition rechts draußen */
    pointer-events: auto; /* Panels sind wieder klickbar */
}

#dmt-panel { transform: translateX(-100%); }
#gigs-panel { transform: translateY(100%); }

#content-hub.show-dmt #dmt-panel,
#content-hub.show-midtempo #midtempo-panel,
#content-hub.show-gigs #gigs-panel {
    transform: translate(0, 0);
}
#content-hub.show-dmt .content-slider-container,
#content-hub.show-midtempo .content-slider-container,
#content-hub.show-gigs .content-slider-container {
    pointer-events: auto; /* Container fängt Klicks ab, wenn ein Panel aktiv ist */
}


.content-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-content-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
    height: 100%;
    overflow-y: auto;
}

#dmt-panel::before { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/gigs.webp'); }
#midtempo-panel::before { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/midtempo.webp'); }
#gigs-panel::before { background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/gigs.webp'); }

/* Grid und Buttons */
.max-width-text { max-width: 800px; margin: 0 auto; font-size: 1.1rem; }
.gig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; justify-content: center; max-width: 900px; margin: 0 auto; }
.gig-item { background-color: rgba(0, 0, 0, 0.4); border: 1px solid var(--tertiary-color); border-radius: 8px; overflow: hidden; box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; display: flex; justify-content: center; align-items: center; position: relative; width: 100%; padding-top: 100%; height: 0; }
.gig-item:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); border-color: var(--primary-color); }
.gig-link-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-decoration: none; color: inherit; }
.gig-image { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 7px; transition: opacity 0.3s ease; }
.gig-link-image:hover .gig-image { opacity: 0.8; }
.gig-hidden { display: none !important; }
.gig-button-container { display: flex; justify-content: center; align-items: center; gap: 15px; width: 100%; margin-top: 1rem; }

.btn-primary.custom-btn { background-color: var(--tertiary-color); border-color: var(--tertiary-color); color: #fff; padding: 12px 30px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 0 0 rgba(0, 0, 0, 0); display: inline-block; }
.btn-primary.custom-btn:hover { background-color: var(--primary-color); border-color: var(--primary-color); transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); }
.btn-primary.custom-btn.btn-orange { background-color: var(--dark-orange-color); border-color: var(--dark-orange-color); }
.btn-primary.custom-btn.btn-orange:hover { background-color: var(--orange-color); border-color: var(--orange-color); }

/* Verbleibende Sektionen */
#social-links { border-bottom: 2px solid var(--tertiary-color); min-height: 35vh; background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('img/social.webp') no-repeat center center / cover; display: flex; flex-direction: column; justify-content: center; }
#impressum { background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('img/impressum.webp') no-repeat center center / cover; border-bottom: none; }
.social-icons-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-icon-box { display: flex; justify-content: center; align-items: center; width: 60px; height: 60px; background-color: var(--tertiary-color); border-radius: 8px; transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 0 0 rgba(0, 0, 0, 0); }
.social-icon-box:hover { transform: translateY(-5px); background-color: var(--primary-color); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); }
.social-icon-img { width: 50px; height: auto; max-height: 100%; max-width: 100%; filter: brightness(120%); transition: filter 0.3s ease; }
.social-icon-box:hover .social-icon-img { filter: brightness(100%); }

/* Footer und Popup */
.site-footer { background-color: var(--dark-bg) !important; border-top: 2px solid var(--tertiary-color); color: var(--text-color); font-size: 0.9rem; padding: 15px 0; text-align: center; height: 60px; }
.site-footer a { color: var(--primary-color); margin: 0 5px; transition: color 0.3s ease; }
.site-footer a:hover { color: var(--text-color); }
.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 1000; }
.popup-overlay.is-open { opacity: 1; visibility: visible; }
.popup-content { background-color: var(--dark-bg-secondary); color: var(--text-color); padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); max-width: 700px; width: 90%; position: relative; border-top: 4px solid var(--tertiary-color); border-bottom: 4px solid var(--tertiary-color); max-height: 90vh; overflow-y: auto; }