/* /evenementen/css/style.css */

/* --- Hero Sectie --- */
.page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/images/header-paginas.jpeg');
    /* Hergebruik een relevante afbeelding */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-top: 60px;
    /* Ruimte voor de vaste header */
}

.page-hero h1 {
    font-size: 48px;
    margin: 0 0 10px 0;
}

.page-hero p {
    font-size: 20px;
    margin: 0;
    opacity: 0.9;
}

/* --- Content Sectie --- */
.content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* --- Evenementen Lijst --- */
.events-list {
    display: grid;
    gap: 30px;
}

.no-events {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* --- De Evenement Kaart --- */
.event-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* --- Datum Blok --- */
.event-date {
    flex: 0 0 100px;
    /* Vaste breedte, niet groeien of krimpen */
    background-color: #c0392b;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
}

.event-date .day {
    font-size: 36px;
    line-height: 1;
}

.event-date .month {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Details (rechterkant) --- */
.event-details {
    padding: 25px 30px;
    flex-grow: 1;
    /* Neemt de rest van de ruimte in */
}

.event-tag {
    display: inline-block;
    background-color: #fbeeec;
    color: #c0392b;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 15px;
}

.event-details h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    color: #343a40;
}

.event-meta {
    display: flex;
    gap: 20px;
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 15px;
}

.event-meta span {
    display: flex;
    align-items: center;
}

.event-meta i {
    margin-right: 8px;
    color: #adb5bd;
}

.event-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
}

.btn-event {
    display: inline-block;
    background-color: transparent;
    color: #c0392b;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    border: 2px solid #c0392b;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-event:hover {
    background-color: #c0392b;
    color: white;
}

/* --- Responsive aanpassingen --- */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }

    .event-date {
        flex-basis: auto;
        /* Reset de vaste breedte */
        padding: 15px;
        flex-direction: row;
        gap: 10px;
    }

    .event-date .day {
        font-size: 24px;
    }

    .event-date .month {
        font-size: 16px;
    }
}