/* Projets Page Styles */

/* Hero Section - Now using unified page-header styles */
/* Legacy styles removed - see page-header.css for unified styles */


/* Domains Section */
.domains-section {
    padding: 100px 0;
    padding-bottom: 0;
}

.domains-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.domains-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 80px;
}

.criteria-card {
    background: white;
    padding: 24px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.criteria-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.criteria-icon {
    color: #0066FF;
    font-size: 24px;
}

.criteria-card h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1e3a5f;
    margin: 0;
}

/* Projects Grid */
.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.projects-grid {
    margin: 0 auto;
    max-width: 60%;
}

.project-card {
    background: #f8fafb;
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.project-icon {
    width: 48px;
    height: 48px;
    background: #E6F0FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066FF;
    font-size: 24px;
    flex-shrink: 0;
}

.project-content {
    flex: 1;
}

.project-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #1e3a5f;
}

.project-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e3a5f;
    margin: 0;
}

.project-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    /* Legacy projets-hero responsive styles removed - responsive styles now in page-header.css */

    .domains-section {
        padding: 50px 15px;
    }

    .domains-section h2 {
        font-size: 28px;
    }

    .criteria-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
        margin-bottom: 60px;
    }

    .criteria-card {
        padding: 20px 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .project-card {
        padding: 24px;
    }
}

