/* Projects Page Styles */

.projects-page-container {
    width: 80%;
    margin: 40px auto;
    max-width: 1000px;
    min-height: 60vh;
}

.page-header-simple {
    border-left: 5px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.page-header-simple h1 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin: 0;
}

.year-nav {
    display: flex;
    flex-wrap: wrap; /* Allow years to wrap */
    gap: 10px;
    align-items: center;
    margin: 30px 0 50px 0;
    font-size: 1.2rem;
    color: #999;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
    padding-top: 10px;
}

.year-link {
    color: #999;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border-bottom: none !important;
}

.year-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.year-separator {
    color: #ccc;
    font-weight: 300;
    margin: 0 5px;
}

.project-year-section {
    margin-bottom: 40px;
}

.project-year-section h3 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
    font-weight: 800;
}

.project-year-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.project-year-section li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
    font-size: 1.05rem;
}

.project-year-section hr {
    border: 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

/* Responsive Projects */
@media (max-width: 600px) {
    .projects-page-container {
        width: 90%;
    }
    
    .page-header-simple h1 {
        font-size: 2rem;
    }
    
    .year-nav {
        font-size: 1rem;
        justify-content: center;
    }
}
