/* ============================================
   Agentur Winter - Custom Styles
   ============================================ */

   :root {
    /* Modern Red Palette - Fresh & Vibrant */
    --primary-color: #AE1833;        /* Modern, vibrant red - Tailwind red-500 */
    --primary-light: #FF6B6B;        /* Lighter red for hover effects */
    --primary-dark: #DC2626;         /* Darker red for pressed states */
    --primary-darker: #B91C1C;       /* Even darker for deep accents */
    --accent-color: #AE1833;         /* Bright accent red */
    --accent-glow: rgba(239, 68, 68, 0.2); /* Glow effect for modern look */
    
    /* Background Colors */
    --dark-bg: #0a0a0a;              /* Deeper black for more contrast */
    --dark-bg-light: #1a1a1a;        /* Slightly lighter dark */
    --dark-bg-lighter: #2a2a2a;      /* Even lighter for cards */
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #f5f5f5;           /* Brighter light text */
    --text-gray: #a3a3a3;            /* Softer gray */
    --text-dark: #333333;
    
    /* Other */
    --light-bg: #f8f8f8;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ============================================
   Typography - Headlines
   ============================================ */

h1, h2, h3, h4, h5, h6,
.hero-title,
.page-title,
.section-title,
.section-title-white,
.expertise-title,
.moderator-name,
.kuenstler-name,
.news-title,
.feature-title,
.stat-number {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1, .hero-title, .page-title {
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2, .section-title, .section-title-white {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3, .expertise-title, .moderator-name, .kuenstler-name {
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ============================================
   Typography - Body Text
   ============================================ */

p, 
.body-text,
.hero-tagline,
.hero-quote,
.about-text,
.expertise-description,
.moderator-description,
.kuenstler-description,
.news-excerpt,
.section-description,
.contact-intro,
.footer-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.lead,
.hero-tagline {
    font-weight: 500;
    line-height: 1.6;
}

.small,
.news-date,
.contact-label,
.footer-links a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Scroll Animation Styles
   ============================================ */

.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stats bar animation */
.stats-bar {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-bar.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-number {
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

/* Content sections animation */
section {
    overflow: hidden;
}

section .container {
    position: relative;
}

/* Delay for staggered animations */
.scroll-fade-up:nth-child(1) { transition-delay: 0.1s; }
.scroll-fade-up:nth-child(2) { transition-delay: 0.2s; }
.scroll-fade-up:nth-child(3) { transition-delay: 0.3s; }
.scroll-fade-up:nth-child(4) { transition-delay: 0.4s; }
.scroll-fade-up:nth-child(5) { transition-delay: 0.5s; }
.scroll-fade-up:nth-child(6) { transition-delay: 0.6s; }

/* Smooth reveal for text */
.text-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-reveal.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Global Border Radius Override - Remove all rounded corners
   ============================================ */

*,
*::before,
*::after {
    border-radius: 0 !important;
}

/* Exceptions for specific elements that need to stay rounded (if any) */
/* Currently none - all elements have sharp corners */

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background-color: rgba(174, 24, 51, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white) !important;
}

.logo-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border-radius: 0;
    line-height: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--text-white) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4), 0 0 0 1px rgba(239, 68, 68, 0.1);
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-quote {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.hero-author {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-attributes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.attribute-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.attribute-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 0;
    display: inline-block;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 1px solid var(--text-white);
    color: var(--text-white);
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--dark-bg);
    border-color: var(--text-white);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   Section Styles
   ============================================ */

.section-label {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.moderatoren-section .section-description,
.kuenstler-section .section-description,
.news-section .section-description {
    color: var(--text-light);
}

.text-accent {
    color: var(--accent-color);
}

/* ============================================
   Expertise Section
   ============================================ */

.expertise-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.expertise-card {
    background: var(--text-white);
    border-radius: 0;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.expertise-card-link {
    cursor: pointer;
}

.expertise-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.expertise-teaser {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.expertise-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.expertise-card-link:hover .expertise-link {
    gap: 0.75rem;
    color: var(--primary-light);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expertise-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.expertise-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.expertise-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.expertise-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.list-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 0;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

/* ============================================
   About Section
   ============================================ */

.about-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: var(--text-white);
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-image:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.blockquote-custom {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-light);
}

.mission-section {
    margin-top: 2rem;
}

.mission-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-title i {
    color: var(--primary-color);
}

.mission-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-box {
    background: var(--dark-bg-light);
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: var(--dark-bg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.stats-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    border-radius: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 2rem;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-white);
    opacity: 0.9;
}

/* ============================================
   Artists Section
   ============================================ */

.artists-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.artists-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-top: 1rem;
}

.artist-card {
    border-radius: 0;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.artist-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    overflow: hidden;
}

.artist-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-img {
    opacity: 1;
}

.artist-overlay {
    position: relative;
    z-index: 1;
}

.artist-category {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.btn-outline-dark {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--text-white);
}

/* ============================================
   References Section
   ============================================ */

.references-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--text-white);
    border-radius: 0;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 4rem;
    color: #f8d7da;
    font-weight: 700;
    line-height: 1;
    font-family: Georgia, serif;
}

.stars {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.author-event {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 0;
    border: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicators-custom button {
    width: 10px;
    height: 10px;
    border-radius: 0;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators-custom button.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 0;
}

/* ============================================
   Trust Section
   ============================================ */

.trust-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.trust-label {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

.trust-card {
    background: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-card-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.trust-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

/* Trust Slider */
.trust-slider-wrapper {
    padding: 0 3rem;
}

#trustCarousel {
    overflow: hidden;
}

#trustCarousel .carousel-inner {
    overflow: visible;
}

.trust-slider-prev,
.trust-slider-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background-color: var(--primary-color);
    border: 0;
    opacity: 1;
    z-index: 10;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.trust-slider-prev {
    left: -0.5rem;
}

.trust-slider-next {
    right: -0.5rem;
}

.trust-slider-prev:hover,
.trust-slider-next:hover {
    background-color: var(--primary-dark);
}

.trust-slider-prev:focus,
.trust-slider-next:focus {
    box-shadow: 0 0 0 2px var(--primary-light);
}

.trust-slider-prev i,
.trust-slider-next i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.trust-indicators {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 0;
    bottom: auto;
}

.trust-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background-color: var(--text-gray);
    opacity: 0.5;
    border: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.trust-indicators button.active {
    background-color: var(--primary-color);
    opacity: 1;
}

.trust-indicators button:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .trust-slider-wrapper {
        padding: 0 2.5rem;
    }
    .trust-slider-prev {
        left: 0;
    }
    .trust-slider-next {
        right: 0;
    }
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: var(--text-white);
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info {
    background: var(--dark-bg-light);
    padding: 2rem;
    border-radius: 0;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.contact-icon i {
    color: var(--text-white);
    font-size: 1.125rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
    filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.4));
}

.contact-form {
    background: var(--dark-bg-light);
    padding: 2rem;
    border-radius: 0;
}

.contact-form .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.25), 0 0 15px var(--accent-glow);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 60px 0 0;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.footer-logo-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.copyright {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.scroll-top {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.scroll-top:hover {
    color: var(--primary-color);
}

/* ============================================
   Page Header (for subpages)
   ============================================ */

.page-header {
    background-color: var(--dark-bg);
    padding: 120px 0 80px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ============================================
   Detail Page (Künstler, Moderatoren, News)
   ============================================ */

.detail-page .page-header {
    padding-top: 100px;
}

/* Kompakter Header: Bild bleibt im Sichtbereich */
.detail-header-compact {
    padding-top: 90px !important;
    padding-bottom: 1.5rem !important;
}

.detail-breadcrumb {
    position: relative;
    z-index: 1;
}

.detail-back {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.detail-back:hover {
    color: var(--primary-light);
}

.detail-h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.detail-subheadline {
    font-size: 1.35rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.detail-teaser {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 720px;
    position: relative;
    z-index: 1;
}

/* Teaser im Content-Bereich (direkt vor dem Text) */
.detail-content .detail-teaser {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Fließtext-Block (direkt nach Teaser) */
.detail-text {
    color: var(--text-dark);
    line-height: 1.75;
}

.detail-text p {
    margin-bottom: 1rem;
}

.detail-text p:last-child {
    margin-bottom: 0;
}

.detail-meta {
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.detail-cta .btn {
    border-radius: 0;
}

.detail-content {
    background-color: var(--light-bg);
}

.detail-content .container {
    position: relative;
}

.detail-image-block {
    margin: 0;
}

/* Bild im Sichtbereich: begrenzte Höhe, damit es above the fold bleibt */
.detail-image-above-fold {
    margin-top: 0;
}

.detail-image-above-fold .detail-main-image {
    max-height: 65vh;
    object-fit: cover;
}

.detail-main-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.detail-image-caption {
    font-size: 0.875rem;
}

.detail-section-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.detail-video-wrapper {
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.detail-video-wrapper iframe {
    border: 0;
}

.detail-audio-wrapper {
    padding: 1.5rem;
    background: var(--dark-bg-lighter);
    border: 1px solid var(--border-color);
}

.detail-audio {
    width: 100%;
    max-width: 100%;
    height: 48px;
}

.detail-audio::-webkit-media-controls-panel {
    background: var(--dark-bg-light);
}

/* Detail Gallery */
.detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.detail-gallery-item {
    display: block;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.detail-gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(174, 24, 51, 0.15);
}

.detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.detail-gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lightbox-caption {
    color: var(--text-white);
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.75rem;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 0.9rem;
    z-index: 10000;
}

@media (max-width: 768px) {
    .detail-h1 {
        font-size: 1.75rem;
    }
    .detail-subheadline {
        font-size: 1.1rem;
    }
    .detail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* ============================================
   Moderator Cards
   ============================================ */

.moderatoren-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.moderator-card {
    background: var(--dark-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.moderator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--primary-color), 0 0 20px var(--accent-glow);
    border-color: var(--primary-color);
}

.moderator-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.moderator-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--dark-bg);
}

.moderator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.moderator-card:hover .moderator-image img {
    transform: scale(1.05);
}

.moderator-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.moderator-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.moderator-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ============================================
   Künstler Cards
   ============================================ */

.kuenstler-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.kuenstler-card {
    background: var(--dark-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kuenstler-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--primary-color), 0 0 20px var(--accent-glow);
    border-color: var(--primary-color);
}

.kuenstler-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.kuenstler-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--dark-bg);
}

.kuenstler-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kuenstler-card:hover .kuenstler-image img {
    transform: scale(1.05);
}

.kuenstler-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kuenstler-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.kuenstler-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ============================================
   News Cards
   ============================================ */

.news-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.news-card {
    background: var(--dark-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--primary-color), 0 0 20px var(--accent-glow);
    border-color: var(--primary-color);
}

.news-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-image {
    width: 100%;
    overflow: hidden;
    background: var(--dark-bg);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ============================================
   Leistungen Detail Page
   ============================================ */

.leistungen-detail-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
}

.leistung-item {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.leistung-item:last-child {
    border-bottom: none;
}

.leistung-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.leistung-item:hover .leistung-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.4);
}

.leistung-icon-large i {
    font-size: 3rem;
    color: var(--text-white);
}

.leistung-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.leistung-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leistung-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.leistung-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--dark-bg-light);
    border-left: 4px solid var(--primary-color);
}

.leistung-features-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.leistung-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leistung-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 1rem;
}

.leistung-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: var(--dark-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.leistung-image:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.2);
}

.leistung-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leistung-item:hover .leistung-image img {
    transform: scale(1.05);
}

/* Alternating layout for visual interest */
.leistung-item:nth-child(even) .leistung-image {
    order: -1;
}

@media (max-width: 991px) {
    .leistung-title {
        font-size: 2rem;
    }
    
    .leistung-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .leistung-icon-large i {
        font-size: 2.5rem;
    }
    
    .leistung-image {
        min-height: 300px;
        margin-top: 2rem;
    }
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 80px 0;
}

/* ============================================
   Button Styles for Dark Cards
   ============================================ */

.moderator-card .btn-outline-primary,
.kuenstler-card .btn-outline-primary,
.news-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 0 !important;
}

.moderator-card .btn-outline-primary:hover,
.kuenstler-card .btn-outline-primary:hover,
.news-card .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title,
    .section-title-white {
        font-size: 2rem;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .hero-attributes {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title,
    .section-title-white {
        font-size: 1.75rem;
    }
    
    .expertise-section,
    .about-section,
    .artists-section,
    .references-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .footer {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .expertise-card,
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .stats-bar {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
.leistung-list {
  list-style: none;  /* Standard-Bullets entfernen */
  margin: 0;
  padding: 0;
}

.leistung-list li {
  position: relative;
  padding-left: 14px;  /* Platz für das Quadrat */
  margin: 6px 0;
}

.leistung-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;                 /* optische Vertikalausrichtung zur Textzeile */
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #ef4444;  /* #ef4444 */
}
.defaultfont.lowContrast {
    display: none;
}