/* ✅ Algemene styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* ✅ Hero bovenaan */
.wizard-header {
    text-align: center;
    padding: 50px 20px;
}

.wizard-header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.wizard-header p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ✅ Container voor inhoud */
.wizard-container {
    max-width: 1000px;
    margin: 40px auto 60px;
    padding: 30px;
    background: white;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

/* ✅ Voorstellingenlijst */
.voorstellingen-lijst {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ✅ Individuele voorstelling */
.voorstelling-blok {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.voorstelling-links {
    flex: 1;
    min-width: 250px;
}

.categorie {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.voorstelling-blok h2 {
    font-size: 1.8rem;
    color: #c79c60;
    margin: 0 0 10px;
}

.subtitel {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.voorstelling-rechts {
    text-align: right;
    min-width: 200px;
}

.datum-tijd {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    border-top: 1px solid #000;
    padding-top: 6px;
    display: inline-block;
}

/* ✅ Ticket knop */
.tickets-knop {
    display: inline-block;
    padding: 10px 20px;
    background: #d4af37;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.12);
}

.tickets-knop:hover {
    background-color: #b88a2e;
    transform: translateY(-2px);
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
}

/* ✅ Wachtlijst knop stijl */
.tickets-knop.wachtlijst {
    background-color: #e67e22;
}

.tickets-knop.wachtlijst:hover {
    background-color: #cf6a14;
}

/* ✅ Uitverkocht melding */
.uitverkocht-melding {
    margin-top: 10px;
    padding: 15px;
    background-color: #fff4f0;
    border-left: 4px solid #e67e22;
    border-radius: 8px;
    text-align: left;
}

.uitverkocht-tekst {
    font-size: 0.95rem;
    color: #a8430c;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

/* ✅ Responsiveness */
@media (max-width: 768px) {
    .wizard-header h1 {
        font-size: 2.5rem;
    }

    .wizard-container {
        padding: 25px;
    }

    .voorstelling-blok {
        flex-direction: column;
        align-items: flex-start;
    }

    .voorstelling-rechts {
        text-align: left;
        margin-top: 10px;
        width: 100%;
    }
}
