/* ==================== */
/* FIL D'ARIANE */
/* ==================== */
.breadcrumb-section {
background-color: #000000;
padding: 120px 0 20px;
}
.breadcrumb-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 60px;
font-size: 20px;
color: #ffffff;
}
.breadcrumb-container a {
color: #999999;
text-decoration: underline;
transition: color 0.3s ease;
}
.breadcrumb-container a:hover {
color: #cccccc;
}
.breadcrumb-container span {
color: #ffffff;
}

/* ==================== */
/* PAGE MES PROJETS */
/* ==================== */
.projects-all {
background-color: #000000;
padding: 60px 0 100px;
min-height: 100vh;
}
.projects-all-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 60px;
}
.projects-all-title {
font-size: 48px;
font-weight: 800;
color: #ffffff;
text-transform: uppercase;
margin: 0 0 80px 0;
letter-spacing: -1px;
}
.projects-all-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}
.project-category {
position: relative;
width: 100%;
overflow: hidden;
cursor: pointer;
text-decoration: none;
display: block;
}
.project-category-item {
position: relative;
width: 100%;
overflow: hidden;
background-color: #1a1a1a;
display: flex;
align-items: center;
justify-content: center;
}
.project-category-item img {
width: 100%;
height: auto;
display: block;
transition: transform 0.3s ease;
object-fit: contain;
}
.project-category:hover .project-category-item img {
transform: scale(1.08);
}
.project-category-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
transition: background 0.3s ease;
}
.project-category:hover .project-category-overlay {
background: rgba(0, 0, 0, 0.6);
}
.project-category-overlay h2 {
font-size: 48px;
font-weight: 800;
color: #ffffff;
text-transform: uppercase;
margin: 0;
letter-spacing: -1px;
text-align: center;
}
@media (max-width: 1200px) {
.breadcrumb-container { padding: 0 40px; }
.projects-all { padding: 20px 0 80px; }
.projects-all-container { padding: 0 40px; }
.projects-all-title { font-size: 40px; margin-bottom: 60px; }
.projects-all-grid { gap: 30px; }
.project-category-overlay h2 { font-size: 40px; }
}
@media (max-width: 768px) {
.breadcrumb-section { padding: 100px 0 20px; }
.breadcrumb-container { padding: 0 20px; font-size: 16px; }
.projects-all { padding: 20px 0 60px; min-height: 0; }
.projects-all-container { padding: 0 20px; }
.projects-all-title { font-size: 32px; margin-bottom: 40px; }
.projects-all-grid {
grid-template-columns: 1fr;
gap: 15px;
    }
.project-category-overlay h2 { font-size: 36px; }
}
@media (max-width: 480px) {
.breadcrumb-section { padding: 100px 0 20px; }
.breadcrumb-container { padding: 0 15px; font-size: 16px; }
.projects-all { padding: 20px 0 60px; min-height: 0; }
.projects-all-container { padding: 0 15px; }
.projects-all-title { font-size: 28px; margin-bottom: 30px; }
.projects-all-grid {
grid-template-columns: 1fr;
gap: 12px;
    }
.project-category-overlay h2 { font-size: 32px; }
}