/**
 * Wiki Home CSS - Dark Mode
 * Spezielles Styling für die Wiki-Startseite
 */

.wiki-home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.wiki-home-heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0 1rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wiki-home-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .wiki-home-heading {
        font-size: 2.5rem;
    }
    
    .wiki-home-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .wiki-home-heading {
        font-size: 2rem;
    }
    
    .wiki-home-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .wiki-home-container {
        padding: 1rem 0;
    }
    
    .wiki-home-heading {
        font-size: 1.75rem;
    }
    
    .wiki-home-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}
