
/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F6F7F9;
    color: #1A1F2C;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: linear-gradient(to right, #333333, #000000);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Profile Section */
.profile-section {
    margin: -2rem auto 2rem;
    max-width: 1200px;
    padding: 0 1rem;
}

.profile-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-info {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.profile-photo {
    width: 150px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo-placeholder {
    color: #999;
    text-align: center;
    font-size: 0.9rem;
}

.profile-text {
    flex: 1;
}

.profile-header h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.profile-info p {
    color: #666;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 1px solid #eee;
}

.contact-card h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-weight: 600;
    color: #555;
}

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Experience Section */
.experience-section {
    background-color: transparent;
}

.section-title {
    color: #333;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.job-card {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-header {
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 1.25rem;
    color: #1A1F2C;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8E9196;
    font-size: 0.95rem;
}

.company {
    font-weight: 500;
}

.period {
    color: #333;
    font-weight: 500;
}

.environment h4, .responsibilities h4 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.environment {
    margin-bottom: 1rem;
}

.environment p {
    font-size: 0.95rem;
    color: #666;
}

.responsibilities ul {
    padding-left: 1.5rem;
}

.responsibilities li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sidebar-card h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

/* Skills */
.skills-list {
    list-style-type: none;
}

.skills-list li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.skills-list li strong {
    color: #555;
    display: inline-block;
    min-width: 100px;
}

/* Education */
.education-item {
    margin-bottom: 1.25rem;
}

.education-item h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.education-item p {
    color: #666;
    font-size: 0.95rem;
}

.education-year {
    color: #333;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Certifications */
.certifications-list {
    list-style-type: none;
}

.certification-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.certification-name {
    font-size: 0.95rem;
    width: 80%;
}

.certification-date {
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Languages */
.languages-list {
    list-style-type: none;
}

.languages-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.language-name {
    font-weight: 500;
}

.language-level {
    color: #8E9196;
}

/* Interests */
.interests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style-type: none;
}

.interests-list li {
    background-color: #e0e0e0;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #1A1F2C;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
    
    .profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .job-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .certification-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .certification-name {
        width: 100%;
    }
}
