/*
Theme Name: Bondorf Kultur Theme
Author: Gemini AI
Description: Ein schlichtes Theme für den Freundeskreis Kunst & Kultur Bondorf.
Version: 1.0
*/

:root {
    --primary-color: #a83232; /* Ein klassisches "Kultur-Rot" oder Vereinsfarbe */
    --text-color: #333;
    --bg-color: #f4f4f4;
    --white: #ffffff;
}

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    line-height: 1.6;
}

/* Header */
header {
    background: var(--white);
    padding: 20px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
}

/* Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

nav a:hover {
    color: var(--primary-color);
}

/* Container */
.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Beiträge / Events */
article {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
    margin-top: 40px;
}