/* Projects Page Specific Styles */

.projects-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, hsla(217, 91%, 60%, 0.05), hsla(215, 16%, 47%, 0.05));
}

.projects-hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.projects-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.projects-hero p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Project Stats */
.project-stats {
    padding: 3rem 0;
    background: var(--muted);
}

/* Featured Projects */
.featured-projects {
    padding: 5rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elegant);
}

.project-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 0.75rem 0.75rem 0 0;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image-placeholder svg {
    width: 4rem;
    height: 4rem;
    color: white;
}

.project-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-category {
    background: hsla(217, 91%, 60%, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-year {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.project-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.project-features li {
    padding: 0.25rem 0;
    color: var(--foreground);
    font-size: 0.875rem;
}

.project-stats-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.mini-stat {
    text-align: center;
}

.mini-stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.mini-stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Project Capabilities */
.project-capabilities {
    padding: 5rem 0;
    background: var(--muted);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.capability-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.capability-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-corporate);
}

.capability-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(217, 91%, 60%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.capability-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.capability-card p {
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* CTA Section */
.projects-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary);
}

/* Responsive Design */
@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .projects-hero h1 {
        font-size: 3.5rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-hero h1 {
        font-size: 4rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}