:root {
    --primary-color: #333;
    --secondary-color: #666;
    --link-color: #0645AD;
    --timeline-line-color: #ccc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    background-color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Profile Styles */
.profile {
    margin-bottom: 3rem;
    text-align: center;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    text-align: left;
}

.profile-info h1 {
    margin: 0;
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.bio {
    color: #666666;
    margin: 0.25rem 0 0.75rem 0;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: var(--link-color);
    font-size: 1.2rem;
    text-decoration: none;
}

/* Timeline Styles */
.timeline {
    position: relative;
    margin-left: 120px;
    margin-top: 4rem; /* Add space between profile and timeline */
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 2px solid #eee;
}

.timeline-date {
    position: absolute;
    left: -120px;
    color: #999;
    font-size: 0.9rem;
    width: 80px;
    text-align: right;
}

.timeline-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.company-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.content-text p {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.content-text a {
    color: var(--link-color);
    text-decoration: none;
}

.content-text a:hover {
    text-decoration: underline;
}

/* Remove the timeline line */
.timeline::before {
    display: none;
}

/* Responsive Design */
@media (max-width: 600px) {
    .profile-header {
        flex-direction: column;
        gap: 1rem;
    }

    .profile-info {
        text-align: center;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .social-links {
        justify-content: center;
    }

    .timeline {
        margin-left: 0;
    }

    .timeline-date {
        position: static;
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .timeline-item {
        padding-left: 0;
        border-left: none;
    }
}

.image-gallery {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-image {
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Adjust image size for mobile screens */
@media (max-width: 600px) {
    .gallery-image {
        max-width: 150px;
    }
}

.resume-download {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.resume-download a {
    color: #0645AD;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resume-download a:hover {
    text-decoration: underline;
}

/* Make it responsive */
@media (max-width: 600px) {
    .resume-download {
        position: static;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .resume-download a {
        display: inline-flex;
        justify-content: center;
    }
} 