/* ========================================
   PROJECT IMAGE PLACEHOLDERS
   Additional styles for SVG placeholders
======================================== */

/* Enhanced project cards for better placeholder integration */
.project-card {
    border: 1px solid #e9ecef;
}

.project-card:hover {
    border-color: var(--primary-color, #FF6B35);
}

/* Project image placeholders */
.project-image-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px 16px 0 0;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.project-image-placeholder svg {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
}

.project-card:hover .project-image-placeholder svg {
    transform: scale(1.02);
}

/* Coming soon image styling */
.coming-soon-image {
    max-width: 120px;
    max-height: 120px;
    opacity: 0.8;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.coming-soon-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Project image with fallback handling */
.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #f8f9fa;
}

.project-image[src="/images/comingsoon.png"] {
    object-fit: contain;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* No projects placeholder */
.no-projects-placeholder {
    padding: 3rem 2rem;
    text-align: center;
}

.no-projects-placeholder h4 {
    color: #2C3E50;
    margin-bottom: 1rem;
}

.no-projects-placeholder svg {
    opacity: 0.6;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.no-projects-placeholder:hover svg {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .project-image,
    .project-image-placeholder {
        height: 200px;
    }
    
    .no-projects-placeholder {
        padding: 2rem 1rem;
    }
    
    .no-projects-placeholder svg,
    .coming-soon-image {
        width: 80px;
        height: 80px;
    }
}