/* Lars Ritter Design System - Enhanced Styles */

/* Global Variables */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --secondary-color: #64748b;
    --background-dark: #0f172a;
    --background-card: rgba(30, 41, 59, 0.3);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: rgba(148, 163, 184, 0.1);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, #1e293b 100%);
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
    margin: 0;
    line-height: 1.6;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

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

/* Font Family */
.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* Glassmorphism Effects */
.glass-card {
    background: var(--background-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.glass-card:hover {
    /* Hover-Effekte entfernt */
}

.stats-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(148, 163, 184, 0.25);
}

.feature-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(148, 163, 184, 0.25);
}

.portfolio-card {
    background: var(--background-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.portfolio-image {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 2px;
    width: auto;
    background: transparent;
}

.nav-link i {
    font-size: 1.1em;
    min-width: 1.2em;
    text-align: center;
    opacity: 0.85;
}

.nav-link.active, .nav-link:hover {
    background: rgba(59, 130, 246, 0.18);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

/* Hervorhebung für "Kontaktiere mich" Menüpunkt in Türkis/Pastellgrün */
.nav-link[data-page="kontaktiere-mich"] {
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.15), rgba(20, 184, 166, 0.08));
    border: 1px solid rgba(56, 178, 172, 0.3);
    color: #5eead4;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(56, 178, 172, 0.15);
    position: relative;
    overflow: hidden;
}

.nav-link[data-page="kontaktiere-mich"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link[data-page="kontaktiere-mich"]:hover {
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.25), rgba(20, 184, 166, 0.15));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(56, 178, 172, 0.25);
    border-color: rgba(56, 178, 172, 0.5);
}

.nav-link[data-page="kontaktiere-mich"]:hover::before {
    opacity: 1;
}

.nav-link[data-page="kontaktiere-mich"].active {
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.3), rgba(20, 184, 166, 0.2));
    color: #2dd4bf;
    border-color: rgba(56, 178, 172, 0.6);
    box-shadow: 0 4px 20px rgba(56, 178, 172, 0.3);
}

.nav-link[data-page="kontaktiere-mich"] i {
    color: #5eead4;
    text-shadow: 0 0 8px rgba(94, 234, 212, 0.3);
}

/* Footer Links Styling */
.footer-link {
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

/* Section Separation & Visual Hierarchy */
section {
    position: relative;
    margin-bottom: 4rem;
}

section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
}

/* Enhanced Section Headers */
section h2 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

/* Content Container Improvements */
.content-section {
    background: rgba(30, 41, 59, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Grid Spacing Improvements */
.grid {
    gap: 2rem;
}

/* Enhanced Glass Cards */
.glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.glass-card:hover {
    /* Hover-Effekte entfernt */
}

/* Language Switcher - Entfernt da nicht verwendet */

/* TidyCal Widget Styling - Optimiert für mobile Ansicht */
.tidycal-container {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    /* Entfernt alle inneren Abstände für maximale Widget-Größe */
}

.tidycal-container .tidycal-embed {
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

/* TidyCal responsive Anpassungen */
@media (max-width: 768px) {
    .tidycal-container {
        margin: 0 -0.5rem; /* Erweitert das Widget über die normalen Seitenränder hinaus */
        border-radius: 16px;
        border: 1px solid rgba(59, 130, 246, 0.15);
    }
    
    .tidycal-container .tidycal-embed {
        min-height: 650px; /* Etwas höher auf mobilen Geräten */
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .tidycal-container {
        margin: 0 -1rem; /* Noch weiter ausgedehnt auf sehr kleinen Bildschirmen */
        border-radius: 12px;
    }
    
    .tidycal-container .tidycal-embed {
        min-height: 700px;
        border-radius: 12px;
    }
}

/* Buttons - Improved Readability */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
    min-height: 48px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn i {
    margin-right: 0.75rem;
    font-size: 1.1em;
}

.btn-primary {
    background: rgba(59, 130, 246, 0.25);
    backdrop-filter: blur(12px);
    color: #ffffff;
    border: 2px solid rgba(59, 130, 246, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    background: rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.7);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(148, 163, 184, 0.2);
    color: var(--text-secondary);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.btn-secondary:hover {
    background: rgba(148, 163, 184, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(148, 163, 184, 0.3);
}

/* Prominenter CTA Button */
.btn-cta-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 16px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-cta-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.5);
}



/* Form Elements */
.input-group {
    display: flex;
    align-items: center;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.input-group i {
    margin-right: 0.75rem;
    color: var(--text-secondary);
}

.input-field {
    background: transparent;
    border: none;
    color: var(--text-primary);
    flex: 1;
    outline: none;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.input-field::placeholder {
    color: var(--secondary-color);
}

/* Clean Minimalist CTA Footer */
.cta-footer {
    position: relative;
    z-index: 10;
}

.cta-minimal {
    background: rgba(59, 130, 246, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    overflow: hidden;
}

.cta-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
}

.cta-minimal:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 16px 48px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.9));
    color: #ffffff;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 
        0 12px 32px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.cta-button i {
    font-size: 1.1em;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Bullet Cards */
.bullet-card {
    transition: var(--transition);
    cursor: pointer;
}

.bullet-card:hover,
.bullet-card:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .glass-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    h1 { font-size: clamp(1.75rem, 6vw, 3rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    
    /* Mobile CTA Anpassungen */
    .cta-minimal {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
    
    /* Mobile Section Spacing */
    section {
        margin-bottom: 3rem;
    }
    
    section:not(:last-child)::after {
        bottom: -1.5rem;
        width: 60%;
        max-width: 150px;
    }
    
    .content-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .glass-card {
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .nav-link {
        padding: 0.625rem 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Small Screen CTA Anpassungen */
    .cta-minimal {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

/* Animation Classes */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.focus-ring {
    transition: var(--transition);
}

.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.color-transition {
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* SCROLLBAR STYLES ENTFERNT - SIEHE ENDE DER DATEI */

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

/* Utility Classes */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.success {
    color: #10b981 !important;
    border-color: #10b981 !important;
}

.error {
    color: #ef4444 !important;
    border-color: #ef4444 !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6) border-box;
}

/* Mobile Menu Button Enhanced Styling */
#mobile-menu-btn {
    background: rgba(59, 130, 246, 0.15) !important;
    border: 2px solid rgba(59, 130, 246, 0.4) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2), 0 0 20px rgba(59, 130, 246, 0.1) !important;
    padding: 0.875rem !important;
}

/* Mobile-spezifische Anpassung für Sprachschalter - Entfernt */

/* Kontakt-Karten Gleichhöhe und einheitliche Abstände */
.contact-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.contact-card-header {
    flex-shrink: 0;
}

.contact-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 1.5rem 0;
}

.contact-card-footer {
    flex-shrink: 0;
    margin-top: auto;
}

.contact-card .contact-description {
    height: 3.5rem; /* Feste Höhe für Beschreibungstext */
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-card .contact-timing {
    margin-bottom: 1.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Anpassungen für Kontakt-Karten */
@media (max-width: 768px) {
    .contact-card {
        min-height: 380px;
    }
    
    .contact-card .contact-description {
        height: auto;
        min-height: 3rem;
    }
}

#mobile-menu-btn:hover {
    background: rgba(59, 130, 246, 0.25) !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3), 0 0 25px rgba(59, 130, 246, 0.15) !important;
    transform: scale(1.05) !important;
}

#mobile-menu-btn i {
    font-size: 1.25rem !important;
    color: #60a5fa !important;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.5) !important;
}

#mobile-menu-btn:hover i {
    color: #3b82f6 !important;
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.7) !important;
}

/* Enhanced focus state */
#mobile-menu-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4), 0 4px 12px rgba(59, 130, 246, 0.2) !important;
}

/* Print Styles */
@media print {
    .sidebar,
    .mobile-menu-btn,
    .cta-footer {
        display: none !important;
    }
    
    .main {
        margin-left: 0 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .glass-card {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid var(--primary-color);
    }
    
    .nav-link.active {
        background: var(--primary-color);
        color: white;
    }
}

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

/* ==============================================
   SCROLLBAR FINAL OVERRIDE - MUSS GANZ AM ENDE STEHEN
   ============================================== */

/* Entferne alle bestehenden Scrollbar-Styles */
html, body, div, main, section, article, aside, nav, header, footer, 
form, input, textarea, select, button, a, span, p, h1, h2, h3, h4, h5, h6,
ul, ol, li, table, tr, td, th, iframe, embed, object, audio, video {
    scrollbar-width: thin !important;
    scrollbar-color: #000000 #000000 !important;
}

/* Webkit - Alle Elemente */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
div::-webkit-scrollbar,
main::-webkit-scrollbar,
section::-webkit-scrollbar,
article::-webkit-scrollbar,
aside::-webkit-scrollbar,
nav::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
    background: #000000 !important;
    background-color: #000000 !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
div::-webkit-scrollbar-track,
main::-webkit-scrollbar-track,
section::-webkit-scrollbar-track,
article::-webkit-scrollbar-track,
aside::-webkit-scrollbar-track,
nav::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background: #000000 !important;
    background-color: #000000 !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb,
main::-webkit-scrollbar-thumb,
section::-webkit-scrollbar-thumb,
article::-webkit-scrollbar-thumb,
aside::-webkit-scrollbar-thumb,
nav::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background: #000000 !important;
    background-color: #000000 !important;
    border: none !important;
    border-radius: 0 !important;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
div::-webkit-scrollbar-thumb:hover,
main::-webkit-scrollbar-thumb:hover,
section::-webkit-scrollbar-thumb:hover,
article::-webkit-scrollbar-thumb:hover,
aside::-webkit-scrollbar-thumb:hover,
nav::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
    background: #111111 !important;
    background-color: #111111 !important;
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
div::-webkit-scrollbar-corner,
main::-webkit-scrollbar-corner,
section::-webkit-scrollbar-corner,
article::-webkit-scrollbar-corner,
aside::-webkit-scrollbar-corner,
nav::-webkit-scrollbar-corner,
*::-webkit-scrollbar-corner {
    background: #000000 !important;
    background-color: #000000 !important;
}

/* Zusätzliche Overrides für spezifische Browser */
::-webkit-scrollbar {
    width: 8px !important;
    background: #000000 !important;
}

::-webkit-scrollbar-track {
    background: #000000 !important;
}

::-webkit-scrollbar-thumb {
    background: #000000 !important;
    border: none !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #111111 !important;
}

::-webkit-scrollbar-corner {
    background: #000000 !important;
}

/* Final Override für alle Browsser */
* {
    scrollbar-width: thin !important;
    scrollbar-color: #000000 #000000 !important;
}

html {
    scrollbar-width: thin !important;
    scrollbar-color: #000000 #000000 !important;
}

body {
    scrollbar-width: thin !important;
    scrollbar-color: #000000 #000000 !important;
} 