/* Experience Section */
.experience-section {
    background: #111;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #b3a271 0%, rgba(179, 162, 113, 0.3) 100%);
    box-shadow: 0 0 10px rgba(179, 162, 113, 0.3);
}

.timeline-category {
    color: rgba(179, 162, 113, 0.8);
    font-size: 2.5rem;
    font-weight: bold;
    margin: 3rem 0 2rem 0;
    padding-left: 60px;
    letter-spacing: 1px;
}

.timeline-category:first-of-type {
    margin-top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #b3a271;
    box-shadow: 0 0 0 4px #111,
                0 0 0 8px rgba(179, 162, 113, 0.3),
                0 0 20px rgba(179, 162, 113, 0.5);
}

.timeline-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(179, 162, 113, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(179, 162, 113, 0.1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(179, 162, 113, 0.3);
}

.job-title {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
}

.company {
    font-weight: 600;
    color: rgba(179, 162, 113, 0.8);
    margin-bottom: 1rem;
}

.job-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-list li {
    background: transparent;
    color: #b3a271;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.9rem;
    border: 1px solid rgba(179, 162, 113, 0.2);
    transition: all 0.3s ease;
}
