/* TIMELINE - Simplified Styling */

.timeline-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
    font-weight: 600;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-item {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.timeline-year {
    color: #3b82f6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-description a {
    color: #60a5fa;
    text-decoration: none;
}

.timeline-description a:hover {
    text-decoration: underline;
}

.timeline-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .timeline {
        padding: 0 15px;
    }
    
    .timeline-item {
        padding: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
