/* ===== GLOBAL STYLES ===== */
        :root {
            --primary-color: #0a0a0a;
            --secondary-color: #f5f5f7;
            --accent-color: #1d1d1f;
            --highlight-color: #06c;
            --text-color: #1d1d1f;
            --light-text: #86868b;
            --transition: all 0.3s ease;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 8rem;
            --border-radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #fff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: var(--spacing-sm);
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            line-height: 1.2;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            line-height: 1.3;
        }

        p, li {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            margin-bottom: var(--spacing-sm);
            color: var(--light-text);
        }

        a {
            color: var(--highlight-color);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            opacity: 0.8;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        .section {
            padding: var(--spacing-lg) 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }

        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: var(--spacing-sm);
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background-color: var(--highlight-color);
            border-radius: 3px;
        }

        .btn {
            display: inline-block;
            background-color: var(--highlight-color);
            color: white;
            font-weight: 500;
            padding: 12px 30px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            text-align: center;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
            opacity: 0.95;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--highlight-color);
            border: 1px solid var(--highlight-color);
        }

        .btn-secondary:hover {
            background-color: var(--highlight-color);
            color: white;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            from { transform: translateX(-30px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .animate-on-scroll {
            opacity: 0;
            transition: var(--transition);
            transform: translateY(30px);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== HEADER STYLES ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            transition: var(--transition);
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        header.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--primary-color);
            display: flex;
            align-items: center;   /* vertikal zentrieren */
            justify-content: center; /* horizontal zentrieren */
            gap: 8px; /* Abstand zwischen Bild und Text */
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            margin: 5px auto;
            background-color: var(--text-color);
            transition: var(--transition);
        }

        .nav-list {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: var(--spacing-md);
        }

        .nav-link {
            color: var(--text-color);
            font-size: 1rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--highlight-color);
            transition: var(--transition);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--highlight-color);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 60px;
            background: linear-gradient(to bottom, #fff, var(--secondary-color));
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 140%;
            height: 200%;
            background: radial-gradient(circle, rgba(6, 204, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
            transform: rotate(-12deg);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            animation: fadeIn 1s ease-out forwards;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            margin-bottom: var(--spacing-sm);
        }

        .hero p {
            font-size: clamp(1.1rem, 1.5vw, 1.5rem);
            margin-bottom: var(--spacing-md);
            color: var(--light-text);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-actions {
            display: flex;
            gap: var(--spacing-sm);
            justify-content: center;
            margin-top: var(--spacing-md);
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 6rem 0; /* statt 100vh */
            margin: 0;
        }


        .about-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-lg);
        }

        .about-text {
            animation: slideIn 0.8s ease-out forwards;
            max-width: 800px;
            margin: 0;
            padding: 0;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-md);
            justify-content: center;
            text-align: center;
        }


        /* ===== SERVICES SECTION ====== */
        .services {
            background-color: var(--secondary-color);
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: var(--spacing-md);
            text-align: center;
        }

        .service-card {
            background-color: #fff;
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .service-icon {
            margin-bottom: var(--spacing-sm);
            font-size: 2.5rem;
            color: var(--highlight-color);
        }

        .service-title {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        /* ===== ARTISTS SECTION ===== */
        .artists {
            background-color: #fff;
        }

        .artists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: var(--spacing-md);
        }

        .artist-card {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }

        .artist-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .artist-image {
            aspect-ratio: 1 / 1;
            width: 100%;
            object-fit: cover;
        }

        .artist-info {
            padding: var(--spacing-sm);
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            color: white;
            transform: translateY(0);
            transition: var(--transition);
        }

        .artist-card:hover .artist-info {
            transform: translateY(-5px);
        }

        .artist-name {
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
        }

        .artist-genre {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* ===== RELEASES SECTION ===== */
        .releases {
            background-color: var(--secondary-color);
            position: relative;
        }

        .releases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: var(--spacing-md);
        }

        .release-card {
            background-color: #fff;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .release-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .release-image {
            aspect-ratio: 1 / 1;
            width: 100%;
            object-fit: cover;
        }

        .release-info {
            padding: var(--spacing-sm);
        }

        .release-title {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .release-artist {
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
            color: var(--light-text);
        }

        .release-date {
            font-size: 0.8rem;
            color: var(--light-text);
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            background-color: #fff;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-lg);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: var(--spacing-sm);
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--highlight-color);
        }

        .contact-form {
            display: grid;
            gap: var(--spacing-sm);
        }

        .form-group {
            margin-bottom: var(--spacing-sm);
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            font-size: 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--highlight-color);
            box-shadow: 0 0 0 2px rgba(6, 204, 255, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #38383c;
            color: #86868b;
            font-size: 0.9rem;
        }

        .demo-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: var(--highlight-color);
            color: white;
            font-weight: 500;
            padding: 12px 24px;
            border-radius: 30px;
            transition: var(--transition);
            margin-top: var(--spacing-sm);
        }

        .demo-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(6, 204, 255, 0.2);
            background-color: #005bb5;
        }

        .demo-button svg {
            transition: var(--transition);
        }

        .demo-button:hover svg {
            transform: translateX(3px);
        }

        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 1024px) {
            :root {
                --spacing-lg: 3rem;
                --spacing-xl: 6rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }
        }

        @media (max-width: 768px) {
            :root {
                --spacing-md: 1.5rem;
                --spacing-lg: 2.5rem;
            }

            .nav-toggle {
                display: block;
            }

            .nav-list {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                max-width: 400px;
                background-color: white;
                flex-direction: column;
                justify-content: center;
                gap: var(--spacing-md);
                padding: var(--spacing-lg);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
                transition: right 0.4s ease;
                z-index: 1001;
            }

            .nav-list.active {
                right: 0;
            }

            .nav-item {
                margin: 0;
            }

            .nav-link {
                font-size: 1.2rem;
                display: block;
                padding: var(--spacing-sm) 0;
            }

            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }

            .overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .hero {
                padding-top: 80px;
                height: auto;
                min-height: 100vh;
            }

            .hero-content {
                text-align: center;
            }

            .hero-actions {
                flex-direction: column;
                gap: var(--spacing-sm);
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            :root {
                --spacing-sm: 0.75rem;
                --spacing-md: 1.25rem;
                --spacing-lg: 2rem;
            }

            .section {
                padding: var(--spacing-md) 0;
            }

            .section-header {
                margin-bottom: var(--spacing-md);
            }

            .artists-grid, .releases-grid, .services-grid {
                grid-template-columns: 1fr;
            }
        }
        .back-link {
    display: inline-block;
    margin-top: 40px;
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(255, 0, 0);
    opacity: 0.8;
    transition: var(--transition);
    cursor: pointer;
    z-index: 1;
}

.scroll-down:hover {
    opacity: 1;
    transform: translate(-50%, -5px);
}

.scroll-down span {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #005bb5;
    border-radius: 50%;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #005bb5;
    border-right: 2px solid #005bb5;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
.elfsight-app-5a9b8a3b-fb50-4ed2-87b3-197092b07a28 {
  padding: 20px;
  box-sizing: border-box;
}
.center-globe {
  text-align: center;
  font-size: 1.5em;
}
#cmPrivacyButton {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  background-color: #1d1d1f !important;
  color: #ffffff !important;  /* Weißer Text */
  font-size: 14px !important;
  padding: 10px 16px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  z-index: 9999 !important;
}

#cmPrivacyButton * {
  color: #ffffff !important;  /* Weiß auch für verschachtelte Textelemente */
}

#cmPrivacyButton:hover {
  background-color: #2997ff !important;
  color: #ffffff !important;
}