/* ==========================================================================
   Zahnmedizin-Informationsplattform - Stylesheet
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #4A90A4;
    --primary-dark: #357A8C;
    --primary-light: #6BB3C7;
    --secondary-color: #2C3E50;
    --accent-color: #48C9B0;
    --background-light: #F8FAFB;
    --background-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-medium: #5D6D7E;
    --text-light: #95A5A6;
    --border-color: #E8EEF1;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    background: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-icon {
    font-size: 2rem;
}

.logo span {
    color: var(--primary-color);
}

/* Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 10px 16px;
    color: var(--text-medium);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    background: var(--background-light);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.8em;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-white);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    padding: 10px 20px;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--background-light);
}

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--background-white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.btn-accent {
    background: var(--primary-color);
    color: white;
}

.btn-accent:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* ==========================================================================
   Container & Sections
   ========================================================================== */

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

.section {
    padding: 80px 20px;
}

.section-light {
    background: var(--background-light);
}

.section-white {
    background: var(--background-white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
}

.card-link:hover {
    gap: 10px;
}

/* Feature Cards */
.feature-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.feature-card .card-icon {
    flex-shrink: 0;
}

/* Treatment Cards */
.treatment-card {
    display: flex;
    flex-direction: column;
}

.treatment-card .duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* Blog Cards */
.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card .meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.blog-card .category {
    background: var(--primary-light);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* ==========================================================================
   Two Column Layout
   ========================================================================== */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.two-col-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.two-col-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.two-col-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.two-col-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.two-col-content li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
}

.two-col-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

.contact-details .icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form {
    background: var(--background-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* ==========================================================================
   Steps / Process
   ========================================================================== */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-medium);
}

/* ==========================================================================
   Alert / Messages
   ========================================================================== */

.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.alert-info {
    background: #D1ECF1;
    color: #0C5460;
    border: 1px solid #BEE5EB;
}

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

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    padding-right: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: rgba(255,255,255,0.7);
}

.footer ul a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: white;
}

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

@media (max-width: 992px) {
    .two-col,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .two-col.reverse {
        direction: ltr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--background-white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--background-light);
        margin-top: 8px;
        border-radius: 8px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 50px 20px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.hidden { display: none; }

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

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

/* ==========================================================================
   LEXIKON STYLES
   ========================================================================== */

/* Hero Small Variant */
.hero-small {
    padding: 40px 0;
    min-height: auto;
}

.hero-small h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-small p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Lexikon Suche */
.lexikon-suche {
    margin: 30px 0;
}

.suche-form {
    max-width: 700px;
    margin: 0 auto;
}

.suche-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.suche-input {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.suche-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

/* Alphabet Navigation */
.alphabet-nav {
    margin: 30px 0;
    padding: 20px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.alphabet-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    list-style: none;
}

.alphabet-nav li a,
.alphabet-nav li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.alphabet-nav li a {
    background: var(--background-light);
    color: var(--text-dark);
}

.alphabet-nav li a:hover {
    background: var(--primary-color);
    color: white;
}

.alphabet-nav li a.active {
    background: var(--primary-color);
    color: white;
}

.alphabet-nav li span.disabled {
    background: transparent;
    color: var(--text-light);
    cursor: default;
}

/* Lexikon Content Layout */
.lexikon-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .lexikon-content {
        grid-template-columns: 1fr;
    }
    
    .lexikon-sidebar {
        order: -1;
    }
}

/* Sidebar */
.lexikon-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.sidebar-box h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--background-light);
}

.kategorie-liste {
    list-style: none;
}

.kategorie-liste li a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 0.95rem;
}

.kategorie-liste li a:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.kategorie-liste li a.active {
    background: var(--primary-color);
    color: white;
}

/* Begriffe Grid */
.begriffe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.begriff-card {
    display: block;
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.begriff-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.begriff-card h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.begriff-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

.kategorie-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--background-light);
    color: var(--text-medium);
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.kategorie-badge.large {
    font-size: 0.85rem;
    padding: 6px 14px;
}

/* Buchstaben Section */
.buchstaben-section {
    margin-bottom: 40px;
}

.buchstabe-header {
    font-size: 2rem;
    color: var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-light);
}

.ergebnis-count {
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Lexikon Eintrag Seite */
.lexikon-eintrag-page {
    padding-bottom: 60px;
}

.eintrag-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .eintrag-layout {
        grid-template-columns: 1fr;
    }
}

.eintrag-content {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.eintrag-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--background-light);
}

.eintrag-header h1 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 15px 0;
}

.kurzbeschreibung {
    font-size: 1.15rem;
    color: var(--text-medium);
    font-style: italic;
}

.eintrag-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.eintrag-text p {
    margin-bottom: 1.2em;
}

.eintrag-text a.lexikon-link {
    color: var(--primary-color);
    border-bottom: 1px dashed var(--primary-light);
}

.eintrag-text a.lexikon-link:hover {
    border-bottom-style: solid;
}

.eintrag-keywords {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--background-light);
}

.eintrag-keywords h3 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword-tags .tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--background-light);
    color: var(--text-medium);
    border-radius: 20px;
    font-size: 0.85rem;
}

.eintrag-navigation {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid var(--background-light);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Eintrag Sidebar */
.eintrag-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.verwandte-liste {
    list-style: none;
}

.verwandte-liste li {
    margin-bottom: 8px;
}

.verwandte-liste li a {
    display: block;
    padding: 10px 15px;
    background: var(--background-light);
    border-radius: 8px;
    color: var(--text-dark);
    transition: var(--transition);
}

.verwandte-liste li a:hover {
    background: var(--primary-color);
    color: white;
}

.info-box dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 15px;
}

.info-box dt {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.info-box dd {
    color: var(--text-dark);
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 8px;
}

.quick-links li a {
    color: var(--primary-color);
}

.quick-links li a:hover {
    color: var(--primary-dark);
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-page h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-page p {
    color: var(--text-medium);
    margin-bottom: 30px;
}
