/* ================================================================
   MBCL — JOURNEY CAROUSEL
   King O'Holi Redesign: Paper-and-ink, editorial aesthetic
   ================================================================ */

/* The journey section itself uses styles.css for the shell.
   This file overrides the slide backgrounds and nav specifics. */

/* Slides use warm off-white, no dark overlays */
.journey-slide[data-slide="0"] {
    background-image: none;
    background-color: var(--paper);
}

.journey-slide[data-slide="1"] {
    background-image: none;
    background-color: var(--paper-deep);
}

.journey-slide[data-slide="2"] {
    background-image: none;
    background-color: var(--paper);
}

.journey-slide[data-slide="3"] {
    background-image: none;
    background-color: var(--paper-deep);
}

/* No dark overlay on slides */
.journey-overlay {
    display: none !important;
}

/* Journey text in ink on paper — not white on dark */
.journey-title {
    font-family: var(--font-display) !important;
    font-size: clamp(80px, 12vw, 160px) !important;
    font-weight: 400 !important;
    color: var(--ink) !important;
    letter-spacing: var(--track-tight) !important;
    line-height: 0.88 !important;
    margin-bottom: 40px !important;
    text-transform: uppercase !important;
}

.journey-year {
    font-family: var(--font-mono) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: var(--track-wide) !important;
    color: var(--ink-muted) !important;
    text-transform: uppercase !important;
    margin-bottom: 28px !important;
    display: block !important;
    line-height: 1 !important;
}

.journey-description {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: var(--ink-light) !important;
    font-weight: 300 !important;
    max-width: 560px !important;
    font-family: var(--font-body) !important;
}

/* Timeline nav at the bottom */
.journey-timeline {
    position: relative !important;
    bottom: auto !important;
    background: var(--paper) !important;
    backdrop-filter: none !important;
    border-top: 1px solid var(--ink) !important;
    padding: 28px 64px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.timeline-items {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.timeline-items::-webkit-scrollbar {
    display: none;
}

.timeline-item {
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    letter-spacing: var(--track-wide) !important;
    text-transform: uppercase !important;
    color: var(--ink-muted) !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 0 !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
}

/* Remove the orange underline pseudo-element from old design */
.timeline-item::after {
    display: none !important;
}

.timeline-item:hover,
.timeline-item.active {
    color: var(--ink) !important;
    border-color: var(--ink) !important;
    background: transparent !important;
}

.timeline-arrows {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}

.timeline-arrow {
    background: transparent !important;
    border: 1px solid var(--ink) !important;
    border-radius: 0 !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: var(--ink) !important;
    transition: all 0.2s !important;
}

.timeline-arrow svg {
    width: 20px !important;
    height: 20px !important;
}

.timeline-arrow:hover {
    background: var(--ink) !important;
    border-color: var(--ink) !important;
    color: var(--paper) !important;
    transform: none !important;
}

/* Responsive overrides */
@media (max-width: 768px) {
    .journey-timeline {
        padding: 20px 24px !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .timeline-items {
        gap: 4px !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    .timeline-arrows {
        width: 100% !important;
        justify-content: center !important;
    }
}