/* ==========================================================================
   WIZARD DARK MODE STYLING - Geloofsdeeltaal
   ========================================================================== */

.quiz-form-container {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    min-height: 100vh;
}

.wizard-page-wrapper {
    padding-bottom: 120px;
}

.wizard-page-wrapper .container {
    padding-top: 36px;
    padding-bottom: 36px;
}

/* --- Afbeelding Container (Vaste hoogte voor rustig beeld) --- */
.mob-img {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.wizard-image-container {
    width: 100%;
    max-width: 380px; 
    /* VASTE HOOGTE: Verhoogd naar jouw gewenste 1059px */
    height: 1059px; 
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #222; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.wizard-image-container img {
    max-width: 100%;
    max-height: 100%; /* Zorgt dat de afbeelding nooit hoger wordt dan de 1059px */
    width: auto;
    height: auto;
    object-fit: contain; 
    object-position: center;
}

/* --- Vragen Styling --- */
.question-counter {
    font-size: 12px;
    letter-spacing: 2px;
    color: #ffcc00; 
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.qa-content h1 {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 32px !important;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #ffffff;
}

/* --- Keuze Rijen --- */
.choice-row {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    transition: background 0.2s ease;
    border: none !important;
    overflow: hidden; 
}

.choice-row:hover {
    background: rgba(255,255,255,0.12);
}

.choice-row label {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 20px; 
    margin-bottom: 0;
    cursor: pointer;
    color: #ffffff;
}

/* --- Custom Radio Buttons --- */
.choice-row input[type="radio"] {
    margin-right: 15px;
    margin-left: 15px;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid #ffcc00 !important;
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: transparent;
    outline: none;
}

input[type="radio"]:checked {
    background-color: #ffcc00 !important;
    border: 1px solid #ffcc00 !important;
}

.choice {
    font-size: 16px;
    line-height: 1.4;
}

/* --- Navigatie --- */
.nav-btns {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

button.previous.btn-shape {
    background: transparent;
    border: 1px solid #ffcc00;
    color: #ffcc00;
    border-radius: 30px;
    padding: 8px 20px;
    transition: 0.3s;
    cursor: pointer;
}

button.previous.btn-shape:hover {
    background: rgba(255, 204, 0, 0.1);
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* --- Sticky Footer Progress Bar --- */
.progress-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    padding: 25px 0;
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.progress {
    height: 21px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 0;
}

.progress-bar {
    background-color: #ffcc00;
    color: #1a1a1a;
    font-weight: bold;
    line-height: 21px;
    transition: width 0.4s ease;
}

/* --- Mobile Optimalisatie --- */
@media (max-width: 768px) {
    .wizard-image-container {
        max-width: 280px; 
        height: 320px; /* Iets kortere vaste hoogte op mobiel */
        margin: 0 auto 20px auto;
    }

    .qa-content h1 {
        font-size: 26px !important;
        text-align: center;
    }

    .question-counter {
        text-align: center;
    }

    .col-md-6 {
        width: 100% !important;
        float: none !important;
        display: block !important;
    }
}