/* frontend-style.css */
/* Algemene containerstijl voor de evenementenlijst */
.uitinalmelo-events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Stijl voor één evenementitem */
.event-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
    text-decoration: none;
    color: #333;
}

.event-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-content {
    padding: 15px;
}

.event-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #34495e;
}

.event-content p {
    margin: 0 0 5px 0;
    font-size: 0.9em;
    color: #7f8c8d;
}

.event-content .read-more {
    color: #2980b9;
    font-weight: bold;
    margin-top: 10px;
}

/* Stijl voor de evenementenpagina (single post) */
.uitinalmelo-event-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-single-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.event-single-details p {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.event-single-details strong {
    color: #2c3e50;
}

.event-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.event-button:hover {
    background-color: #2980b9;
}

.event-single-description {
    line-height: 1.6;
    color: #444;
}
