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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    color: #fafafa;
    line-height: 1.6;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.left-side, .right-side {
    flex: 1;
    padding: 20px;
}

.left-side {
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-side {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a1a1a;
    overflow-y: auto;
}

.left-content {
    padding: 2rem;
    max-width: 480px;
}

.my-image {
    width: 380px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.my-image:hover {
    transform: scale(1.02);
}

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

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.30rem;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

.links {
    margin-top: 2rem;
}

.links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 1.5rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.links a:hover {
    color: #fafafa;
}

.right-content {
    max-width: 480px;
    width: 100%;
    padding: 1rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Featured Grid and Items */
.featured-grid {
    display: grid;
    gap: 3rem;
}

.featured-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.featured-item:last-child {
    border-bottom: none;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.featured-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.featured-meta {
    font-size: 0.8rem;
    color: #999;
}

.featured-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tech-stack {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.8rem;
}

.featured-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-link:hover {
    color: #1a1a1a;
}

.featured-link::after {
    content: ' →';
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
}

.read-time {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.5rem;
}

/* Legacy classes kept for backward compatibility */
.project {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.project:last-child {
    border-bottom: none;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.project h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.project-year {
    font-size: 0.8rem;
    color: #999;
}

.project p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.project-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: #1a1a1a;
}

.project-link::after {
    content: ' →';
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.skill-category h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.skill-category p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.education {
    margin-bottom: 3rem;
}

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

.availability-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fafafa;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 2rem;
}

#emoji-how {
    margin-left: 0.5rem;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    vertical-align: middle;
}

/* navbar 
.navbar {
    display: flex;
    padding-bottom: 1rem;
    gap: 10px;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-item:hover {
    text-decoration: underline;
}

*/
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-side, .right-side {
        flex: none;
        height: auto;
        min-height: 100vh;
    }

    .my-image {
        width: 300px;
        height: 300px;
    }

    .left-content, .right-content {
        max-width: 100%;
    }

    .right-side {
        background-color: #f5f5f5;
    }
}