


/* ═══════════════════════════════════════════════════════════════════════════
   TIMELINE PAGE — DESIGN SYSTEM & VARIABLES
   Based on prototype-gemini.html (High-end Career Timeline)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Typography */
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --fs-h1: clamp(1.8rem, 2.5vw, 3rem);
    --fs-h2: clamp(1.4rem, 2vw, 2.2rem);
    --fs-p: clamp(1rem, 1.2vw, 1.3rem);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --trans-fast: 0.3s var(--ease-out);

    /* Layout */
    --timeline-width: 60px;

    /* Hero overlays */
    --timeline-hero-video-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 100%);
}

/* Dark Theme (Underground - Default) */
[data-theme="dark"] {
    --bg-root: #0A0A0F;
    --bg-surface: #111118;
    --bg-surface-glass: rgba(17, 17, 24, 0.95);
    --text-primary: #F1F7F6;
    --text-secondary: #B0B0C0;
    --accent-primary: #00FFB0;
    --accent-tertiary: #2CC69D;
    --chip-bg: rgba(44, 198, 157, 0.1);
    --chip-text: #AACBC4;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --gradient-card: linear-gradient(135deg, rgba(6,60,54,0.4) 0%, rgba(10,10,15,0) 100%);
    --shadow-glow: 0 0 20px rgba(0, 255, 176, 0.15);
    --timeline-hero-video-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Light Theme (Above Ground) */
[data-theme="light"] {
    --bg-root: #F1F7F6;
    --bg-surface: #ffffff;
    --bg-surface-glass: rgba(255, 255, 255, 0.95);
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --accent-primary: #095544;
    --accent-tertiary: #2FA68C;
    --chip-bg: rgba(170, 203, 196, 0.2);
    --chip-text: #095544;
    --border-subtle: rgba(0, 0, 0, 0.1);
    --gradient-card: linear-gradient(135deg, rgba(241,247,246,1) 0%, rgba(170,203,196,0.3) 100%);
    --shadow-glow: 0 0 15px rgba(9, 85, 68, 0.1);
    --timeline-hero-video-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.35) 100%);
}


/* ═══════════════════════════════════════════════════════════════════════════
   BODY OVERRIDE FOR TIMELINE PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

body.timeline-page {
    background-color: var(--bg-root) !important;
    color: var(--text-primary);
    overflow-x: hidden;
}

.timeline-page h1, 
.timeline-page h2, 
.timeline-page h3, 
.timeline-page h4 { 
    font-family: var(--font-head); 
    font-weight: 600; 
    line-height: 1.1; 
    margin-bottom: 1rem; 
}

.timeline-page p { 
    margin-bottom: 1.5rem; 
    font-size: var(--fs-p); 
    color: var(--text-secondary); 
    max-width: 65ch; 
}

.timeline-page a { 
    color: var(--accent-primary); 
    text-decoration: none; 
    position: relative; 
}

/* Hide default site elements on timeline page - ONLY hide duplicates */
.timeline-page #loading-screen,
.timeline-page #particles-canvas {
    display: none !important;
}

/* Keep global header, footer, mobile bar, HUD, and viewpoint nav visible */
.timeline-page header {
    display: flex !important;
}

.timeline-page .viewpoint-nav {
    display: flex !important;
}

/* Hide viewpoint-nav on mobile (use mobile-bottom-bar instead) */
@media (max-width: 768px) {
    .timeline-page .viewpoint-nav {
        display: none !important;
    }
}

.timeline-page footer {
    display: block !important;
    position: relative;
    z-index: 200;
}

.timeline-page .mobile-bottom-bar {
    display: none !important; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .timeline-page .mobile-bottom-bar {
        display: flex !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HUD CONTAINER OVERRIDE (keeps badges identical to main site)
   Explicit values mirror main.css so timeline-specific variables cannot
   restyle the HUD. Last synced with main.css: January 2026.
   ═══════════════════════════════════════════════════════════════════════════ */

.timeline-page .hud-container {
    /* Position: fixed bottom-left, matching main.css */
    position: fixed;
    left: 1rem;                          /* main.css: --space-md */
    top: auto;                           /* main.css: --loc-top */
    bottom: 1.5rem;                      /* main.css: --loc-bottom (--space-lg) */
    z-index: 997;                        /* Same layer as main.css */
    
    /* Layout */
    display: flex;
    flex-direction: column;
    gap: 0.25rem;                        /* main.css: --space-xs */
    
    /* Ensure visibility */
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-page .hud-badge {
    /* Surface: matches main.css dark theme */
    background: #333333;                 /* main.css: --bg-elevated */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #4a4a4a;           /* main.css: --border-color */
    
    /* Sizing & Shape */
    padding: 0.5rem 1rem;                /* --space-sm --space-md */
    border-radius: 6px;
    
    /* Typography */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e8e6e0;                      /* main.css: --text-secondary */
    
    /* Effects */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.timeline-page .hud-badge-label {
    color: #6ee7b7;                      /* main.css: --primary-accent */
    margin-right: 0.25rem;               /* main.css: --space-xs */
}

/* Mobile: Add safe space for bottom bar */
@media (max-width: 768px) {
    .timeline-page .hud-container {
        bottom: calc(72px + 1.5rem);     /* bottom-bar height + spacing */
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO PANEL (video intro)
   ═══════════════════════════════════════════════════════════════════════════ */
/* TIMELINE HERO PANEL — video intro wrapper reused from private timeline.
   Layout only (no shared colors/gradients). Video: /assets/videos/timeline-hero-vid-deijseu.mp4.
   Last updated: Jan 2026. */
.timeline-hero-panel {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: stretch;
}
.timeline-hero-bg-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.timeline-hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.timeline-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: var(--timeline-hero-video-overlay);
    pointer-events: none;
}
.timeline-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none; /* no color/gradient, just structure */
    z-index: 0;
}
.timeline-hero-chapter {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 60vh;
    padding: 2rem;
}
.timeline-hero-core {
    position: relative;
    z-index: 2;
}
.timeline-hero-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    color: var(--accent-primary);
    cursor: pointer;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    transform: translateX(-50%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION OVERLAY (Top-right buttons)
   ═══════════════════════════════════════════════════════════════════════════ */
/* Nav overlay — hide duplicate home/theme buttons, keep contact only, and sit
   below the global theme toggle (z-index 998). Contact rests 120px from top.
   Last updated: Jan 2026. */

.nav-overlay-timeline {
    position: fixed;
    top: 120px;
    right: 24px;
    z-index: 900; /* Lower than global theme toggle */
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hide home and theme toggle buttons inside nav-overlay-timeline */
.nav-overlay-timeline #home-btn,
.nav-overlay-timeline #theme-toggle {
    display: none !important;
}

/* Ensure contact button is always visible and styled */
.nav-overlay-timeline #contact-trigger,
.nav-overlay-timeline .btn-cta-tl {
    position: static;
    z-index: 1001;
    top: auto;
    right: auto;
}

.btn-icon-tl {
    background: var(--bg-surface-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 44px; 
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: var(--trans-fast);
    font-size: 1rem;
}

.btn-icon-tl:hover { 
    transform: scale(1.1); 
    border-color: var(--accent-primary); 
}

.btn-cta-tl {
    background: var(--accent-primary);
    color: var(--bg-root);
    font-family: var(--font-head);
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--trans-fast);
    box-shadow: var(--shadow-glow);
}

.btn-cta-tl:hover { 
    filter: brightness(1.1); 
    transform: translateY(-2px); 
}

/* Standalone Contact/CV button - top right corner under header */
.btn-cta-standalone {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 1000;
}

.btn-cta-standalone:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-cta-standalone {
        top: 90px;
        right: 16px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TIMELINE TRACK (Left sidebar with progress line)
   ═══════════════════════════════════════════════════════════════════════════ */
/* Fixed left rail that anchors the scroll indicator and ghosted year label. */

.timeline-track {
    position: fixed;
    top: 0; 
    left: 0; 
    bottom: 0;
    width: var(--timeline-width);
    z-index: 100;
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    border-right: 1px solid var(--border-subtle);
    background: var(--bg-root);
}

.timeline-line-tl {
    width: 2px; 
    height: 100%;
    background: var(--border-subtle);
    position: relative;
}

.timeline-indicator {
    position: absolute; 
    left: -4px;
    width: 10px; 
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
    transition: top 0.1s linear;
    top: 0;
}

.year-floater {
    position: fixed; 
    left: 70px; 
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-head); 
    font-size: 4rem; 
    font-weight: 800;
    color: var(--text-secondary); 
    opacity: 0.15;
    pointer-events: none; 
    writing-mode: vertical-rl; 
    text-orientation: mixed;
    transition: all 0.5s ease; 
    z-index: 50;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTENT AREA
   ═══════════════════════════════════════════════════════════════════════════ */
/* Houses all viewports; margin compensates for the fixed track. */

.timeline-main {
    margin-left: var(--timeline-width);
    scroll-behavior: smooth;
}

.chapter { 
    position: relative; 
}

.viewport {
    min-height: 100vh;
    width: 100%;
    padding: 2rem 5% 4rem 5%;
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
    border-bottom: 1px solid var(--border-subtle);
}

/* Panel Styles */
.panel-summary { 
    background: var(--gradient-card); 
}

.panel-detail { 
    background: var(--bg-root); 
    align-items: flex-start; 
}

@media (min-width: 769px) {
    .viewport.panel-detail {
        justify-content: flex-start;
        padding-top: calc(2rem + clamp(48px, 10vh, 120px));
    }
}

.hero-text {
    opacity: 0; 
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.viewport.visible .hero-text { 
    opacity: 1; 
    transform: translateY(0); 
}

.role-title { 
    font-size: var(--fs-h1); 
    color: var(--accent-primary); 
    margin-bottom: 0.5rem; 
}

.company-name { 
    font-size: var(--fs-h2); 
    color: var(--text-primary); 
    margin-bottom: 1rem; 
    display: block; 
}

.meta-data { 
    font-family: var(--font-head); 
    font-size: 0.85rem; 
    color: var(--accent-tertiary); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 2rem; 
    display: block; 
}

.quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RECOMMENDATION BLOCKS
   ═══════════════════════════════════════════════════════════════════════════ */
/* Pull-out quotes with accent border highlighting testimonials. */

.rec-block {
    margin-top: 2rem;
    background: var(--bg-surface);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 8px 8px 0;
}

.rec-text { 
    font-style: italic; 
    font-size: 0.95rem; 
    color: var(--text-secondary); 
    margin-bottom: 0.5rem; 
}

.rec-author { 
    font-family: var(--font-head); 
    font-weight: 600; 
    font-size: 0.8rem; 
    color: var(--text-primary); 
}

/* ═══════════════════════════════════════════════════════════════════════════
   GRID DETAIL LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */
/* Two-column task/skills grid that collapses to one column on smaller screens. */

.grid-detail {
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 2rem;
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto;
}

@media(min-width: 1024px) { 
    .grid-detail { 
        grid-template-columns: 2fr 1fr; 
    } 
}

.content-left h3,
.content-right h3 {
    color: var(--accent-tertiary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.task-paragraph { 
    margin-bottom: 1rem; 
    padding-left: 1rem; 
    border-left: 1px solid var(--border-subtle); 
}

/* ═══════════════════════════════════════════════════════════════════════════
   JOB ENTRY HIERARCHY (Company, Location/Years, Role, Tasks)
   ═══════════════════════════════════════════════════════════════════════════ */
/* Keeps company/role/task blocks consistent inside detail columns. */

.job-entry {
    margin-bottom: 2rem;
}

.job-entry:last-child {
    margin-bottom: 0;
}

.job-company {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.job-location-years {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.job-role {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.job-tasks {
    padding-left: 0;
}

.job-tasks .task-paragraph {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.job-tasks .task-paragraph:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SKILL CHIPS
   ═══════════════════════════════════════════════════════════════════════════ */
/* Badge-style tags for quick skill callouts. */

.skills-container { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 0.5rem; 
    margin-top: 1rem; 
}

.chip {
    background: var(--chip-bg); 
    color: var(--chip-text);
    padding: 6px 12px; 
    border-radius: 20px;
    font-size: 0.8rem; 
    font-family: var(--font-head); 
    font-weight: 600;
    border: 1px solid transparent; 
    transition: var(--trans-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.chip:hover { 
    border-color: var(--accent-primary); 
    transform: translateY(-2px); 
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL HINT
   ═══════════════════════════════════════════════════════════════════════════ */

.scroll-hint {
    position: absolute; 
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%); 
    animation: bounce 2s infinite;
    color: var(--text-secondary); 
    cursor: pointer;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
/* Full-screen overlay + centered card triggered from nav contact CTA. */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 1999;
    display: none;
}

.modal-backdrop.open {
    display: block;
}

.contact-modal-tl {
    background: var(--bg-surface); 
    color: var(--text-primary);
    border: 1px solid var(--accent-primary); 
    border-radius: 8px;
    padding: 2rem; 
    max-width: 600px; 
    width: 90%; 
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
}

.contact-modal-tl.open {
    display: block;
}

.modal-header-tl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header-tl h2 {
    margin-bottom: 0;
}

.close-modal-tl {
    background: none; 
    border: none; 
    color: var(--text-secondary);
    font-size: 1.5rem; 
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal-tl:hover {
    color: var(--accent-primary);
}

.contact-info-tl p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-info-tl i {
    width: 20px;
    color: var(--accent-primary);
}

.download-section {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.download-section > p {
    font-family: var(--font-head);
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.language-switch {
    margin-top: 1.5rem;
}

.language-switch .chip {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

.language-switch .chip:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .timeline-track {
        width: 40px;
    }
    
    .timeline-main {
        margin-left: 40px;
    }
    
    .year-floater {
        left: 50px;
        font-size: 2.5rem;
    }
    
    .nav-overlay-timeline {
        top: 10px;
        right: 10px;
        gap: 0.5rem;
    }
    
    .btn-cta-tl {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    
    .viewport {
        padding: 1.5rem 1rem 3rem 1rem;
    }
    
    .contact-modal-tl {
        padding: 1.5rem;
        width: 95%;
    }
}

/* ═════════════════════════════════════════════
   Contact Form & Download Buttons
   ═════════════════════════════════════════════ */
/* Inline form + download CTAs styled with timeline palette (no external vars). */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background-color: var(--bg-surface-glass);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 176, 0.15);
    background-color: var(--bg-surface);
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group-checkbox input {
    width: auto;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background-color: var(--accent-primary);
    color: var(--bg-root);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease;
}

.btn-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

#form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

#form-feedback.success {
    background-color: rgba(0, 255, 176, 0.08);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    display: block;
}

#form-feedback.error {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border-color: #e26666;
    display: block;
}

.download-buttons-container {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: var(--bg-surface-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, transform 0.2s ease;
}

.btn-download i {
    font-size: 1.2rem;
}

.btn-download:hover {
    background-color: var(--accent-primary);
    color: var(--bg-root);
    transform: translateY(-2px);
}
/* ═══════════════════════════════════════════════════════════════════════════
   LIGHT THEME HERO TEXT OVERRIDE (MUST BE LAST)
   Ensures hero title and subhead are #333333 in light theme, including mobile.
   Last updated: Jan 2026
   ═══════════════════════════════════════════════════════════════════════════ */
[data-theme="light"] .timeline-hero-heading h1,
[data-theme="light"] .timeline-hero-heading .timeline-hero-subhead,
[data-theme="light"] .timeline-hero-panel .hero-text {
    color: #333333 !important;
}
