/* Resume/CV/Professional Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 300;
}

header p {
    margin: 0.5rem 0 0 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

.view-toggle {
    margin-top: 1rem;
}

.view-toggle button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.view-toggle button.active {
    background: white;
    color: #667eea;
    border-color: white;
}

.main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.content-section {
    display: none;
    padding: 2rem;
}

.content-section.active {
    display: block;
}

/* Resume View Styles */
.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info h2 {
    color: #667eea;
    margin-top: 0;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.summary {
    margin-bottom: 2rem;
}

.summary h2 {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.experience, .education, .skills {
    margin-bottom: 2rem;
}

.experience h2, .education h2, .skills h2 {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.job, .degree {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 4px solid #667eea;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.job h3, .degree h3 {
    margin: 0 0 0.25rem 0;
    color: #333;
}

.job h4, .degree h4 {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-weight: normal;
}

.job ul, .degree ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.job li, .degree li {
    margin-bottom: 0.25rem;
}

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

.skill-category {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.skill-category h4 {
    margin: 0 0 0.5rem 0;
    color: #667eea;
}

.skill-category p {
    margin: 0;
    color: #666;
}

/* CV View Styles */
.cv-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #667eea;
}

.cv-header h1 {
    color: #667eea;
    margin: 0;
    font-size: 2.5rem;
}

.cv-header h2 {
    color: #666;
    margin: 0.5rem 0;
    font-weight: normal;
}

.cv-section {
    margin-bottom: 2rem;
}

.cv-section h2 {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

/* Professional View Styles */
.professional-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #667eea;
}

.professional-header h1 {
    color: #667eea;
    margin: 0;
    font-size: 2.5rem;
}

.professional-header h2 {
    color: #666;
    margin: 0.5rem 0;
    font-weight: normal;
}

.professional-summary {
    margin-bottom: 2rem;
}

.professional-summary h2 {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.achievements {
    margin-bottom: 2rem;
}

.achievements h2 {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.achievement {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #667eea;
}

.achievement h3 {
    color: #667eea;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.achievement p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.projects {
    margin-bottom: 2rem;
}

.projects h2 {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.project {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
}

.project h3 {
    color: #333;
    margin: 0 0 0.5rem 0;
}

.project p {
    margin: 0.25rem 0;
    color: #666;
}

.project strong {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        margin: 0;
        border-radius: 0;
        padding: 0 1rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .view-toggle button {
        display: block;
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .skills-grid, .achievement-grid {
        grid-template-columns: 1fr;
    }
}
