/* About Page Timeline */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1550745111-ad8201b17d47?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.about-timeline {
    padding: 100px 0;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Vertical line for wide screen */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #ddd;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Content wrapper */
.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 20px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 20px;
}

/* Marker dots */
.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #ff3e3e;
    border: 4px solid #fff;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-date {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    color: #ff3e3e;
    margin-bottom: 10px;
}

.timeline-story {
    margin-bottom: 20px;
    color: #555;
}

.timeline-image img {
    width: 100%;
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

/* Mobile adjustments (no left timeline) */
@media screen and (max-width: 768px) {
    .timeline-container::after {
        display: none; /* User specifically said "no left side timeline" */
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-marker {
        display: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
    }
}
