/* assets/css/revelation-couple.css */

/* Styles spécifiques pour le quiz Révélation Couple */
.quiz-content-section {
    padding: var(--section-padding); 
    text-align: center;
    background-color: #fff; 
}
.quiz-content-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    color: var(--black-pearl);
    margin-bottom: 1rem;
}
.quiz-content-section .section-text {
    font-size: 1.7rem;
    color: var(--black-pearl-light);
    max-width: 75ch;
    margin: 0 auto 3rem auto;
}

.quiz-container {
    background-color: var(--white-rock-light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    max-width: 700px;
    margin: 2rem auto;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.quiz-progress-bar-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.quiz-progress-bar {
    flex-grow: 1; 
    height: 1rem;
    background-color: var(--white-rock-medium);
    border-radius: 5px;
    overflow: hidden;
}
.quiz-progress-bar .progress {
    height: 100%;
    background-color: var(--walnut);
    border-radius: 5px;
    transition: width 0.4s ease-in-out;
}
.progress-text {
    font-size: 1.3rem;
    color: var(--black-pearl-light);
    font-weight: 500;
}

.quiz-step {
    display: none; 
    animation: fadeIn 0.5s ease-in-out;
}
.quiz-step.active-step {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-label {
    font-family: 'Courgette', cursive;
    font-size: 2.8rem; 
    color: var(--walnut);
    margin-bottom: 0.8rem; 
    display: block; 
    font-weight: normal;
	text-align: right;
}
.question-label .question-idx-display {
    /* font-weight: bold; */
} 

.question-text-content { 
    font-family: 'Outfit', sans-serif; 
    font-size: 1.8rem; 
    color: var(--black-pearl-light);
    margin-bottom: 2.5rem; 
    line-height: 1.6;
}
.quiz-options label {
    display: flex; 
    align-items: center;
    background-color: #fff;
    padding: 1.8rem; 
    margin-bottom: 1.2rem; 
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--quicksand-light);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.quiz-options label:hover {
    border-color: var(--walnut);
    box-shadow: 0 3px 10px rgba(112,58,24,0.15); 
}
.quiz-options input[type="radio"] {
    margin-right: 1.5rem; 
    accent-color: var(--walnut); 
    transform: scale(1.2); 
}
.quiz-options label span {
    font-size: 1.6rem;
    flex-grow: 1; 
}

.quiz-navigation {
    display: flex;
    justify-content: center; 
    margin-top: 3rem;
    border-top: 1px solid var(--white-rock-medium);
    padding-top: 2.5rem; 
    gap: 1rem; 
}
.quiz-navigation.has-prev-btn {
    justify-content: space-between;
}

.quiz-button { 
    width: 60%; 
    min-width: 220px; 
    max-width: 300px; 
    margin-top: 0; 
    padding-top: 1.3rem;    
    padding-bottom: 1.3rem; 
    padding-left: 0; 
    padding-right: 0;
    font-size: 1.6rem; 
}

.quiz-results-wrapper { 
    margin: 4rem auto 3rem auto;
    padding: 0; 
    background-color: var(--white-rock-light);
    border-radius: var(--border-radius-md);
    color: var(--black-pearl); 
    text-align: left; 
    max-width: 800px; 
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden; 
}

.results-header {
    background-color: var(--walnut); 
    color: var(--white-rock-light);
    padding: 2.5rem var(--section-padding);
    text-align: center;
}
.results-header .overline {
    color: var(--quicksand-light); 
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    display: block; 
}
.results-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 3.6rem); 
    color: #fff; 
    margin-bottom: 0.2rem; 
    line-height: 1.1;
}
.profile-name-highlight { 
    display: block;
    font-size: clamp(3.2rem, 6vw, 4.5rem); 
    color: var(--white-rock); 
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    font-family: 'Bebas Neue', sans-serif; 
}

.results-content {
    padding: var(--section-padding) var(--section-padding) 0; 
}

.results-section {
    margin-bottom: 3.5rem;
    padding-left: 5.5rem; 
    position: relative;
}
.results-section .section-icon {
    position: absolute;
    left: 0;
    top: 0.2rem; 
    color: var(--walnut);
    width: 3.2rem;
    height: 3.2rem;
    stroke-width: 1.5px;
}
.results-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    font-weight: 600;
    color: var(--black-pearl);
    margin-bottom: 1rem;
}
.results-section p,
.results-section ul {
    font-size: 1.65rem; 
    color: var(--black-pearl-light);
    line-height: 1.75;
}
.results-section ul {
    list-style: none;
    padding-left: 0;
}
.results-section ul li {
    margin-bottom: 0.8rem;
    padding-left: 0; 
}

.key-insights ul li,
.points-attention ul li {
    display: flex;
    align-items: flex-start;
}
.key-insights ul li i, 
.points-attention ul li i {
    color: var(--walnut);
    width: 1.8rem; height: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.4rem; 
    margin-right: 1rem; 
}
.key-insights ul li.no-icon,
.points-attention ul li.no-icon {
    display: block; 
    padding-left: 0; 
}
.key-insights ul li.no-icon span,
.points-attention ul li.no-icon span {
    /* Styles si besoin */
}

.detailed-report-teaser {
    margin: 0; 
    padding: var(--section-padding);
    background-color: var(--white-rock); 
    border-top: 1px solid var(--white-rock-medium);
    text-align: center;
}
.detailed-report-teaser .teaser-icon-big {
    color: var(--walnut);
    width: 4.5rem;
    height: 4.5rem;
    stroke-width: 1.5px;
    margin-bottom: 1.5rem;
}
.detailed-report-teaser h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--black-pearl);
    margin-bottom: 1.5rem;
}
.detailed-report-teaser h3 .highlight {
    color: var(--walnut);
}
.detailed-report-teaser p {
    font-size: 1.6rem;
    color: var(--black-pearl-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}
.benefits-list-results {
    list-style: none; padding-left: 0; margin-top: 1.5rem;
    text-align: left; max-width: 600px; 
    margin-left: auto; margin-right: auto; margin-bottom: 2.5rem;
}
.benefits-list-results li {
    display: flex; align-items: flex-start; gap: 1.2rem;
    margin-bottom: 1.2rem; font-size: 1.6rem;
    color: var(--black-pearl-light);
}
.benefits-list-results li i {
    color: var(--walnut); width: 2.2rem; height: 2.2rem;
    flex-shrink: 0; margin-top: 0.1rem;
}
.benefits-list-results li .highlight {
    font-weight: 600; 
    color: var(--black-pearl);
}
.detailed-report-teaser .next-step-prompt {
    font-size: 1.7rem; font-weight: 500;
    color: var(--black-pearl); margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .quiz-results-wrapper { 
        margin-left: 1rem; 
        margin-right: 1rem; 
    }
    .results-header { p
        adding: 2rem; 
    }
    .results-header h2 { 
        font-size: 2.4rem; 
    }
    .profile-name-highlight { 
        font-size: 2.8rem; 
    }
    .results-content { 
        padding: 2.5rem; 
    }
    .results-section { 
        padding-left: 0; 
        margin-bottom: 2.5rem; 
    }
    .results-section .section-icon { 
        display: none; 
    }
    .results-section h3 { 
        font-size: 1.9rem; 
    }
    .results-section p, .results-section ul { 
        font-size: 1.5rem; 
    }
    .detailed-report-teaser { 
        padding: 2.5rem; 
    }
    .detailed-report-teaser h3 { 
        font-size: 2.2rem; 
    }
    .quiz-container { 
        padding: 2rem; 
    }
    .question-label { 
        font-size: 2.4rem; 
    } 
    .question-text-content { 
        font-size: 1.7rem; 
    } 
    .quiz-button {
    /* Chaque bouton prendra presque la moitié de l'espace disponible */
    width: calc(50% - 0.5rem); /* 50% moins la moitié du gap */
    min-width: 0; /* On annule le min-width pour permettre aux boutons de se réduire */
    }
    .quiz-navigation {
        /* On s'assure qu'il utilise toute la largeur et aligne les boutons */
        display: flex;
        justify-content: center; /* Centre le bouton "Suivant" quand il est seul */
        gap: 1rem; /* Espace entre les deux boutons */
    }
    .quiz-navigation.has-prev-btn {
        /* Quand les deux boutons sont visibles, on les espace au maximum */
        justify-content: space-between;
    }
}