/* Simple Image Card Styling */

/* Basic card styling */
.project-card-modern {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  height: 250px; /* Fixed height for consistency */
}

/* Simple hover effect */
.project-card-modern:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Image styling */
.project-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.project-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}

.project-card-modern:hover .project-card-inner img {
  transform: scale(1.02);
}

/* Hide overlay and content */
.project-card-overlay {
  display: none;
}

.project-card-content {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .project-card-modern {
    margin-bottom: 15px;
  }
}
