/* Buurtfeest wizard */
:root {
    --wizard-bg: #f8fafc;
    --wizard-card: #fff;
    --wizard-border: #e2e8f0;
    --wizard-primary: #0f766e;
    --wizard-primary-hover: #0d9488;
}

* { box-sizing: border-box; }
body {
    font-family: system-ui, -apple-system, sans-serif;
    color: #1e293b;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    min-height: 100vh;
    background: var(--wizard-bg) url('../buurtfeest.png') no-repeat center center fixed;
    background-size: cover;
}

.wizard-header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: #fff;
}
.wizard-header h1 { margin: 0 0 0.5rem; font-size: 1.75rem; }
.wizard-header p { margin: 0; opacity: 0.95; }

.wizard-error {
    max-width: 32rem;
    margin: 1rem auto;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #b91c1c;
}

.wizard-form {
    max-width: 32rem;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.wizard-step {
    display: none;
    background: var(--wizard-card);
    border: 1px solid var(--wizard-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.wizard-step.active { display: block; }
.wizard-step.hidden { display: none; }

.wizard-step legend {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0;
}

.wizard-step label {
    display: block;
    margin-bottom: 0.75rem;
    cursor: pointer;
}
.wizard-step label input[type="radio"],
.wizard-step label input[type="checkbox"] {
    margin-right: 0.5rem;
}
.wizard-step input[type="text"],
.wizard-step input[type="email"],
.wizard-step input[type="tel"],
.wizard-step input[type="date"],
.wizard-step textarea {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.5rem;
    border: 1px solid var(--wizard-border);
    border-radius: 4px;
}
.wizard-step .overig-field { margin-top: 0.5rem; margin-left: 1.5rem; }
.wizard-step .no-options { color: #64748b; font-style: italic; }

.wizard-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}
.wizard-nav button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    background: var(--wizard-primary);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}
.wizard-nav button:hover:not(:disabled) { background: var(--wizard-primary-hover); }
.wizard-nav button:disabled { opacity: 0.5; cursor: not-allowed; }
.step-indicator { font-weight: 600; color: #64748b; }
.btn-submit {
    padding: 0.75rem 1.5rem;
    background: var(--wizard-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
}
.btn-submit:hover { background: var(--wizard-primary-hover); }

.summary-list { list-style: none; padding: 0; margin: 0; }
.summary-list li { margin-bottom: 0.5rem; }
