
/* === Farbvariablen === */
:root {
    --ci-red: #BA1E0F;
    --light-gray: #f5f5f5;
    --mid-gray: #e2e6ea;
    --dark-gray: #333;
    --text-color: #222;
    --white: #fff;
}

/* === Grundlayout === */
html, body {
    background-color: var(--light-gray);
    color: var(--text-color);
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.container-fluid {
    max-width: 1000px;
    padding: 0.5rem;
}

/* === Event Cards === */
.event {
    background: var(--white);
    border-left: 6px solid var(--ci-red);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.event:nth-child(even) {
    background-color: #fafafa;
}

/* === Event-Inhalte === */
.remark {
    font-weight: 600;
    color: var(--ci-red);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.event .col-12,
.event .col-8,
.event .col-4 {
    padding: 2px 0;
    color: var(--dark-gray);
}

.event .text-right {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .event {
        padding: 0.75rem;
    }
    .remark {
        font-size: 1rem;
    }
}

/* === Optional: Kopfbereich, Titel usw. === */
h1, h2, h3 {
    color: var(--ci-red);
    font-weight: 700;
}

/* === Auswahlfarben (Highlight) === */
::selection {
    background: var(--ci-red);
    color: var(--white);
}
::-moz-selection {
    background: var(--ci-red);
    color: var(--white);
}
