/* Project Selector Section */
.project-selector-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #FAF6F1 0%, #fff 100%);
}
.project-selector-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.project-selector-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.project-selector-section .section-label {
    display: inline-block;
    background: #FF6F00;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.project-selector-section .section-title {
    font-size: 2.5rem;
    color: #2C1810;
    margin: 0 0 12px 0;
    font-weight: 800;
}
.project-selector-section .section-subtitle {
    font-size: 1.1rem;
    color: #5D4037;
    margin: 0;
}
.project-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .project-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .project-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .project-selector-section .section-title {
        font-size: 1.8rem;
    }
}
.project-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #FF6F00;
}
.project-card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}
.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.project-card:hover .project-card-image img {
    transform: scale(1.05);
}
.project-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF6F00;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.project-card-content {
    padding: 14px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.project-card-content h3 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    color: #2C1810;
    font-weight: 700;
}
.project-card-content p {
    margin: 0 0 10px 0;
    color: #5D4037;
    font-size: 0.85rem;
    line-height: 1.4;
    flex-grow: 1;
}
.project-material {
    display: inline-block;
    background: #FFF3E0;
    color: #E65100;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}
