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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    color: #999;
    font-weight: 400;
    margin-left: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #999;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.nav-menu a:hover {
    color: #333;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 20px 40px;
}

/* Hero and Experience Wrapper */
.hero-experience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
    padding: 0;
    align-items: end;
}

/* Hero Section */
.hero {
    padding: 0;
}

.hero h1 {
    display: none;
}

.subtitle {
    display: none;
}

.intro {
    font-size: 3.5rem;
    color: #333;
    max-width: 100%;
    line-height: 1.3;
    font-weight: 400;
}

.intro em {
    font-style: italic;
    font-weight: 400;
}

/* Section Titles */
.section-title {
    display: none;
}

/* Experience Section */
.experience {
    padding: 0;
}

.experience-grid {
    display: grid;
    gap: 0;
}

.experience-item {
    display: grid;
    grid-template-columns: 100px 200px 1fr;
    gap: 30px;
    padding: 0;
    align-items: start;
    margin-bottom: 16px;
}

.year {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
}

.company {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.details h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.role {
    font-size: 1rem;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    white-space: nowrap;
    display: inline;
}

/* Projects Section */
.projects {
    margin-bottom: 80px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 24px;
    row-gap: 50px;
}

.project-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: none;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.project-card:nth-child(2) .project-image {
    height: 450px;
}

.project-card:nth-child(2) .project-meta {
    margin-bottom: 64px;
}

.project-card:nth-child(3) {
    margin-top: -150px;
}

.project-card:nth-child(4) {
    margin-top: -70px;
}

.project-card:hover {
    transform: none;
    box-shadow: none;
}

.project-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0;
    margin-bottom: 16px;
    transition: none;
    flex-shrink: 0;
}

.project-card:hover .project-image {
    transform: none;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.02);
}

.project-content {
    padding: 0;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
    font-family: 'Georgia', serif;
}

.project-meta {
    font-size: 0.85rem;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-experience-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .experience-item {
        grid-template-columns: 50px 150px 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .logo {
        display: flex;
        flex-direction: column;
    }

    .logo-subtitle {
        margin-left: 0;
        margin-top: 2px;
    }

    .nav-menu {
        gap: 25px;
    }

    .container {
        padding: 120px 20px 40px;
    }

    .hero-experience-wrapper {
        margin-bottom: 50px;
        gap: 40px;
    }

    .intro {
        font-size: 2.5rem;
    }

    .experience-item {
        grid-template-columns: 45px 130px 1fr;
        gap: 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .project-card:nth-child(2) .project-image {
        height: 300px;
    }

    .project-card:nth-child(2) .project-meta {
        margin-bottom: 40px;
    }

    .project-card:nth-child(3),
    .project-card:nth-child(4) {
        margin-top: 0;
    }

    .project-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 0.7rem;
    }

    .container {
        padding: 100px 20px 30px;
    }

    .intro {
        font-size: 2rem;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .project-image {
        height: 240px;
    }

    .project-content h3 {
        font-size: 1.1rem;
    }
}
