/* About Page Specific Styles */

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

.intro-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.intro-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #00ff88;
}

.intro-section h3 {
    font-size: 1.3em;
    color: #ccc;
    margin-bottom: 15px;
    font-weight: 300;
}

.intro-section .location {
    color: #aaa;
    font-size: 1.1em;
}

.intro-section .location a {
    color: #00ff88;
    text-decoration: none;
}

.intro-section .location a:hover {
    text-decoration: underline;
}

.summary-section,
.experience-section,
.skills-section,
.education-section,
.languages-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid #00ff88;
}

.summary-section h2,
.experience-section h2,
.skills-section h2,
.education-section h2,
.languages-section h2 {
    color: #00ff88;
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 2px solid #00ff88;
    padding-bottom: 10px;
}

.summary-section p {
    font-size: 1.1em;
    color: #ddd;
}

.job {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.job h3 {
    color: #00ff88;
    font-size: 1.4em;
    margin-bottom: 5px;
}

.job h4 {
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 400;
}

.project {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border-left: 3px solid #666;
}

.project h5 {
    color: #00ff88;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.project p {
    color: #ccc;
    margin-bottom: 8px;
}

.project em {
    color: #aaa;
    font-style: italic;
}

.project ul {
    margin: 10px 0;
    padding-left: 20px;
}

.project li {
    color: #ddd;
    margin-bottom: 5px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-category {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.skill-category h4 {
    color: #00ff88;
    font-size: 1.2em;
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 8px;
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category li {
    color: #ddd;
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

.skill-category li:last-child {
    border-bottom: none;
}

.education-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.education-item h3 {
    color: #00ff88;
    font-size: 1.3em;
    margin-bottom: 8px;
}

.education-item p {
    color: #ccc;
}

.languages-grid {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.language {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-name {
    color: #ddd;
    font-weight: 500;
    min-width: 80px;
}

.lang-bar {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.lang-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        padding: 15px;
    }
    
    .intro-section {
        padding: 20px;
    }
    
    .intro-section h2 {
        font-size: 2em;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .language {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .lang-name {
        min-width: auto;
    }
}
