/* Home page specific styles */
body {
    padding: 40px 20px;
}

.home-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    background: var(--card-background);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.right-column {
    padding-top: 40px;
}

.intro {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.experience {
    margin-bottom: 30px;
}

.experience h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.experience p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.interests {
    margin-bottom: 30px;
}

.interests p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.find-me {
    text-align: right;
}

.find-me p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.social-links a:hover {
    border-bottom-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .home-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .profile-img {
        width: 250px;
        height: 250px;
    }
    
    .right-column {
        padding-top: 0;
    }
    
    .find-me {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
