﻿body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.calendar-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.event-card {
    display: flex; /* Flexbox für nebeneinanderliegende Elemente */
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.event-card:hover {
    transform: translateY(-5px); /* Kleiner Hover-Effekt */
}

.event-image img {
    width: 400px;
    height: 100%;
    object-fit: cover; /* Bild wird passend zugeschnitten */
}

.event-details {
    padding: 20px;
}

.event-date {
    display: block;
    color: #e67e22;
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.event-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.event-card p {
    margin: 0;
    color: #555;
}

/* Responsive Anpassung für kleinere Bildschirme */
@media (max-width: 600px) {
    .event-card {
        flex-direction: column;
    }
    .event-image img {
        width: 100%;
        height: 150px;
    }
}
