/* Journey Self-Assessment Page Styles */

/* Hero */
#journey-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-overlay-light);
    padding-top: 8rem;
}

#journey-hero h1 {
    font-size: 3rem;
    color: var(--soft-cream);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.journey-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
}

/* Intro */
#journey-intro {
    background: var(--bg-overlay);
    text-align: center;
}

#journey-intro .container {
    max-width: 700px;
}

.journey-lede {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--soft-cream);
    margin-bottom: 1.5rem;
    font-style: italic;
}

#journey-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Part sections */
#part-signs,
#part-vocabulary,
#part-self-check,
#part-where {
    background: var(--bg-overlay);
}

.part-instruction {
    color: var(--antique-gold);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 2.5rem;
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem 1.25rem;
    background: rgba(10, 8, 20, 0.35);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.check-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(10, 8, 20, 0.5);
}

.check-item input[type="checkbox"] {
    display: none;
}

.check-box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 3px;
    margin-top: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.check-item input:checked ~ .check-box {
    background: var(--antique-gold);
    border-color: var(--antique-gold);
}

.check-item input:checked ~ .check-box::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--deep-indigo);
    font-size: 0.85rem;
    font-weight: 700;
}

.check-item input:checked ~ .check-text {
    color: var(--soft-cream);
}

.check-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Vocabulary Grid */
.vocab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.vocab-card {
    background: rgba(10, 8, 20, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    transition: all 0.4s ease;
}

.vocab-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(10, 8, 20, 0.55);
    transform: translateY(-3px);
}

.vocab-card h3 {
    font-size: 1.3rem;
    color: var(--antique-gold);
    margin-bottom: 0.75rem;
}

.vocab-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Journal Prompts */
.journal-prompts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.prompt-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(10, 8, 20, 0.4);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-left: 3px solid var(--antique-gold);
    border-radius: 4px;
    padding: 1.5rem 1.75rem;
}

.prompt-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--antique-gold);
    color: var(--antique-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.prompt-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    padding-top: 0.3rem;
}

/* Tier Results */
.tier-result-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.tier-result {
    background: rgba(10, 8, 20, 0.4);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.tier-result:hover {
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(10, 8, 20, 0.55);
}

.tier-result-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dusty-rose);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.tier-result p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.tier-result p strong {
    color: var(--antique-gold);
    font-weight: 600;
}

/* CTA */
#journey-cta {
    background: var(--bg-overlay);
    text-align: center;
}

#journey-cta .guide-cta-box {
    max-width: 600px;
}

#journey-cta .guide-cta-box p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

#journey-cta .guide-cta-box em {
    color: var(--antique-gold);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    #journey-hero h1 { font-size: 2.2rem; }
    .journey-subtitle { font-size: 1rem; }
    .journey-lede { font-size: 1.3rem; }
    .vocab-grid { grid-template-columns: 1fr; }
    .check-item { padding: 0.85rem 1rem; }
    .check-text { font-size: 0.95rem; }
    .prompt-card { padding: 1.25rem 1.25rem; }
    .prompt-card p { font-size: 0.95rem; }
}
