/* Neo-brutalism Experience Section */
#experience.section {
    background-color: var(--background-color);
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.7);
    margin: 40px 20px;
    padding: 30px 20px;
}

.dark #experience.section {
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.15);
}

#experience .section-title {
    margin-bottom: 2.5rem;
    position: relative;
    font-weight: 700;
    color: var(--text-color);
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
}

.dark #experience .section-title {
    border-bottom: 3px solid rgba(255, 255, 255, 0.7);
}

#experience .section-title::after {
    display: none;
}

.neo-timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.neo-experience-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.neo-experience-date {
    background-color: #000;
    color: #fff;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dark .neo-experience-date {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.1);
}

.neo-experience-card {
    width: 100%;
    background: var(--background-color);
    border: 2px solid #000;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.7);
    transition: all 0.2s ease;
}

.dark .neo-experience-card {
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.15);
}

.neo-experience-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.7);
}

.dark .neo-experience-card:hover {
    box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.2);
}

.neo-experience-header {
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
}

.dark .neo-experience-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

.neo-job-title {
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.neo-company-name {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.neo-company-name:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.neo-company-name i {
    margin-right: 8px;
}

.neo-info-badge {
    display: inline-block;
    background-color: #f0f0f0;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid #000;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.7);
    float: right;
}

.dark .neo-info-badge {
    background-color: #333;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.15);
}

.neo-info-badge:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.7);
}

.dark .neo-info-badge:hover {
    box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.2);
}

.neo-experience-body {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
}

.neo-experience-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.neo-experience-body ul li {
    margin-bottom: 8px;
    position: relative;
}

.neo-experience-body ul li::before {
    content: "▹";
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    font-size: 1.2rem;
}

.neo-featured-link {
    margin-top: 25px;
    text-align: right;
}

.neo-btn {
    display: inline-block;
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid #000;
    border-radius: 6px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark .neo-btn {
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.15);
}

.neo-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.7);
    color: var(--text-color);
}

.dark .neo-btn:hover {
    box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.2);
}

.neo-btn i {
    margin-right: 8px;
}

/* Alternate items styling */
.neo-experience-item:nth-child(even) .neo-experience-date {
    align-self: flex-end;
}

.neo-experience-item:nth-child(odd) .neo-experience-card {
    border-top: 6px solid #FF9A8B; /* Soft pink */
}

.neo-experience-item:nth-child(even) .neo-experience-card {
    border-top: 6px solid #9DCEFF; /* Soft blue */
}

@media (max-width: 768px) {
    .neo-experience-date {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .neo-experience-card {
        padding: 20px;
    }
    
    .neo-job-title {
        font-size: 1.2rem;
    }
    
    .neo-company-name {
        font-size: 1rem;
    }
    
    .neo-info-badge {
        float: none;
        margin-top: 10px;
        display: inline-block;
    }
    
    .neo-experience-header {
        text-align: left;
    }
}
