* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fffaf2;
    color: #17120f;
}
.page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px 28px;
}
.smallpage { max-width: 900px; }
.topnav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    gap: 8px;
    justify-content: center;
    background: #fffaf2;
    padding: 10px;
    border-bottom: 1px solid #e5cba7;
}
.topnav a {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff3dc;
    color: #17120f;
    text-decoration: none;
    font-weight: bold;
}
.topnav a.active {
    background: #b40f0f;
    color: white;
}
.kopf img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 16px 16px;
}
.eventbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    background: #fff3dc;
    margin: 16px 0;
    padding: 16px;
    border-radius: 12px;
}
.eventitem { display: flex; gap: 12px; align-items: center; }
.icon { font-size: 36px; }
.eventitem b, h2, h3 { color: #a31212; text-transform: uppercase; }
.intro {
    background: white;
    border: 1px solid #e5cba7;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    font-size: 18px;
}
.err {
    margin: 16px 0;
    padding: 14px;
    border-radius: 10px;
    font-weight: bold;
    background: #f6dddd;
    border: 1px solid #d48b8b;
}
.grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    margin-top: 16px;
}
.card {
    background: white;
    border: 1px solid #e5cba7;
    border-radius: 12px;
    padding: 18px;
    margin-top: 16px;
}
label { display: block; margin-top: 13px; font-weight: bold; }
small, .hint { color: #6a5a4c; font-size: 14px; text-transform: none; font-weight: normal; }
input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #bbb;
    border-radius: 6px;
    margin-top: 6px;
    font-size: 16px;
}
button, .buttonlink {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 18px;
    border: 0;
    border-radius: 8px;
    background: #b40f0f;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
button { width: 100%; font-size: 18px; }
.secondary { background: #6a5a4c; margin-left: 8px; }
.side { display: grid; gap: 18px; align-content: start; }
.stand { text-align: center; }
.big { font-size: 44px; color: #a31212; font-weight: bold; }
.bar { background: #eee; border-radius: 999px; height: 20px; overflow: hidden; }
.bar span { display: block; background: #b40f0f; height: 100%; }
.tablewrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 11px; border-bottom: 1px solid #ead8bd; text-align: left; }
th { background: #fff3dc; }
.center { text-align: center; }
.chips span {
    display: inline-block;
    background: #fff3dc;
    border: 1px solid #e5cba7;
    padding: 8px 12px;
    border-radius: 999px;
    margin: 4px;
}
footer { text-align: center; padding: 24px 0; font-size: 18px; }
@media (max-width: 800px) {
    .page { padding: 0 10px 24px; }
    .eventbox, .grid { grid-template-columns: 1fr; }
    .topnav { justify-content: stretch; }
    .topnav a { flex: 1; text-align: center; }
}
