/* Projects Page Specific Styles */

/* Bio section styles (inherited from index but included for completeness) */
.bio {
    flex: 1;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.bio h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.bio p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Blog content area */
.blog-content {
    flex: 1;
    max-width: 800px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.featured-image {
    width: 250px;
    height: 200px;
    border-radius: 0.75rem;
    object-fit: cover;
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.post-date {
    font-size: 0.9rem;
    color: #64748b;
}

.post-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

/* Tag styles moved to common tags.css */

.post-excerpt {
    color: #475569;
    line-height: 1.7;
    margin: 0.5rem 0;
}

.read-more {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #4f46e5;
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Container animation for projects page */
.container {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive adjustments for projects page */
@media (max-width: 768px) {
    .bio {
        padding: 1.5rem;
    }

    .bio h1 {
        font-size: 2rem;
    }

    .blog-post {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-image {
        width: 100%;
        height: 200px;
        margin-left: 0;
        margin-bottom: 1rem;
    }

    .post-title {
        font-size: 1.25rem;
    }
}