/**
 * KoKI Chatbot - Landing Page Styles
 *
 * Styling für die KoKI-Informationsseite (frame_class-Varianten der
 * Inhaltselemente). Wird seitenweit eingebunden.
 */

/* Seiten-Grundlayout */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1e293b;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* Inhaltscontainer: lesbare Breite, zentriert */
.frame {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Logo-Element: zentriert, feste Breite 200px */
.frame-koki-logo {
    text-align: center;
    margin: 2rem 0 1rem;
}

.frame-koki-logo img {
    width: 200px;
    height: auto;
}

/* Hero-Bereich: größerer Einleitungstext */
.frame-koki-hero {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    margin: 1.5rem auto 2rem;
    max-width: 800px;
}

.frame-koki-hero h1,
.frame-koki-hero h2 {
    color: #ffffff;
    margin-top: 0;
}

.frame-koki-hero p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Highlight-Box für Sicherheit & Compliance */
.frame-koki-highlight {
    background: #f1f5f9;
    border-left: 4px solid #2563eb;
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem auto;
    max-width: 800px;
}

.frame-koki-highlight h2 {
    color: #1d4ed8;
    margin-top: 0;
}

/* Aufzählungsliste der Merkmale ansprechender gestalten */
.frame-type-bullets ul {
    list-style: none;
    padding: 0;
}

.frame-type-bullets li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.8rem;
    border-bottom: 1px solid #e2e8f0;
}

.frame-type-bullets li:last-child {
    border-bottom: none;
}

.frame-type-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: #2563eb;
    font-weight: bold;
}

/* Link zur koki.nrw Website hervorheben */
.frame-koki-highlight a,
.frame-koki-hero a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

/* Standard-Bildgrößen von fluid_styled_content für das Logo überschreiben */
.frame-koki-logo .ce-gallery img,
.frame-koki-logo .ce-image img {
    width: 200px !important;
    height: auto !important;
}

/* Seiten-Footer */
.koki-page-footer {
    margin-top: 3rem;
    padding: 1.5rem 1rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.koki-page-footer a {
    color: #2563eb;
    text-decoration: none;
}

.koki-page-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .frame-koki-hero {
        padding: 1.5rem 1rem;
    }
}
