* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


body {
    color: #1d1d1f;
    background-color: #f5f5f7;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2997ff;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    background-image: url('images/background.jpg');
    color: white;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}
 
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 0 10px rgba(0, 156, 247, 0.5)
}

.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.button-primary {
    background-color: #2997ff;
    color: white;
}

.button-primary:hover {
    background-color: #0077ed;
}

.section {
    padding: 100px 0;
    scroll-margin-top: 60px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2997ff;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.artists {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.artist-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-image {
    width: 100%;
    height: 250px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-info {
    padding: 20px;
}

.artist-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.artist-info p {
    font-size: 0.9rem;
    color: #86868b;
}

.artist-info a {
    color: #86868b;
    margin-right: 5px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service {
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service p {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.demo p {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #2997ff;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: #2997ff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.btn-submit:hover {
    background-color: #0077ed;
}

footer {
    background-color: #1d1d1f;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #38383c;
    color: #86868b;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #a1a1a6;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.album {
    text-align: center;
}

.album-cover {
    width: 200px;
    height: 200px;
    aspect-ratio: 1;
    background-color: #f2f2f2;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.album p {
    font-size: 0.9rem;
    color: #86868b;
}

.logo {
    display: flex;
    align-items: center;   /* vertikal zentrieren */
    justify-content: center; /* horizontal zentrieren */
    gap: 8px; /* Abstand zwischen Bild und Text */
  }

  .page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.content-section p {
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-decoration: underline;
}

.faq-answer {
    line-height: 1.6;
}

/* Für Impressum */
.imprint-block {
    margin-bottom: 30px;
}

.imprint-block h3 {
    margin-bottom: 15px;
}

.imprint-block p {
    margin-bottom: 10px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    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 white;
    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 white;
    border-right: 2px solid white;
}
@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;
    }
}

#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;
}