/* ==========================================================================
   Timeline Component
   ========================================================================== */

.process-flow-container {
    margin: 30px 0;
}

.process-flow-title {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.process-flow {
    position: relative;
    padding: 8px 0;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--medium-gray);
    border-radius: 2px;
}

.process-flow-item {
    position: relative;
    width: 50%;
    padding-top: 2px;
    padding-bottom: 2px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    margin: 0;
}

.process-flow-item:nth-child(odd) {
    left: 0;
    padding-right: 80px;
    justify-content: flex-end;
    text-align: right;
}

.process-flow-item:nth-child(even) {
    left: 50%;
    padding-left: 80px;
}

.process-flow-year {
    position: absolute;
    top: 50%;
    width: 120px;
    height: auto;
    padding: 8px;
    border-radius: 999px;
    background: var(--primary-purple);
    color: white;
    font-weight: bold;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary-purple);
    z-index: 1;
    text-align: center;
    font-size: 0.9em;
}

.process-flow-item:nth-child(odd) .process-flow-year {
    right: 0;
    transform: translate(50%, -50%);
}

.process-flow-item:nth-child(even) .process-flow-year {
    left: 0;
    transform: translate(-50%, -50%);
}

.process-flow-content {
    padding: 12px;
    background: var(--light-purple-background);
    border-radius: 8px;
    width: calc(100% - 24px);
    margin: 0;
}

.process-flow-content h4 {
    color: var(--primary-purple);
    margin-bottom: 0.2rem;
    font-size: 1.1em;
    margin-top: 0;
}

.process-flow-content p {
    margin: 0.2rem 0;
    line-height: 1.4;
}

/* Responsive aanpassingen voor mobiele schermen */
@media (max-width: 768px) {
    .process-flow::before {
        left: 60px;
        transform: translateX(0);
    }

    .process-flow-item,
    .process-flow-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 120px;
        padding-right: 15px;
    }

    .process-flow-item:nth-child(odd) {
        justify-content: flex-start;
        text-align: left;
    }

    .process-flow-year,
    .process-flow-item:nth-child(odd) .process-flow-year,
    .process-flow-item:nth-child(even) .process-flow-year {
        left: 60px;
        transform: translate(-50%, -50%);
        width: 90px;
        padding: 8px;
    }

    .process-flow-content {
        width: 100%;
    }
} 