/* Veranstaltungen (Frontpage) */
.events-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.events-section h2 {
    color: #fec210;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}
.events-list {
    color: #fff;
}
.event-title {
    margin: 2px 0;
    color: #fff;
}
.event-item {
    margin-bottom: 0;
}
.event-item a {
    color: #fff;
    text-decoration: none;
}
.event-date strong {
    color: #fff;
    font-weight: 300;
}
.event-link {
    color: #fff;
    text-decoration: none;
}
.event-link:hover {
    color: #fec210;
}/* Veranstaltungsseite */
.veranstaltungen-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    color: #333;
}
.veranstaltungen-section h1 {
    font-family:'Playfair Display', serif;
    color: #015aaa;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}
.veranstaltungen-list {
    font-family: "Oswald", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.veranstaltung-item {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
.veranstaltung-item.color-blue {
    background: #e8f0f7;
    border-left: 4px solid #015aaa;
}
.veranstaltung-item.color-yellow {
    background: #fff9e6;
    border-left: 4px solid #fec210;
}
.veranstaltung-date-time {
    font-family: "Oswald", sans-serif;
    font-weight: normal;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    flex-wrap: wrap;
}
.veranstaltung-date {
    font-weight: normal;
}
.veranstaltung-time {
    color: #666;
}
.veranstaltung-title {
    font-family:'Playfair Display', serif;
    color: #015aaa;
    font-size: 24px;
    margin: 0 0 10px;
}
.veranstaltung-description {
    display: inline-grid;
    font-weight: 300;
}

.veranstaltung-description p {
    margin: 7px 0;
}

.veranstaltung-link {
    display: inline-block;
    background: #fec210;
    color: #015aaa;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    max-width: 65px;
}
.veranstaltung-link:hover {
    background: #e0a800;
}
.load-more {
    text-align: center;
    margin-top: 30px;
}
.load-more button {
    background: #015aaa;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.load-more button:hover {
    background: #013e7a;
}/* Responsive Design */
@media (max-width: 990px) {
    .veranstaltungen-section {
        padding: 30px 15px;
    }
    .veranstaltungen-section h1 {
        font-size: 28px;
    }
    .veranstaltung-item {
        padding: 15px;
    }
}
@media (max-width: 768px) {
    .veranstaltungen-section {
        padding: 20px 10px;
    }
    .veranstaltung-date-time {
        flex-direction: column;
        gap: 5px;
        font-size: 14px;
    }
    .veranstaltung-title {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .veranstaltungen-section {
        padding: 15px 5px;
    }
    .veranstaltung-item {
        padding: 10px;
    }
    .veranstaltung-date-time {
        font-size: 13px;
    }
    .veranstaltung-title {
        font-size: 18px;
    }
    .veranstaltung-link {
        padding: 8px 15px;
    }
    .load-more button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
