      /* rajdhani-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 400;
  src: url('font/rajdhani-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* rajdhani-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 700;
  src: url('font/rajdhani-v16-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


        /* === HIER DEN EXPORTIERTEN CSS-CODE EINFÜGEN === */
        



        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #000000;
            color: #fff;
            overflow: auto;
            position: relative;
                  font-family: 'Rajdhani',Arial, sans-serif;
        }

        a{color: rgb(0, 194, 254);}



/* Layer Patterns: spiral, spiral, organic */
/* Color Scheme: psychedelic */
/* Complexity: 8 */


        /* Navigation Styles */
        .navigation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 1000;
            padding: 0 20px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .nav-logo {
            font-size: 1.8em;
            font-weight: bold;
            background: linear-gradient(45deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            
        }

        .nav-menu a:hover {
            background: #8f7d37;
            color: #000;
            transform: translateY(-2px);

        }

        /* Mobile Navigation */
        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
            background: #8f7d37;
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
            background: #8f7d37;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #8f7d37;
            border: none;
            border-radius: 50%;
            color: #000;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
        }

        /* Optional: Info Text (kann entfernt werden) */
        .info {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 12px;
            z-index: 10;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .info a {
            color: #ff00ff;
            text-decoration: none;
        }

        /* Content Styles */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
            padding-top: 90px; /* Platz für fixe Navigation */
        }

        .content-section {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            margin: 20px 0;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            scroll-margin-top: 90px; /* Für smooth scroll mit fixer Navigation */
        }

        /* Header */
        .header {
            text-align: center;
            padding: 50px 0;
            background: linear-gradient(45deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
            backdrop-filter: blur(20px);
            border-radius: 20px;
            margin-bottom: 30px;
            
            background: url(img/background_oben.jpg);
            background-size: cover;
            
        
        }

       

        .tagline {
            font-size: 1.2em;
            color: #fff;
            opacity: 0.9;
        }

        /* Section Headers */
        h2,h4 {
            font-size: 2.5em;
            margin-bottom: 20px;
            background: #8f7d37;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
        }
        h4{
             font-size: 1.5em;
        }

        /* Live Termine */
        .live-termine {
            display: grid;
            gap: 15px;
        }

        .termin {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #ff00ff;
        }

        .add-termin {
            background: linear-gradient(45deg, #ff00ff, #00ffff);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1em;
            margin-top: 15px;
            transition: transform 0.3s ease;
        }

        .add-termin:hover {
            transform: scale(1.05);
        }

        /* Über Mandala */
      .about-text {
  line-height: 1.14;
  font-size: 1.1em;
  text-align: initial;
}
        .about-text p{
           margin-top:.8em;
        }
        /* Besetzung */
        .besetzung {
            text-align: center;
        }

        .band-photo {
            width: 100%;
            max-width: 600px;
            height: 300px;
            background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5em;
            color: #000;
            font-weight: bold;
            background: url(../img/band.jpg);
            background-size: cover;
        }

        .musicians {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .musician {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }

        .musician-photo {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #ff00ff, #00ffff);
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #000;
        }
        .musician-photo.one {
            background: url(../img/Didi.jpg);
            background-size: cover;
            
        }
        .musician-photo.two {
            background: url(../img/Highner.jpg);
            background-size: cover;
            
        }
        .musician-photo.three {
            background: url(../img/Michael.jpg);
            background-size: cover;
            
        }
        .musician-photo.four {
            background: url(../img/Uli.jpg);
            background-size: cover;
            
        }
       


        /* Pressetexte */
        .press-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .press-link {
            background: linear-gradient(45deg, #ff00ff, #00ffff);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 10px;
            transition: transform 0.3s ease;
            font-weight: bold;
        }

        .press-link:hover {
            transform: scale(1.05);
        }

        /* Kontakt */
        .contact-info {
            text-align: center;
            font-size: 1.2em;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #00ffff;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
                gap: 20px;
            }

            .nav-menu.active {
                left: 0;
            }

            .header {
  position: relative;
  text-align: center;
  padding: 0;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  height: 22vh;
  min-height: 272px;
}

            .band-photo{
                height: 210px;

            }
            
            .nav-menu a {
                font-size: 1.2em;
                padding: 35px 30px;
                width: 80%;
                text-align: center;
               line-height: 2;
            }

            .nav-toggle {
                display: flex;
            }

            .logo {
                font-size: 2.5em;
            }

            .tagline {
                font-size: 1em;
            }

            h2 {
                font-size: 2em;
            }

            .content-section {
                padding: 20px;
                margin: 15px 0;
            }

            .musicians {
                grid-template-columns: 1fr;
            }

            .press-links {
                flex-direction: column;
                align-items: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }

            .scroll-to-top {
                bottom: 100px;
            }

            .info {
                display: none;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }