@charset "utf-8";/* ============================================
   Modernes Design für brigitte-gossmann.de
   Elegantes, lesbares und responsives Design
   Verbesserungen für Gridbox Template
   ============================================ */

/* === Globale Verbesserungen === */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Moderne Typografie === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    color: #6c5ce7;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a:hover, a:focus {
    color: #5f4dd6;
    border-bottom-color: #6c5ce7;
}

/* === Header Verbesserungen === */
.header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff !important;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* === Navigation Verbesserungen === */
.navigation,
.ba-menu {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.navigation a,
.ba-menu a {
    color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
}

.navigation a:hover,
.ba-menu a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* === Content Verbesserungen === */
.body {
    padding: 2rem 0;
}

/* === Artikel & Content === */
article,
.ba-item,
.ba-post-content {
    line-height: 1.8;
}

article img,
.ba-item img,
.ba-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article img:hover,
.ba-item img:hover,
.ba-post-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* === Buttons === */
.btn,
.ba-btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-primary,
.ba-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.btn-primary:hover,
.ba-btn-primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #653d91 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* === Footer === */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 2.5rem 0;
    margin-top: 3rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.footer a {
    color: #ecf0f1;
    border-bottom-color: rgba(236, 240, 241, 0.5);
}

.footer a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .body {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* === Smooth Scroll Behavior === */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === Focus States für bessere Accessibility === */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(108, 92, 231, 0.5);
    outline-offset: 2px;
}

/* === Blockquotes für Zitate === */
blockquote {
    border-left: 4px solid #6c5ce7;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* === Verbesserte Listen === */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

ul li, ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

ul li::marker {
    color: #6c5ce7;
}

/* === Hover-Effekt für Links === */
a:not(.btn):not(.ba-btn) {
    position: relative;
    padding-bottom: 2px;
}

a:not(.btn):not(.ba-btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #6c5ce7;
    transition: width 0.3s ease;
}

a:not(.btn):not(.ba-btn):hover:after {
    width: 100%;
}

/* === Print Styles === */
@media print {
    .header,
    .navigation,
    .footer {
        display: none;
    }
    
    body {
        background: #ffffff;
    }
}

/* === Dark Mode Support (für moderne Browser) === */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(to bottom, #1a1a1a 0%, #2d2d2d 100%);
        color: #e0e0e0;
    }
}
lt-highlighter {
    display: none;

  
}
