/* Journey Page Specific Styles - Navigation handled by main styles.css */

/* Smooth scrolling and performance optimizations */
html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Journey Hero Section */
.journey-hero {
    background-color: #ffffff;
    padding: 100px 0 60px;
    margin-top: 80px;
    position: relative;
}

.journey-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}

.journey-hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.journey-hero .accent-line {
    width: 60px;
    height: 10px;
    background-color: #67e0ff;
    margin-bottom: 20px;
}

.journey-hero h1 {
    font-size: 40px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.1;
    font-family: 'Merriweather Sans', sans-serif;
}

.journey-hero p {
    font-size: 18px;
    color: #565656;
    line-height: 1.6;
    max-width: 600px;
}

/* Journey Hero Image Specific Styling */
.journey-hero .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.journey-hero .hero-image::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 500px;
    background:
        linear-gradient(45deg, #fff845 50%, #ffffff 50%),
        linear-gradient(45deg, transparent 49.8%, rgba(103, 224, 255, 0.3) 49.8%, rgba(103, 224, 255, 0.3) 50.2%, transparent 50.2%);
    border-radius: 225px 225px 40px 40px;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.journey-hero .hero-image img {
    width: 350px;
    height: 420px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 175px 175px 30px 30px;
    border: 6px solid #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 25px rgba(255, 248, 69, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.journey-hero .hero-image img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2),
                0 12px 35px rgba(103, 224, 255, 0.3);
}

/* Journey Stats */
.journey-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #E7E7E9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #e9ecef;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Merriweather', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Page Navigation Preview - Clear Step Design */
.page-preview {
    margin-top: 3rem;
    text-align: center;
}

.preview-title {
    font-size: 1.1rem;
    color: #565656;
    margin-bottom: 2rem;
    font-weight: 500;
}

.preview-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.preview-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
    position: relative;
}

.preview-step:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.step-number {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.preview-step:hover .step-number {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.step-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.step-content span {
    font-size: 0.85rem;
    color: #565656;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 -1rem;
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.5;
    margin-top: 1rem;
}

.scroll-arrow {
    font-size: 1.2rem;
    color: #ccc;
    animation: gentleBounce 3s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: #bbb;
    font-weight: 300;
}

@keyframes gentleBounce {
    0%, 90%, 100% {
        transform: translateY(0);
    }
    45% {
        transform: translateY(-3px);
    }
}

/* Section Divider - using global styles from styles.css */

/* Page Navigation - Use global styles from styles.css */

.nav-title {
    font-size: 0.875rem;
    color: #565656;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.nav-items::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 25px;
    bottom: 25px;
    width: 2px;
    background: linear-gradient(to bottom, #e9ecef 0%, #e9ecef 100%);
    z-index: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border-radius: 6px;
    margin: 2px 0;
}

.nav-item:hover {
    color: #67e0ff;
}

.nav-item.active {
    color: #67e0ff;
}

.nav-indicator {
    display: none;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 24px;
}

.nav-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: #999;
    min-width: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-item.active .nav-number {
    color: #000000;
    background: #67e0ff;
    box-shadow: 0 0 0 4px rgba(103, 224, 255, 0.2);
}

.nav-item.active {
    color: inherit; /* Don't change header text color */
}

.nav-label {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Skills Section */
.skills-section {
    padding: 3.5rem 0;
    background: #f8f9fa;
}

.skills-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.skills-section .section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    color: #565656;
    line-height: 1.6;
}

.skills-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 2rem;
    color: #000000;
    font-family: 'Merriweather Sans', sans-serif;
}

.skill-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skill-category {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #E7E7E9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.skill-category:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #e9ecef;
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.skill-category h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000000;
    font-family: 'Merriweather Sans', sans-serif;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.skill-badge {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    font-size: 0.85rem;
    color: #565656;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-category:hover .skill-badge {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Timeline Section */
.journey-timeline-section {
    padding: 4rem 0;
    background: #ffffff;
}

.journey-timeline-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.journey-timeline-section .section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: #565656;
    line-height: 1.6;
}

.journey-timeline-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 2rem;
    color: #000000;
    font-family: 'Merriweather Sans', sans-serif;
}

.timeline-section {
    margin-bottom: 80px;
}

.timeline-section:last-child {
    margin-bottom: 0;
}

.timeline-section-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #000000;
    font-family: 'Merriweather Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-section-title::before {
    content: '';
    width: 60px;
    height: 10px;
    background-color: #67e0ff;
}

.timeline-track {
    position: relative;
    margin-left: 40px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
}

.timeline-accent {
    width: 16px;
    height: 16px;
    background: #67e0ff;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #67e0ff;
    margin-bottom: 12px;
}

.timeline-accent.current-accent {
    background: #a883bd;
    box-shadow: 0 0 0 2px #a883bd;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 2px #a883bd, 0 0 0 4px rgba(168, 131, 189, 0.3); }
    50% { box-shadow: 0 0 0 2px #a883bd, 0 0 0 8px rgba(168, 131, 189, 0.1); }
    100% { box-shadow: 0 0 0 2px #a883bd, 0 0 0 4px rgba(168, 131, 189, 0.3); }
}

.timeline-year {
    font-size: 0.7rem;
    color: #565656;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
    background: white;
    padding: 4px 6px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    white-space: nowrap;
    min-width: 60px;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timeline-content {
    background: #ffffff;
    border: 1px solid #E7E7E9;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #e9ecef;
}

.timeline-content h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000000;
    font-family: 'Merriweather Sans', sans-serif;
}

.timeline-location {
    color: #565656;
    font-weight: 500;
    margin-bottom: 24px;
    font-size: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-details p {
    color: #565656;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 12px;
}

.project-highlight {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 4px solid #67e0ff;
}

.achievement-counter,
.achievement-badge {
    display: inline-block;
    background: #67e0ff;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 12px;
    margin-right: 8px;
}

.mvp-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.achievement-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.key-achievements {
    margin: 16px 0;
}

.achievement-item {
    color: #565656;
    margin-bottom: 8px;
    font-weight: 400;
}

.skills-used {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.skills-used span {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #565656;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Publications Grid */
.publications-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.publication-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.publication-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #e9ecef;
}

.pub-year {
    display: inline-block;
    background: transparent;
    color: #666;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    border: 1px solid #ddd;
}

.pub-content h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;
}

.pub-authors {
    color: #888;
    font-style: italic;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.pub-venue {
    color: #565656;
    font-weight: 600;
    margin-bottom: 12px;
}

.pub-description {
    color: #565656;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pub-impact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.impact-badge {
    background: #f8f9fa;
    color: #565656;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.impact-badge:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

/* Resume Section */
.resume-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.resume-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 2rem;
    color: #000000;
    font-family: 'Merriweather Sans', sans-serif;
}

.resume-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    gap: 2rem;
}

.resume-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resume-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.resume-preview {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.resume-icon {
    flex-shrink: 0;
}

.resume-info {
    flex: 1;
}

.resume-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 600;
}

.resume-info p {
    color: #565656;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    line-height: 1.4;
}

.file-info {
    font-size: 0.9rem;
    color: #888;
}

.resume-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #000000;
    padding: 8px 16px;
    min-width: 120px;
    text-decoration: none;
    border: 1.5px solid #000000;
    border-radius: 4px;
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 8px 8px 0px #fff845;
    gap: 8px;
}

.resume-button:hover {
    box-shadow: 8px 8px 0px #67e0ff;
    transform: translateY(-1px);
}

.resume-button::after {
    content: '→';
    font-size: 16px;
}

.linkedin-button {
    background-color: #0077b5 !important;
    color: #ffffff !important;
    border-color: #0077b5 !important;
}

.linkedin-button:hover {
    background-color: #005885 !important;
    box-shadow: 8px 8px 0px #67e0ff !important;
    border-color: #005885 !important;
}

.linkedin-button::after {
    content: '🔗';
    font-size: 16px;
}

/* Hand-drawn Line Icons - Sketchy style */
.step-icon, .skill-icon, .section-icon, .resume-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: inline-block;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.skill-icon {
    width: 32px;
    height: 32px;
}

.resume-icon {
    width: 48px;
    height: 48px;
}

/* Tools Icon - Clearer wrench */
.step-icon[data-icon="tools"]::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 16px;
    background: #000;
    left: 10px;
    top: 4px;
    transform: rotate(-3deg);
}
.step-icon[data-icon="tools"]::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 6px;
    border: 2px solid #000;
    left: 7px;
    top: 2px;
    transform: rotate(-3deg);
    border-radius: 1px;
}

/* Calendar Icon - Clear calendar */
.step-icon[data-icon="calendar"]::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    left: 4px;
    top: 4px;
    transform: rotate(1deg);
}
.step-icon[data-icon="calendar"]::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    width: 12px;
    border-top: 2px solid #000;
    box-shadow: 0 3px 0 #000, 0 6px 0 #000;
}

/* Document Icon - Clear document */
.step-icon[data-icon="document"]::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 18px;
    border: 2px solid #000;
    left: 5px;
    top: 3px;
    transform: rotate(-1deg);
}
.step-icon[data-icon="document"]::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 10px;
    border-top: 2px solid #000;
    box-shadow: 0 3px 0 #000, 0 6px 0 #000, 0 9px 0 #000;
}

/* Contact Icon - Clear envelope */
.step-icon[data-icon="contact"]::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 12px;
    border: 2px solid #000;
    left: 4px;
    top: 6px;
    transform: rotate(1deg);
}
.step-icon[data-icon="contact"]::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #000;
    left: 6px;
    top: 6px;
    transform: rotate(1deg);
}

/* Search Icon - Clear magnifying glass */
.skill-icon[data-icon="search"]::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid #000;
    border-radius: 50%;
    left: 6px;
    top: 6px;
    transform: rotate(-2deg);
}
.skill-icon[data-icon="search"]::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 10px;
    background: #000;
    left: 22px;
    top: 20px;
    transform: rotate(45deg);
    border-radius: 1px;
}

/* Design Icon - Clear pencil */
.skill-icon[data-icon="design"]::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 22px;
    background: #000;
    left: 14px;
    top: 5px;
    transform: rotate(-8deg);
    border-radius: 1px;
}
.skill-icon[data-icon="design"]::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #000;
    left: 12px;
    top: 3px;
    transform: rotate(-8deg);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Gear Icon - Clear cog */
.skill-icon[data-icon="gear"]::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid #000;
    border-radius: 3px;
    left: 7px;
    top: 7px;
    transform: rotate(12deg);
    box-shadow:
        inset -6px 0 0 #000,
        inset 6px 0 0 #000,
        inset 0 -6px 0 #000,
        inset 0 6px 0 #000;
}
.skill-icon[data-icon="gear"]::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid #000;
    border-radius: 50%;
    background: white;
    left: 12px;
    top: 12px;
}

/* Resume Icon - Clear document */
.resume-icon[data-icon="resume"]::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 38px;
    border: 3px solid #000;
    left: 9px;
    top: 5px;
    transform: rotate(-2deg);
}
.resume-icon[data-icon="resume"]::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 11px;
    width: 22px;
    border-top: 2px solid #000;
    box-shadow: 0 4px 0 #000, 0 8px 0 #000, 0 12px 0 #000, 0 16px 0 #000, 0 20px 0 #000;
}

/* Section Icons - Keep simple text icons */
.section-icon {
    font-size: 1.2rem;
    transform: rotate(-2deg);
}
.section-icon[data-icon="education"]::before { content: "🎓"; }
.section-icon[data-icon="briefcase"]::before { content: "💼"; }
.section-icon[data-icon="books"]::before { content: "📚"; }

/* Hover Effects */
.step-icon:hover, .skill-icon:hover, .resume-icon:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Journey CTA */
.journey-cta {
    padding: 80px 0;
    background: #000000;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 300;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
    padding: 8px 16px;
    text-decoration: none;
    border: 1.5px solid #000000;
    border-radius: 4px;
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 8px 8px 0px #fff845;
    gap: 8px;
}

.cta-button:hover {
    box-shadow: 8px 8px 0px #67e0ff;
    transform: translateY(-1px);
}

.cta-button::after {
    content: '→';
    font-size: 16px;
}

.cta-button.secondary {
    background: #000000;
    color: white;
    border: 2px solid white;
    font-weight: 400;
    font-family: 'Merriweather Sans', sans-serif;
}

.cta-button.secondary:hover {
    background: #000000;
    color: white;
    border: 2px solid white;
    box-shadow: 8px 8px 0px #67e0ff;
    transform: translateY(-1px);
}

/* Journey page content width - match case studies for consistency */
@media (min-width: 1025px) {
    .journey-hero .container,
    .skills-section .container,
    .journey-timeline-section .container,
    .resume-section .container,
    .journey-cta .container {
        max-width: 1000px; /* Match case study pages */
    }
}

/* Responsive layout for sticky nav - safer approach */
@media (min-width: 1400px) {
    .page-navigation {
        left: max(1rem, calc((100vw - 1200px) / 2 - 280px)); /* Position outside content but never too far left */
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .page-navigation {
        left: 2rem; /* Safe distance from edge */
        max-width: 220px;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .page-navigation {
        left: 1rem; /* Closer to edge on smaller screens */
        max-width: 200px; /* Slightly smaller */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation - use main styles.css for consistency */

    .journey-hero {
        padding: 80px 0 40px;
        margin-top: 60px;
    }

    .section-divider {
        padding: 2rem 0;
    }


    .journey-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .journey-hero h1 {
        font-size: 2.5rem;
    }

    .journey-hero .hero-image::before {
        width: 300px;
        height: 340px;
    }

    .journey-hero .hero-image img {
        width: 250px;
        height: 300px;
        border-radius: 125px 125px 25px 25px;
    }

    .journey-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skills-section,
    .journey-timeline-section,
    .journey-cta {
        padding: 4rem 0;
    }

    .skills-section .section-header {
        margin-bottom: 3rem;
    }

    .skills-section .section-description {
        font-size: 16px;
    }

    .skill-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-preview {
        margin-top: 2rem;
    }

    .preview-title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .preview-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: -0.5rem 0;
    }

    .preview-step {
        padding: 0.75rem;
    }

    .step-content span {
        font-size: 0.8rem;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 30px;
    }

    .timeline-section {
        margin-bottom: 60px;
    }

    .timeline-section-title {
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-year {
        font-size: 0.65rem;
        padding: 3px 4px;
        min-width: 50px;
        max-width: 60px;
    }

    .timeline-track {
        margin-left: 30px;
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 30px;
    }

    .resume-download {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .resume-buttons {
        align-items: center;
        width: 100%;
    }

    .resume-button {
        width: 100%;
        max-width: 200px;
    }

    .download-text {
        display: none;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .journey-hero h1 {
        font-size: 2rem;
    }

    .journey-hero p {
        font-size: 1rem;
    }

    .journey-hero .hero-image::before {
        width: 220px;
        height: 260px;
    }

    .journey-hero .hero-image img {
        width: 180px;
        height: 220px;
        border-radius: 90px 90px 20px 20px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-content {
        padding: 20px;
    }

    .skills-section h2,
    .journey-timeline-section h2 {
        font-size: 2rem;
    }
}