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

/* ✅ Hero sectie */
.wizard-header {
    text-align: center;
    padding: 60px 20px 30px;
}

.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);
    margin-bottom: 15px;
}

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

/* ✅ Container */
.wizard-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ✅ Koprij */
.kop-row {
    font-weight: bold;
    border-bottom: 2px solid #d4af37;
    text-align: center;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.kop-row div:first-child {
    text-align: left;
}

/* ✅ Stoelrij */
.sectie-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
    gap: 15px;
}

.sectie-row:last-child {
    border-bottom: none;
}

/* ✅ Pleknaam */
.sectie-label {
    text-align: left;
}

/* ✅ Prijs */
.prijs {
    text-align: center;
}

/* ✅ Aantal (-0+) */
.aantal-keuze {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.aantal-keuze button {
    width: 34px;
    height: 34px;
    border: none;
    background-color: #d4af37;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.aantal-keuze button:hover {
    background-color: #b88a2e;
}

.aantal-keuze input {
    width: 48px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0.4rem;
    font-size: 1rem;
    background: #fdfdfd;
    color: #333;
}

/* Verberg standaard pijltjes (spinner) in number input */
.aantal-keuze input::-webkit-outer-spin-button,
.aantal-keuze input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ✅ UITVERKOCHT label */
.uitverkocht-label {
    color: red;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    grid-column: span 2;
}

/* ✅ Totaalrij */
.totaal-row {
    border-top: 2px solid #d4af37;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 15px;
}

/* ✅ Navigatie onderaan */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.wizard-buttons a.terug-knop,
.wizard-buttons button.volgende-knop {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.wizard-buttons a.terug-knop {
    background-color: #e0e0e0;
    color: #333;
}

.wizard-buttons a.terug-knop:hover {
    background-color: #d4d4d4;
}

.wizard-buttons button.volgende-knop {
    background-color: #d4af37;
    color: #fff;
}

.wizard-buttons button.volgende-knop:hover {
    background-color: #b88a2e;
}

/* ✅ Wachtlijst melding */
.uitverkocht-melding {
    padding: 1.5rem;
    background: #ffe6e6;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}

.uitverkocht-melding input[type="email"] {
    padding: 10px;
    width: 280px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 1rem;
}

.uitverkocht-melding button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #d4af37;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.uitverkocht-melding button:hover {
    background-color: #b88a2e;
}
.extra-info-box {
    background-color: #fffbe6;
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    color: #444;
    font-size: 0.95rem;
}
.extra-info-box a {
    color: #007bff;
    text-decoration: underline;
}
.extra-info-box a:hover {
    text-decoration: none;
}


@media (max-width: 768px) {
    .wizard-container {
        padding: 16px;
        margin: 16px;
    }

    .kop-row,
    .sectie-row,
    .totaal-row {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 10px;
        font-size: 16px; /* 🔵 Algemene tekstgrootte voor rijen */
    }
    .kop-row .aantal-keuze {
    font-size: 16px;
}
.kop-row .aantal-kop {
    font-size: 16px;
    text-align: left;
    padding-right: 38px;
    color: #000;
}


    .kop-row {
        font-size: 16px; /* 🔵 Koptekstgrootte */
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    /* ✅ Zelf bepalen waar de koptekst staat per kolom */
    .kop-row div:nth-child(1) {
        text-align: left;
    }

    .kop-row div:nth-child(2) {
        text-align: center;
        padding-right: 20px;
    }

    .kop-row div:nth-child(3) {
        text-align: left;
        padding-right: 38px;
    }

    /* ✅ Zelf bepalen waar de totalen staan per kolom */
    .totaal-row div:nth-child(1) {
        text-align: left;
    }

    .totaal-row div:nth-child(2) {
        text-align: left;
        padding-right: 60px;
    }

    .totaal-row div:nth-child(3) {
        text-align: left;
        padding-right: 0px;
    }

    .sectie-label {
        font-size: 16px; /* 🟢 Labelgrootte voor sectie/tickets */
        text-align: left;
        line-height: 1.2;
    }

    .prijs {
        font-size: 16px; /* 🟢 Prijsweergave */
        text-align: center;
    }

    .aantal-keuze {
        justify-content: center;
        align-items: center;
        display: flex;
        gap: 6px;
        height: 100%;
    }

    .aantal-keuze button {
        width: 32px;
        height: 32px;
        font-size: 16px; /* 🟠 Plus/min-knoppen */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .aantal-keuze input {
        width: 46px;
        font-size: 16px; /* 🟠 Inputveld aantal */
        padding: 5px;
        text-align: center;
    }

    .wizard-buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .wizard-buttons a,
    .wizard-buttons button {
        flex: 1 1 48%;
        font-size: 16px; /* 🟣 Navigatieknoppen */
        padding: 14px;
        min-width: 140px;
        text-align: center;
    }

    .uitverkocht-melding {
        font-size: 16px; /* 🔴 Tekst bij uitverkocht */
        padding: 16px;
    }

    .uitverkocht-melding input,
    .uitverkocht-melding button {
        width: 100%;
        font-size: 16px; /* 🔴 Input/knop bij uitverkocht */
        padding: 10px;
    }

    .wizard-header h1 {
        font-size: 32px; /* 🟡 Grote titel bovenaan */
    }

    .wizard-header p {
        font-size: 16px; /* 🟡 Introductietekst onder titel */
        line-height: 1.4;
        margin-top: 10px;
    }
}



