@charset "UTF-8";

/* ==========================================================================
   Page: Correct Choice (positive_mind/correct_choice.html)
   ========================================================================== */

/* --- Typography & Spacing --- */
.correct-choice-section .content-body p {
    margin-bottom: 2rem;
}

/* --- Blockquote --- */
/* --- Blockquote (Card Style) --- */
/* --- Blockquote (Card Style - Premium) --- */
.ford-quote {
    background-color: #fff;
    border: 1px solid #f1f5f9; /* Very subtle border */
    border-top: 8px solid #fbbf24; /* Thick golden top bar */
    padding: 3rem;
    margin: 4rem auto;
    color: #334155;
    font-family: "Kaisei Opti", serif;
    font-size: 1.25rem;
    line-height: 2.2;
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05); /* Deep, soft shadow */
    max-width: 800px; /* Limit width for elegance */
    text-align: center; /* Center text as per reference */
}

.ford-quote:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.ford-quote p {
    margin-bottom: 1.5rem;
}

.ford-quote cite {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #d97706; /* amber-600 */
    font-style: normal;
    text-align: right;
    letter-spacing: 0.05em;
}

/* --- Highlighted Headings --- */
.highlight-heading {
    color: #d97706; /* amber-600 */
    margin-bottom: 1.5rem;
    margin-top: 3.5rem;
    font-size: 1.4rem;
    border-bottom: 2px dashed #fcd34d;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* --- Glowing Path Illustration --- */
.road-illustration {
    margin: 4rem auto;
    max-width: 400px;
    height: 320px;
    position: relative;
    /* Remove overflow:hidden to allow glow to breathe */
}

.road-main {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: #cbd5e1;
}

.road-path {
    position: absolute;
    width: 60px;
    height: 160px;
    background: #cbd5e1;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden; /* For shine effect */
}

.road-path .path-label {
    transform: rotate(0deg); /* Counter-rotate label if needed */
    font-size: 0.8rem;
    font-weight: bold;
    color: #64748b;
    writing-mode: vertical-rl;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    z-index: 2;
}

.road-left {
    bottom: 60px;
    left: 20%;
    transform: rotate(-45deg);
    border-radius: 30px 30px 0 0;
}

.road-right {
    bottom: 60px;
    right: 20%;
    transform: rotate(45deg);
    border-radius: 30px 30px 0 0;
}

/* Shine Effect Pseudo-element */
.road-path::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

/* Hover Behaviors */
.road-path:hover::after {
    left: 100%;
    transition: left 0.7s ease;
}

.road-left:hover {
    background: #94a3b8; /* Darker gray */
    box-shadow: 0 0 25px rgba(148, 163, 184, 0.6); /* Moonlight Glow */
    transform: rotate(-45deg) scale(1.05); /* Slight pop */
}

.road-right:hover {
    background: #fbbf24; /* Golden color */
    box-shadow: 0 0 35px rgba(251, 191, 36, 0.7); /* Sun Glow */
    transform: rotate(45deg) scale(1.05); /* Slight pop */
}

.road-path:hover .path-label {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.glow-effect {
    /* Removed old glow effect in favor of box-shadow for performance and cleanliness */
    display: none; 
}

/* Connecting the fork */
.road-illustration::before {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    background: #cbd5e1;
    border-radius: 50% 50% 0 0;
    pointer-events: none;
}

.illustration-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0 0 1rem;
    position: relative;
    z-index: 10;
}

/* --- Hero Section (High Impact) --- */
.hero-banner {
    text-align: center !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(254, 243, 199, 0.4) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px -10px rgba(251, 191, 36, 0.2); /* Soft sunny glow */
    border: 1px solid rgba(255,255,255,0.8);
}

.hero-banner h2 {
    font-size: 2.5rem; /* Increased size */
    color: #1e293b;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-family: "Kaisei Opti", serif; /* Mincho style as requested */
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem; /* Readable subtitle size */
    margin-top: 1.5rem;
    color: #64748b;
    font-weight: normal;
    font-family: "BIZ UDPGothic", sans-serif; /* Friendly feel */
}



.lead-text {
    font-weight: bold;
    color: #d97706; /* amber-600 */
}

.final-message-box {
    font-weight: bold;
    color: #d97706;
    font-size: 1.1rem;
    border: 2px solid #fcd34d;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #fffbeb;
    text-align: center;
    margin-top: 2rem;
    line-height: 1.8;
}

.sidebar-advice-text {
    color: #0f172a;
    font-size: 0.9rem;
    line-height: 1.6;
}


/* --- Reveal Animation (Isolated) --- */
.reveal {
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* --- Method Navigation (Isolated) --- */
.method-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    background: #fff;
    border: 2px solid #e2e8f0;
    color: #64748b;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-btn.list {
    background: #f1f5f9;
    color: #475569;
}

.nav-btn.prev:hover, .nav-btn.next:hover {
    border-color: #fbbf24;
    color: #d97706;
}

/* Removed .page-footer as we will use .site-footer from layout.css */
