/*
Hier wird das gesamte <style> Tag aus dem Original-HTML hineinkopiert.
    Es wird das globale Inline-CSS entfernt und hier als saubere CSS-Datei bereitgestellt.
    (Der vollständige Code des originalen <style>-Blocks wird hier eingefügt.)
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #f0f0f0;
    line-height: 1.7;
    overflow-x: hidden;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
}

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

/* Header */
header {
    background: #000;
    color: #fff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stage-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, #111 0%, #000 100%);
    z-index: 1;
}

/* ... (Das gesamte restliche CSS aus dem Original-HTML-Code, das hier zu lang ist) ... */
/*
    Da der CSS-Code sehr lang ist, füge ich hier den Hinweis ein.
    In der tatsächlichen Implementierung MUSS der gesamte Inhalt des <style>-Blocks
    aus dem Original-HTML in diese Datei kopiert werden.
*/
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #0a0a0a;
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
            background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
        }

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

        /* Header */
        header {
            background: #000;
            color: #fff;
            padding: 120px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .stage-floor {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: linear-gradient(to top, #111 0%, #000 100%);
            z-index: 1;
        }

        .spotlight-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .spotlight {
            position: absolute;
            top: -100px;
            width: 300px;
            height: 200px;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
            border-radius: 50%;
            filter: blur(10px);
            opacity: 0.7;
            animation: spotlightMove 8s infinite alternate ease-in-out;
        }

        .spotlight:nth-child(1) {
            left: 20%;
            animation-delay: 0s;
        }

        .spotlight:nth-child(2) {
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 2s;
        }

        .spotlight:nth-child(3) {
            right: 20%;
            animation-delay: 4s;
        }

        @keyframes spotlightMove {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(20px) scale(1.1);
            }
        }

        .logo-container {
            position: relative;
            z-index: 2;
        }

        .logo {
            font-size: 5rem;
            font-weight: 800;
            letter-spacing: 4px;
            margin-bottom: 15px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #fff 0%, #ccc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            animation: logoGlow 3s ease-in-out infinite alternate;
        }

        @keyframes logoGlow {
            0% {
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
            }
            100% {
                text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.1);
            }
        }

        .address {
            font-size: 1.3rem;
            letter-spacing: 3px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            color: #aaa;
            font-weight: 300;
        }

        /* Navigation */
        nav {
            background-color: rgba(20, 20, 20, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #333;
        }

        .nav-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav-link {
            padding: 20px 25px;
            text-decoration: none;
            color: #ddd;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            flex: 1;
            text-align: center;
            min-width: 120px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link:hover::after {
            width: 80%;
        }

        /* Sektionen */
        section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            margin: 20px auto;
            border-radius: 2px;
        }

        /* Service Cards */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: linear-gradient(145deg, #1a1a1a, #222);
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #fff, #aaa);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card h3 {
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: #fff;
        }

        .service-card p {
            color: #bbb;
        }

        /* Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            justify-items: center;
        }

        .team-member {
            text-align: center;
            max-width: 300px;
            position: relative;
        }

        .member-image {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background-color: #333;
            margin: 0 auto 30px;
            overflow: hidden;
            border: 5px solid #333;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            transition: all 0.4s ease;
            position: relative;
        }

        .member-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .member-image:hover {
            transform: scale(1.05);
            border-color: #555;
        }

        .member-image:hover::after {
            box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(30%);
            transition: filter 0.4s ease;
        }

        .member-image:hover img {
            filter: grayscale(0%);
        }

        .member-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #fff;
        }

        .member-role {
            font-weight: bold;
            margin-bottom: 15px;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .member-link {
            color: #ddd;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .member-link:hover {
            color: #fff;
        }

        /* References */
        .references {
            background: linear-gradient(145deg, #1a1a1a, #222);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
        }

        .reference-item {
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid #333;
            position: relative;
        }

        .reference-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .reference-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .reference-title i {
            color: #aaa;
        }

        .reference-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #bbb;
            padding-left: 30px;
            position: relative;
        }

        .reference-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: #444;
            font-family: Georgia, serif;
        }

        /* Audioplayer */
        .audio-player {
            background: linear-gradient(145deg, #1a1a1a, #222);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
            border: 1px solid #333;
        }

        .track-list {
            margin-top: 40px;
            text-align: left;
        }

        .track {
            padding: 20px;
            border-bottom: 1px solid #333;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .track:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .track.active {
            background-color: rgba(255, 255, 255, 0.1);
            font-weight: bold;
            border-left: 4px solid #fff;
        }

        .track i {
            color: #aaa;
            font-size: 1.2rem;
        }

        audio {
            width: 100%;
            margin-top: 30px;
            filter: invert(1) hue-rotate(180deg);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            color: #fff;
            padding: 60px 0 30px;
            border-top: 1px solid #333;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-info, .footer-links {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
        }

        .footer-info h3, .footer-links h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-info p {
            color: #aaa;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-link {
            color: #aaa;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-link:hover {
            color: #fff;
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #666;
            padding-top: 30px;
            border-top: 1px solid #333;
        }

        /* Partners */
        .partners-section-minimal {
            padding: 100px 2rem;
            background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
            text-align: center;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }

        .partners-title-minimal {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 0.5rem;
            margin-bottom: 5rem;
            color: #fff;
            text-transform: uppercase;
            position: relative;
        }

        .partners-title-minimal::after {
            content: '';
            display: block;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            margin: 20px auto;
        }

        .partners-grid-minimal {
            display: flex;
            justify-content: center;
            align-items: stretch;
            flex-wrap: wrap;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .partner-item-minimal {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
            border-radius: 15px;
            background: linear-gradient(145deg, #1a1a1a, #222);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            cursor: pointer;
            width: 200px;
            height: 200px;
            justify-content: center;
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
        }

        .partner-item-minimal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .partner-item-minimal:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border-color: #555;
        }

        .partner-item-minimal:hover::before {
            opacity: 1;
        }

        .partner-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .partner-icon svg {
            color: #fff;
            transition: all 0.4s ease;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
        }

        .partner-item-minimal:hover .partner-icon svg {
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        .partner-name-minimal {
            font-size: 1rem;
            font-weight: 500;
            color: #fff;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .partner-item-minimal:hover .partner-name-minimal {
            color: #fff;
            font-weight: 600;
        }

        .rohbau-icon rect {
            fill: none;
            stroke: currentColor;
            stroke-width: 3;
        }

        .rohbau-icon text {
            fill: currentColor;
            font-size: 24px;
            font-weight: bold;
            text-anchor: middle;
            dominant-baseline: middle;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: linear-gradient(145deg, #1a1a1a, #222);
            margin: 5% auto;
            padding: 40px;
            border-radius: 15px;
            width: 90%;
            max-width: 700px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            position: relative;
            animation: modalFadeIn 0.4s;
            border: 1px solid #333;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            top: 20px;
            right: 25px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #fff;
        }

        .modal-title {
            margin-bottom: 25px;
            font-size: 2rem;
            color: #fff;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
        }

        .modal-content h3 {
            color: #fff;
            margin: 20px 0 10px;
        }

        .modal-content p, .modal-content a {
            color: #bbb;
            line-height: 1.7;
        }

        .modal-content a {
            transition: color 0.3s ease;
        }

        .modal-content a:hover {
            color: #fff;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .impressum-link {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        .impressum-link a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .impressum-link a:hover {
            color: #aaa;
        }

        /* Mobile Optimierungen */
        @media (max-width: 768px) {
            header {
                padding: 100px 0 80px;
            }
            
            .logo {
                font-size: 3.5rem;
                letter-spacing: 3px;
            }
            
            .address {
                font-size: 1.1rem;
                letter-spacing: 2px;
            }
            
            .nav-container {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .nav-link {
                padding: 15px 10px;
                font-size: 0.8rem;
                min-width: 100px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .member-image {
                width: 200px;
                height: 200px;
            }
            
            .references {
                padding: 30px 20px;
            }
            
            .reference-item {
                margin-bottom: 30px;
                padding-bottom: 30px;
            }
            
            .reference-title {
                font-size: 1.3rem;
            }
            
            .reference-text {
                font-size: 1rem;
                padding-left: 20px;
            }
            
            .audio-player {
                padding: 30px 20px;
            }
            
            .track {
                padding: 15px;
            }
            
            .partners-section-minimal {
                padding: 80px 1rem;
            }
            
            .partners-title-minimal {
                font-size: 1.5rem;
                letter-spacing: 0.3rem;
                margin-bottom: 3rem;
            }
            
            .partners-grid-minimal {
                gap: 1.5rem;
            }
            
            .partner-item-minimal {
                width: 160px;
                height: 160px;
                padding: 1.5rem;
            }
            
            .partner-icon {
                width: 60px;
                height: 60px;
            }
            
            .modal-content {
                margin: 10% auto;
                width: 95%;
                padding: 30px 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .spotlight {
                width: 200px;
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 80px 0 60px;
            }
            
            .logo {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }
            
            .address {
                font-size: 1rem;
                letter-spacing: 1px;
                margin-bottom: 20px;
            }
            
            .nav-container {
                flex-direction: column;
            }
            
            .nav-link {
                padding: 12px;
                font-size: 0.85rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-card {
                padding: 25px 15px;
            }
            
            .service-card h3 {
                font-size: 1.3rem;
            }
            
            .member-image {
                width: 180px;
                height: 180px;
            }
            
            .member-name {
                font-size: 1.3rem;
            }
            
            .partners-section-minimal {
                padding: 60px 1rem;
            }
            
            .partners-grid-minimal {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .partner-item-minimal {
                width: 100%;
                max-width: 250px;
                height: auto;
                min-height: 150px;
                flex-direction: row;
                justify-content: flex-start;
                padding: 1.5rem;
            }
            
            .partner-icon {
                display: none;
            }
            
            .partner-name-minimal {
                text-align: left;
                width: 100%;
            }
            
            .spotlight {
                width: 150px;
                height: 120px;
            }
            
            .footer-info, .footer-links {
                min-width: 100%;
            }
            
            .footer-info p, .footer-link {
                font-size: 0.9rem;
            }
        }
