/* TODO ENTFERNE */
:root {
    --bg-body: #ffffff;
    --bg-section: #f9f9f9;
    --bg-card: #ffffff;
    --text-main: #1a1a1a;
    /* Dies ist fast Schwarz */
    --text-muted: #666666;
    --accent-primary: #2d3436;
    /* Dark Slate */
    --accent-secondary: #636e72;
    /* Grey */
    --border-color: #e0e0e0;
    --font-heading: 'Italiana', serif;
    --font-body: 'Quicksand', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-primary);
    color: #ffffff;
    margin-top: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-btn-small {
    padding: 8px 20px;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary) !important;
    border-radius: 4px;
    font-weight: 500;
}

.cta-btn-small:hover {
    background: var(--accent-primary);
    color: #ffffff !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    /* Angepasst für Konsistenz */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
}

.logo img {
    max-height: 40px;
    /* Reduced size */
    width: auto;
    display: block;
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Bold text */
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding-bottom: 5px;

    /* NEU: Flexbox verwenden, um den Inhalt zu zentrieren und den Strich darunter zu steuern */
    display: inline-flex;
    /* Wichtig: Nur so breit wie der Inhalt */
    align-items: center;
    /* Vertikal zentrieren */
    justify-content: center;
    /* Horizontal zentrieren */
}

.nav-links a::after {
    content: '';
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    /* Strich beginnt links */
    background-color: var(--text-main);

    /* NEU: Initial 0% Breite (von links nach rechts wachsend) */
    width: 0%;

    /* NEU: Übergang für die Breite */
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-muted);
}

.nav-links a:hover::after {
    /* NEU: Beim Hovern auf 100% Breite skalieren */
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    /* Hinzugefügt */
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
    transform-origin: 1px;
    /* Hinzugefügt für Rotation */
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f0f0f0;
    /* Fallback */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(100%);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.prev-slide,
.next-slide {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0 10px;
}

.prev-slide:hover,
.next-slide:hover {
    color: #ffffff;
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ffffff;
}

.hero-bg img.active {
    transform: translateX(0);
    z-index: 1;
}

.hero-bg img.exit {
    transform: translateX(-100%);
    z-index: 0;
}

.hero-bg img.no-transition {
    transition: none !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 6rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: none;
}

.hero-content .cta-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    background-color: var(--bg-body);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}


/* Genre Slider Section */
.genres {
    background-color: var(--bg-section);
    text-align: center;
}

.genre-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.genre-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.genre-slide.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.genre-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.genre-slide h3 {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.genre-slide p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

.genre-prev,
.genre-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--accent-primary);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
    z-index: 10;
}

.genre-prev:hover,
.genre-next:hover {
    color: var(--text-main);
    transform: translateY(-50%) scale(1.1);
}

.genre-prev {
    left: 10px;
}

.genre-next {
    right: 10px;
}

.genre-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* Reuse existing dot styles but ensure they work here */
.genre-dots .dot {
    background-color: var(--border-color);
}

.genre-dots .dot.active {
    background-color: var(--accent-primary);
}


/* Members Section */
.members {
    background-color: var(--bg-section);
}

.members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Regeln für < 900px sind jetzt im zusammengefassten Block */

@media (max-width: 600px) {
    .member-card {
        width: 100%;
    }
}

.member-card {
    width: calc((100% - 80px) / 3);
    background: var(--bg-card);
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-img {
    width: 100%;
    height: 350px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    position: relative;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.member-img img.active {
    opacity: 1;
    z-index: 1;
}

.member-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    font-size: 1.2rem;
    transition: background 0.3s;
    opacity: 0;
}

.member-img:hover .member-slider-btn {
    opacity: 1;
}

.member-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.member-slider-prev {
    left: 10px;
}

.member-slider-next {
    right: 10px;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.member-info .role {
    display: block;
    color: var(--accent-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Music Section */
.music {
    background-color: var(--bg-body);
}

.audio-list {
    max-width: 800px;
    margin: 0 auto;
}

.track {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.track:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-sm);
}

.track.active-track {
    border-color: var(--accent-primary);
    background-color: #f8f9fa;
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
    padding: 24px;
}

.track-main {
    display: flex;
    align-items: center;
    width: 100%;
}

.track-controls {
    display: none;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.track.active-track .track-controls {
    display: flex;
}

.play-btn {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    margin-right: 20px;
    transition: var(--transition);
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.05);
    background: #000000;
}

@media (max-width: 768px) {
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

.track-info {
    flex: 0 1 200px;
    margin-right: 20px;
    flex-shrink: 0;
}

.track-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- PROGRESS BAR VISUALIZATION (REVERTED) --- */

/* Removed: .waveform, .waveform-bar, .waveform-progress */

/* Timeline Controls */
.timeline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    /* Nimmt den verfügbaren Platz im track-main ein */
}

.current-time,
.total-time {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 40px;
    text-align: center;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.progress-bar:hover {
    height: 8px;
}

.progress-bar:hover .progress-thumb {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
    pointer-events: none;
}

.progress-thumb {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--accent-primary);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    transition: all 0.2s ease;
    cursor: grab;
    pointer-events: none;
}

.progress-thumb:active {
    cursor: grabbing;
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-section);
}

.gallery-slider-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    /* Hinzugefügt für bessere Kontrolle */
    margin: 0 auto 30px;
    min-height: 300px;
}

.gallery-page {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gallery-page.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.gallery-grid {
    display: grid;
    /* Zu Grid geändert für Flexibilität */
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspektverhältnis */
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.gallery-prev,
.gallery-next {
    background: var(--accent-primary);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #000000;
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    gap: 12px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background-color: var(--accent-primary);
    transform: scale(1.2);
}

.gallery-dot:hover {
    background-color: var(--accent-secondary);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.close-btn:hover {
    opacity: 1;
}

/* Video Section */
.video-section {
    background-color: var(--bg-body);
}

.video-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.video-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-slide.active {
    display: flex;
    opacity: 1;
}

.video-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000000;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.video-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.video-prev,
.video-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #ffffff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-prev:hover,
.video-next:hover {
    background: var(--accent-primary);
}

.video-prev {
    left: 20px;
}

.video-next {
    right: 20px;
}

.video-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.video-dots .dot {
    width: 12px;
    height: 12px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.video-dots .dot.active {
    background-color: var(--accent-primary);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    background-color: var(--bg-body);
    position: relative;
}

.contact .container {
    max-width: 600px;
}

.booking-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: grid;
    /* Hinzugefügt */
    grid-template-columns: 1fr 1fr;
    /* Hinzugefügt */
    gap: 20px;
    /* Hinzugefügt */
}

.form-group {
    margin-bottom: 0;
    /* Angepasst */
}

.form-group.full-width {
    grid-column: 1 / -1;
    /* Hinzugefügt */
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    /* Angepasst */
    font-weight: 700;
    color: var(--accent-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    /* Angepasst */
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    background: #ffffff;
    border-color: #b2bec3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(45, 52, 54, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Date Input Styling korrigiert, um kürzere Version zu verwenden */
.form-group input[type="date"] {
    cursor: pointer;
    background: #f8f9fa;
    color: var(--text-main);
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0.4);
    transition: filter 0.3s ease;
}

.form-group input[type="date"]:hover::-webkit-calendar-picker-indicator {
    filter: brightness(0);
}

/* Placeholder styling when empty */
.form-group input[type="date"]:invalid {
    color: var(--text-muted);
}

.full-width {
    width: 100%;
}

.cta-btn.full-width {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    /* Hinzugefügt */
}

/* Footer */
footer {
    padding: 40px 0;
    /* Angepasst */
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.socials {
    margin-bottom: 30px;
}

.socials a {
    margin: 0 15px;
    font-size: 1.2rem;
    /* Angepasst */
    color: var(--text-muted);
    transition: var(--transition);
}

.socials a:hover {
    color: var(--accent-primary);
}

.legal {
    margin-bottom: 20px;
}

.legal a {
    margin: 0 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* =========================== */
/* RESPONSIVE NAVIGATION & LAYOUTS (ALLE < 900px) */
/* =========================== */

/* =========================== */
/* RESPONSIVE NAVIGATION & LAYOUTS (ALLE < 900px) */
/* =========================== */

@media (max-width: 900px) {

    .navbar {
        padding: 15px 0;
    }

    .navbar .container {
        padding: 0 20px;
    }

    /* --------------------------
     * 1. Hamburger Icon Basis
     * -------------------------- */
    .hamburger {
        cursor: pointer;
        z-index: 20;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        transition: transform 0.3s ease-in-out;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-main);
        /* Schwarz */
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
        transform-origin: left;
    }

    /* --------------------------
     * 2. Hamburger Icon: Toggle-Zustand (von JS)
     * -------------------------- */
    .hamburger.toggle .line1 {
        transform: rotate(45deg) translate(0px, 0px);
    }

    .hamburger.toggle .line2 {
        opacity: 0;
        transform: translateX(10px);
    }

    .hamburger.toggle .line3 {
        transform: rotate(-45deg) translate(0px, 0px);
    }

    /* --------------------------
     * 3. Navigations-Links (Menü-Container)
     * -------------------------- */
    .nav-links {
        position: fixed;
        right: 0;
        top: 71px;
        width: 45%;
        height: auto;
        padding: 10px;
        padding-top: 50px;
        padding-bottom: 50px;
        background-color: var(--bg-body);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 999;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        border-left: 1px solid var(--border-color);
        overflow-y: auto;
    }

    /* Zustand, wenn JS "active" hinzufügt */
    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        opacity: 0;
        /* Wichtig für die Start-Animation */
        margin: 10px;
        width: 100%;
        text-align: center;
        /* NEU: Startpunkt der Animation (Rechts außerhalb der finalen Position) */
        transform: translateX(50px);
    }

    .nav-links li a {
        display: block;
        padding: 2px 0;
        /* NEU: Schriftgröße reduziert */
        font-size: 1.1rem;
        color: var(--text-main) !important;
    }

    .nav-links li a.cta-btn-small {
        border-color: var(--accent-primary);
        color: var(--accent-primary) !important;
        background: transparent;
    }

    .nav-links li a.cta-btn-small:hover {
        background: var(--accent-primary);
        color: #ffffff !important;
    }

    /* NEUE REGEL FÜR DIE ANIMATION: Wird von JS gesetzt, um die Animation zu starten */
    .nav-links li.fade {
        /* Nötig, um die Animation zu starten, da wir transform und opacity im JS setzen */
        /* Die @keyframes Definition macht die eigentliche Arbeit */
    }

    /* --------------------------
     * 4. Layout Anpassungen (RESPONSIVE HEADINGS & ABOUT)
     * -------------------------- */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    /* ABOUT */
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    /* MEMBERS */
    .member-card {
        width: calc((100% - 40px) / 2);
    }
}


/* HEADINGS RESPONSIVE */
/* Dieser Block wurde in den 900px-Block verschoben und ist jetzt leer */

/* ABOUT RESPONSIVE */
/* Dieser Block wurde in den 900px-Block verschoben und ist jetzt leer */

@media (max-width: 700px) {

    .track {
        padding: 15px;
    }

    .track-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* KORREKTUREN FÜR MUSIC TRACKS AUF MOBILE */
    .track-info {
        flex: 1 100%;
        /* Nimmt jetzt volle Breite ein */
        margin-right: 0;
    }

    .timeline {
        /* Bleibt in einer Reihe */
        flex-direction: row;
        gap: 10px;
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
    }

    .current-time,
    .total-time {
        min-width: 35px;
    }

    /* MEMBERS */
    .member-card {
        width: 100%;
    }

    .member-img {
        height: 260px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }

    .booking-form {
        padding: 25px;
        grid-template-columns: 1fr;
    }
}

/* =========================== */
/* ANIMATIONEN */
/* =========================== */

/* Animation für das nacheinander Einschweben der Links */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}