/* ═══════════════════════════════════════════════════════════
   EASTERN WIND THEATRE – CSS Design System
   Cinematic Dark Theme · Glassmorphism · Premium Typography
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
    /* Primary Palette */
    --color-bg: #2e3e48;
    --color-bg-alt: #374a56;
    --color-surface: #3a4f5c;
    --color-surface-hover: #415562;

    /* Accent Colors */
    --color-blue: #3b82f6;
    --color-blue-light: #60a5fa;
    --color-blue-glow: rgba(59, 130, 246, 0.3);
    --color-blue-subtle: rgba(59, 130, 246, 0.08);
    --color-gold: #d4a853;
    --color-gold-light: #e8c36a;

    /* Text */
    --color-text: #ffffff;
    --color-text-muted: #d0d8de;
    --color-text-dim: #8fa0ac;

    /* Glass */
    --glass-bg: rgba(45, 62, 75, 0.65);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-highlight: rgba(255, 255, 255, 0.06);

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-max: 1280px;

    /* Typography */
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-blue) var(--color-bg);
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--color-blue);
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.5s var(--ease-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(46, 62, 72, 0.92);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s var(--ease-bounce);
}

.nav-logo-img:hover {
    transform: scale(1.08);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-blue), #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--color-blue-glow);
    transition: transform 0.3s var(--ease-bounce);
}

.logo-icon:hover {
    transform: scale(1.08);
}

.logo-letters {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: white;
    letter-spacing: 1px;
}

.logo-text {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: var(--color-text);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
    background: var(--color-blue-subtle);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-blue);
    border-radius: 1px;
    transition: all 0.3s var(--ease-smooth);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(12px);
}

.lang-option {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-dim);
    border-radius: 16px;
    transition: color 0.3s;
    z-index: 1;
    user-select: none;
}

.lang-option.active {
    color: white;
}

.lang-slider {
    position: absolute;
    width: 34px;
    height: 26px;
    background: var(--color-blue);
    border-radius: 16px;
    transition: transform 0.35s var(--ease-smooth);
    transform: translateX(36px);
    box-shadow: 0 0 12px var(--color-blue-glow);
}

.lang-toggle[data-active="de"] .lang-slider {
    transform: translateX(0px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px 0;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(46, 62, 72, 0.97);
    backdrop-filter: blur(32px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 40px);
    color: var(--color-text-muted);
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
}

.mobile-nav-links a:hover {
    color: var(--color-blue-light);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px clamp(20px, 4vw, 48px) 60px;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(46, 62, 72, 0.3) 0%, rgba(46, 62, 72, 0.6) 50%, var(--color-bg) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

/* ── Soundwave Divider ── */
.hero-soundwave {
    margin-bottom: 32px;
}

.soundwave-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 60px;
    padding: 0 20px;
}

.sw-bar {
    display: block;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--color-blue-light), var(--color-blue), var(--color-gold));
    opacity: 0.6;
    animation: swPulse 1.8s ease-in-out infinite;
}

.sw-bar:nth-child(1)  { height: 12px; animation-delay: 0.00s; }
.sw-bar:nth-child(2)  { height: 20px; animation-delay: 0.08s; }
.sw-bar:nth-child(3)  { height: 32px; animation-delay: 0.16s; }
.sw-bar:nth-child(4)  { height: 44px; animation-delay: 0.24s; }
.sw-bar:nth-child(5)  { height: 56px; animation-delay: 0.32s; }
.sw-bar:nth-child(6)  { height: 48px; animation-delay: 0.40s; }
.sw-bar:nth-child(7)  { height: 36px; animation-delay: 0.48s; }
.sw-bar:nth-child(8)  { height: 52px; animation-delay: 0.56s; }
.sw-bar:nth-child(9)  { height: 40px; animation-delay: 0.64s; }
.sw-bar:nth-child(10) { height: 28px; animation-delay: 0.72s; }
.sw-bar:nth-child(11) { height: 48px; animation-delay: 0.80s; }
.sw-bar:nth-child(12) { height: 56px; animation-delay: 0.88s; }
.sw-bar:nth-child(13) { height: 60px; animation-delay: 0.96s; }
.sw-bar:nth-child(14) { height: 56px; animation-delay: 1.04s; }
.sw-bar:nth-child(15) { height: 48px; animation-delay: 1.12s; }
.sw-bar:nth-child(16) { height: 28px; animation-delay: 1.20s; }
.sw-bar:nth-child(17) { height: 40px; animation-delay: 1.28s; }
.sw-bar:nth-child(18) { height: 52px; animation-delay: 1.36s; }
.sw-bar:nth-child(19) { height: 36px; animation-delay: 1.44s; }
.sw-bar:nth-child(20) { height: 48px; animation-delay: 1.52s; }
.sw-bar:nth-child(21) { height: 56px; animation-delay: 1.60s; }
.sw-bar:nth-child(22) { height: 44px; animation-delay: 1.68s; }
.sw-bar:nth-child(23) { height: 32px; animation-delay: 1.76s; }
.sw-bar:nth-child(24) { height: 20px; animation-delay: 1.84s; }
.sw-bar:nth-child(25) { height: 12px; animation-delay: 1.92s; }

@keyframes swPulse {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50%      { transform: scaleY(1);   opacity: 0.85; }
}

/* ── Hero Emblem ── */
.hero-emblem {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.emblem-rings {
    position: absolute;
    inset: -30px;
    pointer-events: none;
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.15);
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 { inset: 0; animation-delay: 0s; }
.ring-2 { inset: -12px; animation-delay: 0.6s; }
.ring-3 { inset: -24px; animation-delay: 1.2s; }

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; border-color: rgba(59, 130, 246, 0.15); }
    50%      { transform: scale(1.08); opacity: 0.5; border-color: rgba(59, 130, 246, 0.35); }
}

.emblem-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px var(--color-blue-glow), 0 8px 32px rgba(0,0,0,0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.emblem-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.emblem-eq {
    display: flex;
    gap: 3px;
    margin-top: 12px;
    align-items: flex-end;
    height: 16px;
}

.eq-bar {
    width: 3px;
    border-radius: 2px;
    background: var(--color-blue-light);
    animation: eqBounce 1s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 6px;  animation-delay: 0.0s; }
.eq-bar:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.eq-bar:nth-child(3) { height: 16px; animation-delay: 0.3s; }
.eq-bar:nth-child(4) { height: 10px; animation-delay: 0.45s; }
.eq-bar:nth-child(5) { height: 8px;  animation-delay: 0.6s; }

@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.5); }
    50%      { transform: scaleY(1.2); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(16px);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-blue-light);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-blue);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 8px var(--color-blue-glow);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-gold) 50%, var(--color-text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 6s ease-in-out infinite;
}

@keyframes shimmer-text {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.title-line {
    display: block;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.5vw, 24px);
    color: var(--color-gold);
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}

.hero-vision {
    margin-bottom: 48px;
}

.vision-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.vision-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(212, 168, 83, 0.2), transparent);
}

.vision-glass p {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
}

.vision-glass p:last-child {
    margin-bottom: 0;
}

.vision-cta-text {
    font-style: italic;
    color: var(--color-gold) !important;
    font-weight: 500;
    font-size: clamp(16px, 2vw, 19px) !important;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue), #2563eb);
    color: white;
    box-shadow: 0 4px 20px var(--color-blue-glow), 0 0 40px rgba(59, 130, 246, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--color-blue-glow), 0 0 60px rgba(59, 130, 246, 0.15);
}

.btn-ghost {
    background: var(--glass-bg);
    color: var(--color-text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    background: var(--color-blue-subtle);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-dim);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--color-text-dim);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--color-blue-light);
    border-radius: 2px;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════════════ */

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-blue-light);
    margin-bottom: 16px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-blue));
}

.section-label::before {
    right: calc(100% + 16px);
}

.section-label::after {
    left: calc(100% + 16px);
    background: linear-gradient(90deg, var(--color-blue), transparent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-text);
}

.section-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Glass Card Utility */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
}

/* ═══════════════════════════════════════════════════════════
   PLAYLISTS SECTION
   ═══════════════════════════════════════════════════════════ */

.playlists-section {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        var(--color-bg-alt);
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.playlist-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 340px;
    cursor: pointer;
    transition: all 0.5s var(--ease-smooth);
    border: 1px solid var(--glass-border);
}

.playlist-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.15);
}

.playlist-card--wide {
    grid-column: span 2;
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-smooth), filter 0.5s;
    filter: brightness(0.45) saturate(0.75);
}

.playlist-card:hover .card-bg {
    transform: scale(1.05);
    filter: brightness(0.35) saturate(0.85);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.2) 0%, rgba(10, 10, 15, 0.85) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 340px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-blue-subtle);
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue-light);
    font-size: 18px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.playlist-card:hover .card-icon {
    background: var(--color-blue);
    color: white;
    box-shadow: 0 0 20px var(--color-blue-glow);
}

.card-title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.card-subtitle {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.card-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-smooth), opacity 0.4s;
    opacity: 0;
}

.playlist-card:hover .card-expanded,
.playlist-card.card-active .card-expanded {
    max-height: 400px;
    opacity: 1;
}

.card-expanded p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-blue), #2563eb);
    color: white;
    font-weight: 600;
    font-size: 13px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    align-self: flex-start;
    opacity: 0;
    transform: translateY(8px);
    box-shadow: 0 4px 16px var(--color-blue-glow);
    text-decoration: none;
}

.playlist-card:hover .card-btn,
.playlist-card.card-active .card-btn {
    opacity: 1;
    transform: translateY(0);
}

.card-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 24px var(--color-blue-glow);
}

.card-glow {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), transparent, rgba(212, 168, 83, 0.1));
    pointer-events: none;
}

.playlist-card:hover .card-glow {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   SHOWCASES SECTION
   ═══════════════════════════════════════════════════════════ */

.showcases-section {
    background: var(--color-bg);
}

.showcase-gallery {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.showcase-feature {
    width: 100%;
}

.showcase-feature .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.showcase-feature iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

.showcase-thumbs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.thumb-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    border: 2px solid transparent;
    transition: all 0.3s var(--ease-smooth);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.thumb-item:hover img {
    transform: scale(1.1);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.thumb-item:hover .thumb-overlay {
    opacity: 1;
}

.thumb-overlay i {
    color: white;
    font-size: 20px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.thumb-active-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-blue);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-smooth);
    transform-origin: center;
    box-shadow: 0 0 8px var(--color-blue-glow);
}

.thumb-item.active {
    border-color: var(--color-blue);
    box-shadow: 0 0 16px var(--color-blue-glow);
}

.thumb-item.active .thumb-active-bar {
    transform: scaleX(1);
}

.thumb-item.active .thumb-overlay {
    opacity: 0;
}

/* ── Showcase Carousel (Scrollable List) ── */

.showcase-carousel-wrapper {
    margin-top: 48px;
    position: relative;
}

.carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.carousel-header h3 {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--color-text);
}

.carousel-nav {
    display: flex;
    gap: 8px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: white;
    box-shadow: 0 4px 16px var(--color-blue-glow);
    transform: scale(1.08);
}

.showcase-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-blue) rgba(255,255,255,0.05);
    white-space: nowrap;
    font-size: 0; /* remove inline-block gaps */
}

.showcase-carousel::-webkit-scrollbar {
    height: 4px;
}
.showcase-carousel::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 2px;
}
.showcase-carousel::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 2px;
}

.carousel-card {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    width: 280px;
    margin-right: 16px;
    font-size: 15px; /* restore font-size after parent reset */
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    position: relative;
}

.carousel-card:last-child {
    margin-right: 0;
}

.carousel-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--color-blue);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2), 0 0 20px var(--color-blue-glow);
}

.carousel-card.active {
    border-color: var(--color-gold);
    box-shadow: 0 8px 32px rgba(212, 168, 83, 0.25);
}

.carousel-thumb {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 fallback */
    overflow: hidden;
    background: var(--color-surface);
}

.carousel-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth), filter 0.3s;
    filter: brightness(0.85);
}

.carousel-card:hover .carousel-thumb img {
    transform: scale(1.08);
    filter: brightness(1);
}

.carousel-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.35);
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-card:hover .carousel-play {
    opacity: 1;
}

.carousel-play i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-blue);
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--color-blue-glow);
    transition: transform 0.3s var(--ease-bounce);
}

.carousel-card:hover .carousel-play i {
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */

.contact-section {
    background:
        radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        var(--color-bg-alt);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    padding: 0;
}

.form-tabs {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
}

.form-tab {
    flex: 1;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: transparent;
}

.form-tab:hover {
    color: var(--color-text);
    background: var(--color-blue-subtle);
}

.form-tab.active {
    color: var(--color-blue-light);
}

.form-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-blue);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-smooth);
}

.form-tab.active::after {
    transform: scaleX(1);
}

.form-panel {
    display: none;
    padding: clamp(24px, 3vw, 40px);
}

.form-panel.active {
    display: block;
    animation: fadeIn 0.4s var(--ease-smooth);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s var(--ease-smooth);
}

.success-icon {
    font-size: 56px;
    color: #10b981;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--color-text-muted);
}

.project-intro {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.project-intro h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.project-intro p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: #ffffff;
    transition: all 0.3s;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-blue);
    background: rgba(59, 130, 246, 0.04);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239898b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: #2e3e48;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-line {
    display: none;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.info-card:hover {
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--color-blue-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-blue-light);
}

.info-card h4 {
    font-weight: 600;
    font-size: 16px;
}

.info-link {
    color: var(--color-blue-light);
    font-weight: 500;
    transition: color 0.3s;
}

.info-link:hover {
    color: var(--color-gold);
}

.info-card p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
    padding: 60px 0 32px;
    background: var(--color-bg);
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--color-blue-light);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-tagline {
    color: var(--color-text-muted) !important;
    margin-bottom: 16px !important;
}

.footer-small {
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-social-cta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.footer-linktree {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-blue-light);
    margin-top: 6px;
}

.footer-linktree:hover {
    color: var(--color-gold);
}

.pipeline-list {
    list-style: none;
    padding: 0;
}

.pipeline-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pipeline-list li:last-child {
    border-bottom: none;
}

.pipe-label {
    color: var(--color-blue-light);
    font-weight: 600;
}

.footer-pipeline {
    margin-bottom: 12px !important;
    color: var(--color-gold) !important;
    font-style: italic;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-text-muted);
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    color: white;
    background: #ff0000;
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.footer-legal a {
    color: var(--color-text-muted);
    transition: color 0.3s;
    cursor: pointer;
}

.footer-legal a:hover {
    color: var(--color-blue-light);
}

.divider-dot {
    color: var(--color-text-dim);
}

/* ═══════════════════════════════════════════════════════════
   MODALS (Impressum / Datenschutz)
   ═══════════════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 30, 38, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    padding: 32px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    position: relative;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s var(--ease-smooth);
    scrollbar-width: thin;
    scrollbar-color: var(--color-blue) transparent;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-container::-webkit-scrollbar {
    width: 4px;
}
.modal-container::-webkit-scrollbar-track {
    background: transparent;
}
.modal-container::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 2px;
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    margin: 20px 20px 0 0;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px 40px 40px;
}

.modal-body h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-blue);
}

.modal-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gold);
    margin-top: 28px;
    margin-bottom: 12px;
}

.modal-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-blue-light);
    margin-top: 20px;
    margin-bottom: 8px;
}

.modal-body p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 12px;
}

.modal-body p strong {
    color: #ffffff;
}

.modal-body a {
    color: var(--color-blue-light);
    text-decoration: underline;
    text-decoration-color: rgba(96, 165, 250, 0.3);
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.modal-body a:hover {
    color: var(--color-gold);
    text-decoration-color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

/* Stagger delays for hero */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .playlist-card--wide {
        grid-column: span 1;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: 200px;
    }

    .showcase-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .carousel-card {
        width: 240px;
        margin-right: 14px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .playlist-card--wide {
        grid-column: span 1;
    }

    .showcase-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .carousel-card {
        width: 220px;
        margin-right: 12px;
    }

    .carousel-header h3 {
        font-size: 16px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    .contact-info {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .showcase-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-tabs {
        flex-direction: column;
    }

    .form-tab {
        padding: 14px 20px;
        justify-content: flex-start;
    }

    .form-tab::after {
        left: auto;
        right: auto;
        bottom: auto;
        top: 0;
        height: 100%;
        width: 3px;
        left: 0;
        right: auto;
    }

    .modal-body {
        padding: 16px 20px 28px;
    }

    .modal-overlay {
        padding: 16px;
    }

    .logo-text {
        font-size: 14px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .anim-fade-up {
        opacity: 1;
        transform: none;
    }
}
