/* 
EXPERIENCES SECTION CSS

Styles for the Experiences section
- Full viewport height layout
- Responsive design for mobile and desktop
- Professional styling consistent with the portfolio theme
*/

.experiences-section {
    background-color: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.experiences-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    width: 100%;
    max-width: 1000px;
}

/* Experience card styling */
.experience-card {
    width: 100%;
    background-color: rgba(30, 30, 30, 0.7);
    border-left: 3px solid #64ffda;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(100, 255, 218, 0.2);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.experience-date {
    font-size: 1rem;
    color: #64ffda;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    background-color: rgba(100, 255, 218, 0.1);
    border-radius: 20px;
}

.job-title {
    font-size: 1.2rem;
    color: #aaa;
    margin: 0.5rem 0 1.5rem 0;
    font-weight: 500;
}

.experience-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.tag {
    font-size: 0.85rem;
    background-color: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Mobile styles for experiences section */
@media (max-width: 768px) {
    .experiences-content {
        padding: 1rem 0;
        gap: 1.5rem;
    }
    
    .experience-card {
        padding: 1.5rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .experience-date {
        font-size: 0.9rem;
    }
    
    .job-title {
        font-size: 1.1rem;
        margin: 0.5rem 0 1rem 0;
    }
    
    .experience-description {
        font-size: 1rem;
    }
}
