:root {
    --drk-rot: rgb(230, 0, 5);
    --drk-softrot: rgb(228, 100, 80);
    --drk-dunkelrot: rgb(165, 30, 15);
    --drk-dunkelblau: rgb(0, 45, 85);
    --drk-mittelblau: rgb(0, 140, 205);
    --drk-volltonblau: rgb(34, 117, 208);
    --drk-hellblau: rgb(235, 245, 255);
    --drk-grau: rgb(85, 79, 74);
    --drk-mittelgrau: rgb(180, 180, 180);
    --drk-hellgrau: rgb(239, 238, 234);
    --weiss: #FFFFFF;
    --schwarz: #333333;
}

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

body {
    font-family: 'Helvetica Neue', 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--drk-grau);
    background-color: var(--weiss);
    font-size: 16px;
    font-weight: 300;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { color: var(--drk-softrot); font-weight: 500; line-height: 1.3; }
h1 { font-size: 2.5em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1.0em; }

p { color: var(--drk-grau); font-weight: 300; line-height: 1.6; margin-bottom: 1em; }

/* Links */
a { color: var(--drk-volltonblau); text-decoration: underline; transition: color 0.3s ease; }
a:hover, a:focus { color: var(--drk-mittelblau); }

/* Telefon/E-Mail Links */
a[href^="tel:"], a[href^="mailto:"] { color: inherit !important; text-decoration: none !important; font-weight: 500; }
a[href^="tel:"]:hover, a[href^="mailto:"]:hover { color: var(--drk-rot) !important; }
.contact-card a[href^="tel:"], .contact-card a[href^="mailto:"] { color: var(--weiss) !important; opacity: 0.9; }
.contact-card a[href^="tel:"]:hover, .contact-card a[href^="mailto:"]:hover { opacity: 1; text-shadow: 0 0 5px rgba(255,255,255,0.3); }

/* Veranstaltungslinks styling */
.veranstaltung-link::before {
    content: "🔗 ";
    font-size: 11px;
    opacity: 0.6;
}

.veranstaltung-link {
    color: inherit !important;
    text-decoration: none !important;
    font-weight: 500;
    border-bottom: 1px dotted var(--drk-mittelgrau);
    transition: all 0.2s ease;
}

.veranstaltung-link:hover {
    color: var(--drk-rot) !important;
    border-bottom-color: var(--drk-rot);
    border-bottom-style: solid;
}

/* Logo */
.drk-logo { height: 70px; width: auto; padding: 8px; background: var(--weiss); border-radius: 4px; margin: 8px 0; }
.logo-section { display: flex; align-items: center; gap: 20px; margin-right: 16px; }
.logo-section:hover .drk-logo { opacity: 0.9; transition: opacity 0.3s ease; }

/* Header */
header { background: var(--weiss); border-bottom: 3px solid var(--drk-rot); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.header-content { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; min-height: 80px; }
.header-text h1 { font-size: 28px; color: var(--drk-softrot); margin: 0; font-weight: 500; letter-spacing: -0.5px; }
.header-text h1 .drk-highlight { color: var(--drk-rot); }
.header-text p { font-size: 16px; color: var(--drk-dunkelblau); margin: 5px 0 0 0; font-weight: 300; }

/* Navigation Desktop */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px; /* Reduziert von 35px auf 20px */
    flex-wrap: nowrap; /* Verhindert Umbruch */
    white-space: nowrap; /* Verhindert Textumbruch */
}
nav a {
    text-decoration: none;
    color: var(--drk-dunkelblau);
    font-weight: 400;
    font-size: 15px; /* Reduziert von 16px auf 15px */
    padding: 8px 0;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap; /* Verhindert Umbruch der Links */
}
nav a:hover, nav a:focus { color: var(--drk-mittelblau); border-bottom-color: var(--drk-mittelblau); }

/* Mobile Menu Toggle */
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; position: relative; }
.hamburger { width: 24px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; transition: all 0.3s ease; }
.hamburger span { display: block; height: 3px; width: 100%; background: var(--drk-dunkelblau); border-radius: 2px; transition: all 0.3s ease; }
.mobile-menu-toggle.active .hamburger span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); background: var(--drk-rot); }
.mobile-menu-toggle.active .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--drk-rot); }

/* Mobile Navigation */
.mobile-nav { display: none; position: fixed; top: 0; right: 0; width: 100%; max-width: 320px; height: 100vh; background: var(--weiss); z-index: 1000; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-content { padding: 20px; height: 100%; display: flex; flex-direction: column; }
.mobile-nav-header { padding: 20px 0 30px 0; border-bottom: 2px solid var(--drk-rot); margin-bottom: 30px; }
.mobile-nav-header h2 { color: var(--drk-dunkelblau); font-size: 1.5em; font-weight: 600; margin: 0; text-align: center; }
.mobile-close { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 28px; color: var(--drk-dunkelblau); cursor: pointer; padding: 5px; z-index: 1002; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s ease; }
.mobile-close:hover { background: var(--drk-hellgrau); color: var(--drk-rot); }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; flex: 1; }
.mobile-nav-list li { margin-bottom: 8px; }
.mobile-nav-list a { display: block; padding: 18px 20px; font-size: 18px; color: var(--drk-dunkelblau); text-decoration: none; font-weight: 500; border-radius: 8px; border: 2px solid transparent; transition: all 0.3s ease; position: relative; }
.mobile-nav-list a:hover, .mobile-nav-list a:focus { background: var(--drk-hellblau); border-color: var(--drk-rot); color: var(--drk-rot); transform: translateX(5px); }
.mobile-nav-list a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 0; background: var(--drk-rot); transition: height 0.3s ease; border-radius: 2px; }
.mobile-nav-list a:hover::before { height: 60%; }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.5); z-index: 999; display: none; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.active { display: block; opacity: 1; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--drk-rot) 0%, var(--drk-dunkelblau) 100%); color: var(--weiss); padding: 100px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.1); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero h2 { font-size: 3.5em; margin-bottom: 25px; font-weight: 700; line-height: 1.2; letter-spacing: -1px; color: var(--weiss); }
.hero-subtitle { font-size: 1.3em; margin-bottom: 40px; font-weight: 300; line-height: 1.5; opacity: 0.95; color: var(--weiss); }

/* Buttons */
.cta-button { display: inline-block; background: var(--drk-rot); color: var(--weiss); padding: 18px 45px; text-decoration: none; border-radius: 6px; font-weight: 500; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.15); border: 2px solid var(--drk-rot); }
.cta-button:hover { background: var(--drk-dunkelrot); border-color: var(--drk-dunkelrot); color: var(--weiss); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0,0,0,0.25); }

/* Scroll to Top Button */
.scroll-to-top { position: fixed; bottom: 30px; right: 30px; width: 55px; height: 55px; background: var(--drk-rot); color: var(--weiss); border: none; border-radius: 50%; font-size: 24px; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 1000; box-shadow: 0 4px 15px rgba(230, 0, 5, 0.3); display: flex; align-items: center; justify-content: center; }
.scroll-to-top:hover { background: var(--drk-dunkelrot); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230, 0, 5, 0.4); }
.scroll-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Sections */
section { padding: 80px 0; }
.section-alt { background: var(--drk-hellgrau); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--drk-softrot); font-size: 2.8em; margin-bottom: 20px; font-weight: 500; letter-spacing: -0.5px; }
.section-header p { font-size: 1.2em; color: var(--drk-grau); max-width: 700px; margin: 0 auto; line-height: 1.6; font-weight: 300; }

/* Grid & Cards - KORRIGIERT für gleiche Höhen */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 50px; align-items: stretch; }

.card { background: var(--weiss); padding: 1rem; border-radius: 8px; box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; border-top: 4px solid var(--drk-rot); display: flex; flex-direction: column; height: 100%; }
.card:hover { transform: translateY(-8px); box-shadow: 0 8px 30px rgba(0,45,85,0.15); }

.card-content { flex: 1; padding: 40px 30px 20px 30px; display: flex; flex-direction: column; }
.card-content h4 { color: var(--drk-softrot); margin-bottom: 15px; font-size: 1.4em; font-weight: 500; }
.card-content p { color: var(--drk-grau); line-height: 1.6; margin-bottom: 15px; font-weight: 300; }
.card-content ul { margin: 20px 0 0 0; padding-left: 20px; flex: 1; }
.card-content li { color: var(--drk-grau); margin-bottom: 8px; font-weight: 300; }
.card-content strong { font-weight: 500; color: var(--drk-dunkelblau); }

.card-contact { margin-top: auto; padding: 15px 30px; background: var(--drk-hellblau); border-top: 1px solid var(--drk-mittelgrau); border-radius: 0 0 8px 8px; font-size: 0.95em; }
.card-contact strong { color: var(--drk-dunkelblau); font-weight: 600; }

/* Fallback für Cards ohne card-content/card-contact Struktur */
.card h4 { color: var(--drk-softrot); margin-bottom: 15px; font-size: 1.4em; font-weight: 500; }
.card p { color: var(--drk-grau); line-height: 1.6; margin-bottom: 15px; font-weight: 300; }
.card ul { margin: 20px 0; padding-left: 20px; }
.card li { color: var(--drk-grau); margin-bottom: 8px; font-weight: 300; }
.card strong { font-weight: 500; color: var(--drk-dunkelblau); }

/* Highlight Box */
.highlight-box { background: var(--drk-hellblau); padding: 30px; border-radius: 8px; border-left: 5px solid var(--drk-rot); margin: 40px 0; }
.highlight-box h3 { color: var(--drk-softrot); margin-bottom: 15px; font-weight: 500; }
.highlight-box p { color: var(--drk-grau); font-weight: 300; }
.highlight-box strong { font-weight: 500; color: var(--drk-dunkelblau); }

/* Quick Highlights - besseres Design */
.quick-highlights { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; 
    margin: 25px 0; 
}

.quick-item { 
    background: var(--weiss);
    padding: 20px; 
    border-radius: 8px; 
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--drk-rot);
    transition: all 0.2s ease;
}

.quick-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.quick-item.full-width {
    grid-column: 1 / -1;
    text-align: center;
}

.quick-date { 
    font-weight: 700; 
    color: var(--drk-rot); 
    font-size: 18px; 
    margin-bottom: 8px;
    display: block;
}

.quick-title { 
    font-size: 15px; 
    color: var(--drk-grau); 
    line-height: 1.3;
    font-weight: 400;
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin: 50px 0; }
.stat-item { text-align: center; padding: 30px 20px; }
.stat-number { font-size: 3em; font-weight: 700; color: var(--drk-rot); display: block; }
.stat-label { font-size: 1.1em; color: var(--drk-dunkelblau); font-weight: 500; }

/* Termine */
.termine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.termine-box { background: var(--weiss); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.termine-header { background: var(--drk-dunkelblau); color: var(--weiss); padding: 25px 30px; font-weight: 500; font-size: 1.3em; }
.termine-liste { padding: 0; }
.termin-item { display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; border-bottom: 1px solid var(--drk-mittelgrau); transition: background 0.3s ease; }
.termin-item:last-child { border-bottom: none; }
.termin-item:hover { background: var(--drk-hellblau); }
.termin-datum { font-weight: 500; color: var(--drk-rot); min-width: 110px; font-size: 0.95em; }
.termin-titel { color: var(--drk-grau); flex-grow: 1; margin-left: 20px; font-weight: 400; }

/* Contact */
.contact-section { background: var(--drk-dunkelblau); color: var(--weiss); padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 40px; }
.contact-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 8px; }
.contact-card h4 { color: var(--weiss); margin-bottom: 20px; font-size: 1.3em; font-weight: 500; }
.contact-card p { line-height: 1.8; opacity: 0.9; color: var(--weiss); font-weight: 300; }
.contact-card strong { color: var(--weiss); opacity: 1; font-weight: 500; }
.contact-card em { font-style: italic; opacity: 0.8; font-weight: 300; }

/* Footer */
footer { background: var(--drk-dunkelblau); color: var(--weiss); text-align: center; padding: 40px 0; }
footer p { margin-bottom: 8px; opacity: 1; font-weight: 300; color: var(--weiss); }
footer a { color: var(--weiss); text-decoration: none; transition: color 0.3s ease; font-weight: 400; }
footer a:hover { color: var(--drk-softrot); }

/* Footer Social Media */
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; gap: 30px; }
.footer-info { flex: 1; }
.footer-social { text-align: center; }
.footer-social h4 { color: var(--weiss); margin-bottom: 15px; font-size: 1.1em; }
.social-links { display: flex; gap: 15px; justify-content: center; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; color: var(--weiss); font-weight: bold; transition: all 0.3s ease; font-size: 18px; }
.social-icon.facebook:hover { background: #1877f2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.footer-links { text-align: center; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }

/* FAQ Styling - MIT ROTEM KREUZ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; background: var(--weiss); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq-question { width: 100%; padding: 20px 25px; background: none; border: none; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 500; color: var(--drk-dunkelblau); transition: all 0.3s ease; }
.faq-question:hover { background: var(--drk-hellblau); }
.faq-question[aria-expanded="true"] { background: var(--drk-hellblau); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--drk-rot); }

/* KREUZ ROT MACHEN */
.faq-icon { 
    font-size: 24px; 
    font-weight: bold; 
    color: var(--drk-rot); /* JETZT ROT statt blau */
    transition: all 0.3s ease; 
}

.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-answer[aria-hidden="false"] { padding: 25px 25px 20px 25px; max-height: 200px; }
.faq-answer p { color: var(--drk-grau); line-height: 1.6; margin: 0; }

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

/* Focus */
/*:focus { outline: 2px solid var(--drk-softrot); outline-offset: 2px; }*/

@media (max-width: 1200px) {
    nav ul {
        gap: 15px;
    }
    
    nav a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    nav ul {
        gap: 12px;
    }
    
    nav a {
        font-size: 13px;
    }
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    /* Header kompakt */
    .header-content { padding: 8px 0; min-height: auto; gap: 10px; flex-direction: row; justify-content: space-between; align-items: center; }
    .logo-section { gap: 12px; margin-right: 8px; }
    .drk-logo { height: 45px; padding: 4px; margin: 4px 0; }
    .header-text h1 { font-size: 20px; line-height: 1.1; }
    .header-text p { font-size: 12px; line-height: 1.2; margin: 2px 0 0 0; }
    
    /* Navigation */
    .header-content nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .mobile-nav { display: block; }
    
    /* Scroll to Top Mobile */
    .scroll-to-top { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 20px; }
    
    /* Content */
    section { padding: 50px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 2em; margin-bottom: 15px; }
    .section-header p { font-size: 1.1em; }
    .hero { padding: 60px 0; }
    .hero h2 { font-size: 2.2em; margin-bottom: 20px; }
    .hero-subtitle { font-size: 1.1em; margin-bottom: 30px; }
    
    /* Grid */
    .grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; text-align: center; justify-items: center; }
    .stat-item { padding: 20px 10px; width: 100%; }
    .stat-number { font-size: 2.5em; }
    .termine-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    
    /* Quick Highlights Mobile */
    .quick-highlights { 
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .quick-item {
        padding: 18px;
    }
    
    .quick-date {
        font-size: 16px;
    }
    
    .quick-title {
        font-size: 14px;
    }

    
    /* Cards Mobile */
    .card-content { padding: 25px 20px 15px 20px; }
    .card-content h4 { font-size: 1.2em; margin-bottom: 12px; }
    .card-contact { padding: 12px 20px; font-size: 0.9em; }
    
    /* Fallback Cards */
    .card { padding: 25px 20px; }
    .card h4 { font-size: 1.2em; margin-bottom: 12px; }
    
    .highlight-box { padding: 20px; margin: 30px 0; }
    .contact-section { padding: 40px 0; }
    .contact-card { padding: 20px; }
    
    /* Termine */
    .termin-item { flex-direction: column; align-items: flex-start; gap: 10px; padding: 15px 20px; }
    .termin-titel { margin-left: 0; }
    
    /* Buttons */
    .cta-button { padding: 15px 30px; font-size: 1em; display: block; text-align: center; max-width: 280px; margin: 0 auto; }
    
    /* Mobile Nav anpassen */
    .mobile-nav { max-width: 280px; }
    .mobile-nav-list a { padding: 16px 18px; font-size: 16px; }
    
    /* Mobile Footer */
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .footer-social { order: -1; }
    .social-links { justify-content: center; }
    .faq-question { padding: 15px 20px; font-size: 15px; }
    .faq-answer[aria-hidden="false"] { padding: 0 20px 15px 20px; }
}

@media (max-width: 480px) {
    .header-content { padding: 6px 0; }
    .drk-logo { height: 40px; padding: 3px; }
    .header-text h1 { font-size: 18px; }
    .header-text p { font-size: 11px; }
    .hamburger { width: 22px; height: 16px; }
    
    /* Scroll to Top sehr kleine Screens */
    .scroll-to-top { bottom: 15px; right: 15px; width: 45px; height: 45px; font-size: 18px; }
    
    section { padding: 40px 0; }
    .hero { padding: 50px 0; }
    .hero h2 { font-size: 1.8em; }
    .section-header h2 { font-size: 1.8em; }
    
    /* Cards sehr kleine Screens */
    .card-content { padding: 20px 15px 12px 15px; }
    .card-contact { padding: 10px 15px; font-size: 0.85em; }
    .card { padding: 20px 15px; }
    
    .highlight-box { padding: 15px; }
    .cta-button { padding: 12px 25px; font-size: 0.95em; max-width: 250px; }
    .stats-grid { gap: 15px; }
    .stat-number { font-size: 2.2em; }
    .stat-label { font-size: 0.9em; }
}

/* Print */
@media print {
    .drk-logo { padding: 10px; margin: 10px 0; }
    .mobile-menu-toggle, .mobile-nav, .scroll-to-top, .cta-button { display: none; }
    a:after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
    .contact-card, .card { break-inside: avoid; page-break-inside: avoid; }
    h2, h3, h4 { break-after: avoid; page-break-after: avoid; }
}

/* Accessibility */
@media (prefers-contrast: high) {
    :root { --drk-grau: #000000; --drk-softrot: #CC0000; --drk-dunkelblau: #000066; }
    .card, .scroll-to-top { border: 2px solid var(--drk-grau); }
    .cta-button { border: 3px solid var(--drk-grau); }
}

@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; }
    .card:hover, .cta-button:hover, .scroll-to-top:hover { transform: none; }
}


/* Dokumente-Sektion */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.docs-category {
    background: var(--weiss);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--drk-rot);
}

.docs-category h4 {
    background: var(--drk-dunkelblau);
    color: var(--weiss);
    padding: 20px 25px;
    margin: 0;
    font-size: 1.2em;
    font-weight: 500;
}

.docs-list {
    padding: 20px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: var(--drk-hellgrau);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.doc-item:hover {
    background: var(--drk-hellblau);
    transform: translateX(5px);
    border-left-color: var(--drk-rot);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.doc-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.doc-info {
    flex: 1;
}

.doc-title {
    font-weight: 500;
    color: var(--drk-dunkelblau);
    margin-bottom: 5px;
    font-size: 16px;
}

.doc-meta {
    font-size: 0.9em;
    color: var(--drk-grau);
    line-height: 1.4;
}

.doc-meta small {
    font-size: 0.85em;
    opacity: 0.8;
}

/* Mobile Responsive für Dokumente */
@media (max-width: 768px) {
    .docs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .doc-item {
        padding: 12px;
        gap: 12px;
    }
    
    .doc-icon {
        font-size: 20px;
        width: 30px;
    }
    
    .doc-title {
        font-size: 14px;
    }
    
    .doc-meta {
        font-size: 0.8em;
    }
}


