/**
 * Inge Quiz - styles
 * Alles gescoped onder .inge-quiz-wrap zodat het niet botst met thema-CSS.
 */

.inge-quiz-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 1.5rem 0;
    font-family: sans-serif;
    color: #34252f;
    box-sizing: border-box;
}

.inge-quiz-wrap *,
.inge-quiz-wrap *::before,
.inge-quiz-wrap *::after {
    box-sizing: border-box;
}

/* Progress bar */
.inge-quiz-prog {
    display: flex;
    gap: 3px;
    margin-bottom: 2rem;
}

.inge-quiz-prog span {
    height: 2px;
    flex: 1;
    border-radius: 2px;
    background: #e0ddd8;
    transition: background .2s ease;
}

.inge-quiz-prog span.is-done {
    background: #3b5249;
}

.inge-quiz-prog span.is-current {
    background: #519872;
}

/* Vraag */
.inge-quiz-question {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Opties */
.inge-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inge-quiz-options button {
    padding: .85rem 1.1rem;
    border: 1px solid #d5d2cc;
    border-left: 3px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.55;
    color: #34252f;
    background: #fff;
    text-align: left;
    width: 100%;
    display: block;
    font-family: inherit;
    transition: background .15s ease, border-color .15s ease;
}

.inge-quiz-options button:hover {
    background: #faf9f6;
}

.inge-quiz-options button.is-selected {
    border-left-color: #3b5249;
    border-color: #3b5249;
    background: #f2f5ef;
}

/* Verder-knop */
.inge-quiz-next {
    display: none;
    margin-top: 1.5rem;
    padding: .7rem 1.6rem;
    background: #3b5249;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s ease;
}

.inge-quiz-next:hover {
    background: #2f4239;
}

.inge-quiz-next.is-visible {
    display: inline-block;
}

/* Resultaat */
.inge-quiz-result {
    text-align: center;
}

.inge-quiz-result-label {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #a4b494;
    margin-bottom: 1rem;
}

.inge-quiz-result-name {
    font-size: 34px;
    font-weight: 600;
    color: #34252f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.inge-quiz-divider {
    width: 36px;
    height: 2px;
    background: #c8813a;
    margin: 0 auto 1.25rem;
}

.inge-quiz-result-essence {
    font-size: 15px;
    line-height: 1.7;
    color: #3b5249;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.inge-quiz-result-body {
    font-size: 14px;
    line-height: 1.8;
    color: #34252f;
    text-align: left;
    background: #f5f3ef;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.inge-quiz-result-shadow {
    font-size: 13px;
    line-height: 1.75;
    color: #5e5258;
    text-align: left;
    border-left: 3px solid #c8813a;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.inge-quiz-result-footer {
    font-size: 13px;
    color: #a4b494;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.inge-quiz-restart {
    background: none;
    border: 1px solid #d5d2cc;
    color: #5e5258;
    padding: .5rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    transition: background .15s ease;
}

.inge-quiz-restart:hover {
    background: #f5f3ef;
}

/* Mobiele aanpassingen */
@media (max-width: 480px) {
    .inge-quiz-question {
        font-size: 18px;
    }

    .inge-quiz-result-name {
        font-size: 28px;
    }
}
