/* Projects Page Specific Styles */

.page-header {
    text-align: center;
    margin: 4rem 0 6rem;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.page-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.projects-section {
    margin-bottom: 8rem;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4e7391;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.project-detail {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid #4e7391;
    transition: all 0.3s ease;
}

.project-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(78, 115, 145, 0.15);
}

.project-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.year {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4e7391;
}

.role {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b9080;
}

.project-detail h3 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    color: #4e7391;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.project-detail p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(78, 115, 145, 0.05);
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4e7391;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card-small {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #6b9080;
    transition: all 0.3s ease;
}

.project-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 144, 128, 0.15);
}

.project-card-small h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-card-small p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.logo a {
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links .active {
    color: #6b9080;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .project-detail h3 {
        font-size: 1.8rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }
}