/* |--------------------------------------------------------------------------
| AGURELEO LEXIKON - MASTER STYLESHEET (INTEGRATED VERSION)
|--------------------------------------------------------------------------
*/

/* --- 1. BASIS & TYPOGRAFIE --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

.container, .content-wrapper, .brand-header, nav, .article-nav, footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. BRAND & NAVIGATION --- */
.brand-header { padding: 30px 0; border-bottom: 1px solid #eee; text-align: center; }
.brand-name { font-size: 2.5rem; font-weight: bold; color: #2d6a4f; text-decoration: none; letter-spacing: 2px; }

nav.main-nav { margin-top: 20px; display: flex; justify-content: center; gap: 30px; }
nav.main-nav a { color: #333; font-weight: bold; text-decoration: none; transition: 0.3s; }
nav.main-nav a:hover, nav.main-nav a.active { color: #2d6a4f; }
nav.main-nav a.shop-link { color: #bc6c25; }

/* --- 3. BANNER-DESIGN (Kategorien) --- */
.banner { 
    position: relative; 
    height: 300px; 
    background: #2d6a4f; 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.banner img { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    object-fit: cover; 
    opacity: 0.6; 
    z-index: 1; 
    transition: transform 0.6s ease; 
}

.banner:hover img { transform: scale(1.05); }

.banner h2 { 
    position: relative; 
    z-index: 2; 
    color: white !important; 
    padding: 20px; 
    font-size: 2.5rem; 
    text-shadow: 3px 3px 12px rgba(0,0,0,0.8); 
    margin: 0 !important; 
    text-align: center;
    max-width: 80%;
}

/* --- 4. BOXEN & INFOGRAFIE --- */

/* Die sandfarbene Experten-Box */
.expert-box {
    background: #fdf8f3 !important;
    border-left: 6px solid #bc6c25 !important;
    padding: 35px;
    margin: 45px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 4px 4px 20px rgba(0,0,0,0.03);
}
.expert-box h2, .expert-box h3 { 
    font-size: 1.3rem; 
    color: #bc6c25 !important; 
    margin-top: 0; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* Die grünliche Fakten-Box (Key-Facts) */
.key-facts { 
    background: #f4f7f1 !important; 
    padding: 30px 40px; 
    border-radius: 15px; 
    list-style: none !important; 
    margin: 40px 0; 
    border: 1px solid #e9f5db;
}
.key-facts li { 
    margin-bottom: 15px; 
    padding-left: 40px; 
    position: relative; 
    font-weight: 500; 
    line-height: 1.6;
}
.key-facts li::before { 
    content: "✓"; 
    position: absolute; 
    left: 0; 
    color: #2d6a4f; 
    font-weight: bold; 
    font-size: 1.3rem; 
}

/* Farblich abgesetzte E-Mail/Newsletter Box */
.newsletter-box {
    background: #f4f7f1 !important;
    border-left: 6px solid #2d6a4f !important;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.02);
}

/* Shop Button & CTAs */
.shop-button {
    display: inline-block; background: #bc6c25; color: white !important;
    padding: 18px 35px; text-decoration: none; border-radius: 8px;
    font-weight: bold; font-size: 1.2rem; transition: 0.3s;
}
.shop-button:hover { background: #2d6a4f; transform: translateY(-3px); }

/* --- 5. ARTIKEL GRID --- */
.faq-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 15px; 
    list-style: none; 
    padding: 0; 
}

.item a { 
    display: block; 
    padding: 20px; 
    background: #fff; 
    border: 1px solid #eee; 
    border-radius: 12px; 
    text-decoration: none; 
    color: #2d6a4f; 
    font-weight: bold; 
    transition: 0.2s; 
}

.item a:hover { 
    background: #fdfaf3; 
    border-color: #bc6c25; 
    transform: translateY(-3px); 
}

/* --- 6. GLOSSAR & TOOLTIPS --- */
.autolink, .glossar-target { 
    border-bottom: 1px dotted #bc6c25; 
    cursor: help; 
    color: #bc6c25 !important; 
}

.tippy-box[data-theme~='light-border'] {
    background: #fff; color: #333; border: 1px solid #2d6a4f;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px;
    padding: 10px; font-size: 0.95rem;
}

/* --- 7. RESPONSIVE (MOBILE FIX) --- */
@media (max-width: 768px) {
    .brand-name { font-size: 1.8rem; }
    .banner h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .banner { 
        height: 180px !important; 
        margin-bottom: 20px;
    }

    .banner h2 { 
        font-size: 1.1rem !important; 
        line-height: 1.3 !important;
        padding: 10px 20px !important;
        max-width: 90% !important; 
        background: rgba(0,0,0,0.3); 
        border-radius: 10px;
    }
    
    .faq-grid { grid-template-columns: 1fr; }
    .expert-box, .key-facts, .newsletter-box { padding: 20px; }
}

/* --- 8. FOOTER --- */
footer { background: #333; color: #ccc; padding: 60px 0; text-align: center; margin-top: 50px; }
footer a { color: #fff; text-decoration: none; margin: 0 10px; }