:root {
    --header-height: clamp(72px, 10vw, 140px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-padding-top: var(--header-height);
}

/* ========== Global Layout ========== */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: var(--header-height);
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
    font-size: clamp(16px, 2vw, 18px);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5e57;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.3s ease;
    z-index: 1100;
}

.skip-link:focus {
    top: 16px;
    opacity: 1;
    pointer-events: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px clamp(16px, 4vw, 48px);
    width: 100%;
    box-sizing: border-box;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 15px 36px rgba(0, 0, 0, 0.4);
}

main {
    padding-top: 0;
}

.site-nav {
    width: min(100%, 1100px);
    margin: 0 auto;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(18px, 4vw, 32px);
}

.nav-list li {
    position: relative;
}

.nav-link,
.dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 8px;
    text-decoration: none;
    color: #f2f2f2;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    appearance: none;
}

.nav-link::before,
.dropdown-toggle::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9770, #ff5e57);
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.nav-link[aria-current="page"],
.nav-link.is-active,
.dropdown.has-active > .dropdown-toggle {
    color: #fff;
}

.nav-link[aria-current="page"]::before,
.nav-link.is-active::before,
.dropdown.has-active > .dropdown-toggle::before {
    width: 100%;
    opacity: 1;
}

.dropdown-toggle::after {
    content: "\25BE";
    font-size: 0.7em;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover > .dropdown-toggle::after,
.dropdown.open > .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-link:hover,
.nav-link:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
    color: #ffffff;
    transform: translateY(-1px);
    outline: none;
}

.nav-link:hover::before,
.nav-link:focus-visible::before,
.dropdown-toggle:hover::before,
.dropdown-toggle:focus-visible::before {
    width: 100%;
    opacity: 1;
}

.dropdown.open .dropdown-content {
    display: block;
    opacity: 1;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: linear-gradient(135deg, rgba(255, 151, 112, 0.9), rgba(255, 94, 87, 0.9));
    transform: translateY(-1px);
    outline: none;
}

.dropdown-content a.is-active {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
}


/* Dropdown-Menü */
.dropdown-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    min-width: 180px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    z-index: 10;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    list-style: none;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content li a {
    display: block;
    padding: 10px 14px;
    color: #f0f0f0;
    border-radius: 10px;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    text-align: left;
    text-decoration: none;
}

.dropdown-content li a:hover,
.dropdown-content li a:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateX(2px);
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .dropdown:hover .dropdown-content {
        display: block;
        opacity: 1;
    }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100svh;
  margin-top: calc(-1 * var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(90%, 780px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4em);
  margin-bottom: 10px;
}

.hero-content p {
  font-size: clamp(1.2rem, 2.5vw, 1.5em);
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9770, #ff5e57);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 94, 87, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 94, 87, 0.45);
}

.hero-logo {
  max-width: 300px;
  width: 80%;
  margin-bottom: 20px;
}

/* Neuer Fade-basierter Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.7); /* Blur + Abdunklung für besseren Kontrast */
    transform: scale(1.05); /* Kleines Zoom-In für moderne Optik */
}

/* Aktives Bild sichtbar */
.hero-slide.active {
    opacity: 1;
    z-index: 0;
}

body.prefers-data-reduced .hero-slider .hero-slide {
    opacity: 1 !important;
}

body.prefers-data-reduced .hero-slider .hero-slide:not(:first-child) {
    display: none;
}

/* Artist Slider */
.artist-slider-section {
    background-color: #121212;
    text-align: center;
    padding: clamp(48px, 10vw, 80px) clamp(16px, 6vw, 40px);
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
    scroll-margin-top: 110px;
}

.artist-slider-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    --slider-gap: clamp(16px, 3vw, 28px);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    gap: var(--slider-gap);
    justify-content: flex-start;
}

.artist-card.large {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: #1a1a1a;
    padding: clamp(32px, 6vw, 48px) clamp(20px, 4vw, 28px);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.artist-card.large:hover {
    background-color: #222;
    transform: scale(1.02);
}

.artist-card.large img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .artist-card.large {
        flex: 0 0 calc((100% - var(--slider-gap)) / 2);
        max-width: calc((100% - var(--slider-gap)) / 2);
    }
}

@media (min-width: 992px) {
    .artist-card.large {
        flex: 0 0 calc((100% - (2 * var(--slider-gap))) / 3);
        max-width: calc((100% - (2 * var(--slider-gap))) / 3);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.slider-btn:hover {
    background: linear-gradient(135deg, rgba(255, 151, 112, 0.9), rgba(255, 94, 87, 0.9));
    box-shadow: 0 14px 28px rgba(255, 94, 87, 0.35);
}

.slider-btn.prev {
    left: 8px;
}

.slider-btn.prev:hover {
    transform: translateY(-50%) translateX(-2px);
}

.slider-btn.next {
    right: 8px;
}

.slider-btn.next:hover {
    transform: translateY(-50%) translateX(2px);
}

/* ======= Service Section Styling ======= */
.service-section {
    width: min(100%, 1100px);
    margin: clamp(64px, 8vw, 96px) auto;
    padding: clamp(32px, 8vw, 64px) clamp(20px, 6vw, 60px);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.bubble-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.bubble {
    background: linear-gradient(135deg, #ff5e57, #ff9770);
    color: #fff;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.bubble:hover {
    transform: scale(1.05);
}

.bubble a {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.bubble a:hover {
    text-decoration: none;
    color: #fff;
}

.motto {
    font-size: 1.2em;
    margin-top: 40px;
    color: #ff5e57;
    font-style: italic;
}

/* Partner Logos */
.partner-logos-wrapper {
    width: min(100%, 1100px);
    margin: clamp(64px, 8vw, 96px) auto;
    padding: clamp(32px, 8vw, 64px) clamp(20px, 6vw, 60px);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.partner-logos-wrapper h3 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.partner-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

.partner-logos-grid img {
    max-height: 60px;
    max-width: 160px;
    height: auto;
    filter: grayscale(40%) brightness(1.2);
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.partner-logos-grid img:hover {
    filter: none;
    transform: translateY(-3px) scale(1.05);
    opacity: 1;
}

.success-section {
    width: min(100%, 1100px);
    margin: clamp(64px, 8vw, 96px) auto;
    padding: clamp(32px, 8vw, 64px) clamp(20px, 6vw, 60px);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: clamp(32px, 5vw, 48px);
}

.success-intro {
    text-align: center;
}

.success-intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.success-intro p {
    font-size: 1.1rem;
    color: #dcdcdc;
    margin: 0;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(16px, 4vw, 28px);
}

.success-card {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.success-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
}

.success-card h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #ff9770;
}

.success-value {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 700;
    margin: 0;
    display: block;
    text-align: center;
}

.success-note {
    color: #bcbcbc;
    margin: 0;
    font-size: 0.95rem;
}

.success-breakdown {
    display: grid;
    gap: 18px;
}

.success-breakdown h3 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.artist-rollup-grid {
    display: grid;
    gap: clamp(16px, 4vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.artist-rollup-card {
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.25);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-rollup-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
}

.artist-rollup-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-rollup-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.artist-rollup-card li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.95rem;
    color: #d9d9d9;
    gap: 12px;
}

.artist-rollup-card li span {
    opacity: 0.85;
}

.artist-rollup-card li strong {
    font-size: 1.05rem;
    color: #fff;
    white-space: nowrap;
}

.success-awards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(16px, 4vw, 24px);
}

.award-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.award-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 0;
}

.award-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.award-item h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.award-count {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.award-note {
    margin: 0;
    font-size: 0.9rem;
    color: #bcbcbc;
}

.insights-section {
    width: min(100%, 1100px);
    margin: clamp(48px, 8vw, 96px) auto;
    padding: clamp(32px, 8vw, 64px) clamp(20px, 6vw, 60px);
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(8, 8, 8, 0.9));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    color: #fff;
    box-sizing: border-box;
    display: grid;
    gap: clamp(24px, 4vw, 32px);
}

.insights-header h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.insights-header p {
    margin: 0;
    color: #dcdcdc;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(16px, 4vw, 28px);
}

.insight-card {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-topic {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: #ff9770;
}

.insight-card h3 {
    margin: 0;
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
}

.insight-card h3 a {
    color: #fff;
    text-decoration: none;
}

.insight-card h3 a:hover,
.insight-card h3 a:focus-visible {
    color: #ff9770;
    outline: none;
}

.insight-card p {
    margin: 0;
    color: #d2d2d2;
    line-height: 1.6;
}

body.prefers-data-reduced .insight-card p {
    color: #ededed;
}

.insight-link {
    margin-top: auto;
    text-decoration: none;
    font-weight: 600;
    color: #ff9770;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.insight-link::after {
    content: "→";
    font-size: 1rem;
}

.insight-link:hover,
.insight-link:focus-visible {
    color: #ffd2c5;
    transform: translateX(3px);
    outline: none;
}

.site-footer {
    margin-top: clamp(48px, 8vw, 96px);
    padding: clamp(32px, 8vw, 72px) clamp(20px, 6vw, 60px);
    background: linear-gradient(145deg, rgba(12, 12, 12, 0.95), rgba(20, 20, 20, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 5vw, 40px);
    margin-bottom: clamp(24px, 4vw, 40px);
}

.footer-brand p {
    margin-top: 12px;
    color: #d8d8d8;
}

.footer-logo img {
    width: 150px;
    height: auto;
    display: block;
}

.footer-links h3,
.footer-contact h3,
.footer-legal h3 {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #ff9770;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-links a,
.footer-legal a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ff9770;
}

.footer-contact address {
    font-style: normal;
    color: #dcdcdc;
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: #ff9770;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #bcbcbc;
    font-size: 0.9rem;
}


/* Medien */
.video-container,
.spotify-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

iframe {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    height: auto;
    border: none;
    border-radius: 10px;
}

/* Social Media */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ff5e57;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #e04b45;
}

.social-links img {
    width: 20px;
    height: 20px;
}

/* Responsive Header */
@media (max-width: 768px) {
    .site-header {
        padding: 12px 20px;
        background: transparent;
        box-shadow: none;
    }

    .site-nav {
        width: 100%;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: transparent;
        position: static;
        width: 100%;
        margin: 0;
        z-index: 1000;
        padding: calc(var(--header-height) + 12px) 10px 28px;
        gap: 6px;
        border-radius: 0;
        box-shadow: none;
    }

    .nav-list::before {
        content: "";
        display: block;
        height: 0;
    }

    .nav-list.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        font-size: 1.8rem;
        position: absolute;
        top: 12px;
        right: 24px;
        z-index: 101;
    }

    .nav-list li,
    .nav-list li .nav-link,
    .nav-list li .dropdown-toggle {
        width: 100%;
    }

    .nav-list li {
        margin: 0;
    }

    .nav-list li + li {
        margin-top: 6px;
    }
    
    .nav-only-desktop {
        display: none;
    }

    .nav-list li .nav-link,
    .nav-list li .dropdown-toggle {
        justify-content: space-between;
        padding: 14px 18px;
        background: rgba(36, 36, 36, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 14px;
    }

    .nav-list li .nav-link::before,
    .nav-list li .dropdown-toggle::before {
        display: none;
    }

    .nav-only-mobile {
        display: block;
    }

    .nav-only-mobile .dropdown-toggle {
        display: flex;
    }

    .nav-mobile-dropdown {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 8px 0 0;
        margin-top: 8px;
        gap: 8px;
    }

    .dropdown.open .nav-mobile-dropdown {
        display: flex;
    }

    .nav-link--fullwidth {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .nav-only-mobile {
        display: none;
    }

    .nav-only-desktop {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-only-mobile {
        display: block;
    }

    .nav-only-desktop {
        display: none;
    }
    .hero {
        height: auto;
        min-height: 80vh;
        padding-top: 100px;
    }

    .hero-content {
        padding-top: 24px;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 8vw, 3.1rem);
    }

    .hero-content p {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
    }

    .artist-slider-section,
    .success-section,
    .insights-section,
    .service-section,
    .partner-logos-wrapper {
        padding: 32px 18px;
        width: min(100%, 960px);
        margin: 40px auto;
    }

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

    .cookie-consent-overlay {
        align-items: flex-start;
        padding: 16px;
    }

    .cookie-modal {
        width: 100%;
        max-height: 96vh;
        border-radius: 20px;
        padding: 20px;
        margin-top: 16px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .slider-container {
        --slider-gap: 12px;
    }

    body {
        font-size: 16px;
    }

    .hero {
        padding-top: 80px;
        margin-top: calc(-1 * var(--header-height));
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-logo {
        max-width: 220px;
    }

    .slider-btn {
        display: none;
    }

    .artist-card.large {
        padding: 28px 16px;
    }

    .artist-card.large img {
        max-width: 260px;
    }

    .bubble-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-scroll {
        max-height: 82vh;
        padding: 16px;
    }

    .cookie-floating-button {
        bottom: 12px;
        right: 12px;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-legal {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-links ul,
    .footer-legal ul {
        justify-items: center;
    }

    .footer-contact address {
        text-align: center;
    }
}

@media (max-width: 680px) {
    .artist-profile {
        margin: 40px 16px;
        padding: 24px 18px;
    }

    .artist-profile h1 {
        font-size: clamp(2rem, 8vw, 2.4rem);
    }

    .artist-profile section h2 {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .artist-profile,
    .contact-wrapper,
    .impressum-wrapper,
    .coming-soon-wrapper {
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px);
        box-sizing: border-box;
    }

    .impressum-wrapper h1 {
        font-size: 2rem;
    }

    .page-logo {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }
}

.artist-profile {
    max-width: 920px;
    margin: 60px auto;
    padding: clamp(32px, 6vw, 48px) clamp(24px, 6vw, 60px);
    background-color: #1e1e1e;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.artist-profile--compact {
    margin-top: 0;
}

.artist-profile h1 {
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    margin: 24px 0 18px;
}

.artist-profile section {
    margin-top: 48px;
}

.artist-profile section h2 {
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    margin-bottom: 20px;
}

.artist-profile p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.artist-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.spotify-container {
    width: 100%;
    max-width: 720px;
    margin: 30px auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotify-container iframe {
    aspect-ratio: auto;
    height: 352px;
    border-radius: 12px;
}

.key-stats {
    text-align: center;
    margin: 60px auto;
    padding: 0 20px;
}


.stats-grid {
    display: grid;
    gap: 24px;
    margin-top: 30px;
    justify-content: center;
}

@media (min-width: 320px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.stat-card {
    padding: 12px 18px 26px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
}

.stat-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.key-stats--teya .stat-card { background: linear-gradient(135deg, #6b00b6, #ff69b4); }
.key-stats--eddin .stat-card { background: linear-gradient(135deg, #111111, #ff3c00); }
.key-stats--nisa .stat-card { background: linear-gradient(135deg, #2cdcff, #2ca9ff); }
.key-stats--assab .stat-card { background: linear-gradient(135deg, #000000, #636363); }

.stat-card p {
    margin: 0;
    font-size: 0.95rem;
}

.stat-card p strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 4px;
    white-space: nowrap;
}

.tour-link {
  margin-top: 32px;
}

.tour-link__anchor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-link__anchor:hover,
.tour-link__anchor:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 94, 87, 0.35);
  outline: none;
}

.tour-link__anchor img {
  width: 60px;
  height: auto;
}

.impressum-wrapper {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #1e1e1e;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    line-height: 1.8;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.page-logo {
    width: 100%;
    margin: 30px auto 10px;
    text-align: center;
}

.page-logo__image {
    width: 140px;
    height: auto;
}

.impressum-wrapper h1 {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
    margin-bottom: 30px;
    line-height: 1.2;
    word-break: break-word;
    text-wrap: balance;
}

.impressum-wrapper p {
    margin-bottom: 15px;
    word-break: break-word;
}

.impressum-wrapper strong {
    color: #ff5e57;
}

.impressum-wrapper a {
    color: #ff9770;
    text-decoration: underline;
}

.impressum-wrapper a:hover {
    color: #fff;
}

.contact-wrapper {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #1e1e1e;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    text-align: center;
}

.contact-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-wrapper p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #aaa;
}

.form-status {
    min-height: 24px;
    margin-top: 12px;
    font-weight: 600;
    color: #dcdcdc;
    transition: color 0.3s ease;
}

.form-status.is-success {
    color: #58e09f;
}

.form-status.is-error {
    color: #ff8a8a;
}

.cookie-consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cookie-consent-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal {
    width: min(1040px, 100%);
    max-height: min(1400px, 98vh);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #1d1d1d;
    border-radius: 24px;
    padding: clamp(24px, 5vw, 36px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.cookie-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cookie-close:hover,
.cookie-close:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    outline: none;
}

.cookie-close.is-hidden {
    display: none;
}

.cookie-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff8a65, #ff4d5a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 4px;
}

.cookie-scroll {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px;
    max-height: min(1000px, 85vh);
    min-height: 8rem;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.08);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.cookie-scroll::-webkit-scrollbar {
    width: 8px;
}

.cookie-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.cookie-scroll p {
    margin: 0 0 12px;
    color: inherit;
}

.cookie-scroll ul {
    padding-left: 18px;
    margin: 0 0 12px;
    color: inherit;
}

.cookie-scroll li {
    margin-bottom: 6px;
}

.cookie-scroll a {
    color: #ff5e57;
}

.cookie-scroll-notice {
    margin: 0;
    font-size: 0.95rem;
    color: #ffd5c5;
}

.cookie-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.cookie-toggle--required {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.cookie-toggle input {
    width: 18px;
    height: 18px;
    accent-color: #ff8a65;
}

.cookie-toggle span {
    font-weight: 600;
}

.cookie-toggle small {
    color: #d8d8d8;
    font-size: 0.85rem;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    color: #fff;
    background: linear-gradient(135deg, #ff8a65, #ff4d5a);
    box-shadow: 0 14px 24px rgba(255, 77, 90, 0.35);
}

.cookie-btn.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.cookie-btn.ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.cookie-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.cookie-btn:not(:disabled):hover,
.cookie-btn:not(:disabled):focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.cookie-legal {
    margin: 0;
    color: #bcbcbc;
    font-size: 0.9rem;
}

.cookie-legal a {
    color: #ff8a65;
    text-decoration: underline;
}

.cookie-floating-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(23, 23, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 1500;
}

.cookie-floating-button:hover,
.cookie-floating-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
    outline: none;
}

.cookie-floating-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a65, #ff4d5a);
    font-size: 1.2rem;
}

body.cookie-modal-open {
    overflow: hidden;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #333;
    border: 1px solid #ff5e57;
}

.submit-btn {
    padding: 12px 20px;
    background-color: #ff5e57;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e04b45;
}

/* Ladebildschirm */
.coming-soon-page #loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f0f, #1f1f1f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.coming-soon-page .loader {
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-top: 8px solid #ff5e57;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.coming-soon-page .loader-text {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Inhalt beim Start ausblenden */
.coming-soon-page #page-content {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Sichtbar nach Ladevorgang */
.coming-soon-page #page-content.visible {
  opacity: 1;
}

/* Coming Soon Block */
.coming-soon-wrapper {
  max-width: 700px;
  margin: 120px auto;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.85));
  border-radius: 16px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
}

.coming-soon-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.coming-soon-wrapper p {
  font-size: 1.2rem;
  color: #ff5e57;
}
.nav-only-mobile {
    display: none;
}

.nav-only-desktop {
    display: block;
}
