/* Container for all your project cards */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  background-color: #1a1a1a; /* Dark background */
}

/* The Individual Card */
.project-card {
  background: #ffffff;
  border: 4px solid #000;
  box-shadow: 8px 8px 0px #333; /* Retro "thick" shadow */
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition: transform 0.1s;
}

.project-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px #ff0000; /* "Type R" Red highlight on hover */
}

/* Project Image/Icon Area */
.project-thumb {
  width: 100%;
  height: 150px;
  background: #eee;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
}

.project-thumb img {
  image-rendering: pixelated;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Typography */
.project-title {
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0;
  text-transform: uppercase;
}

.project-tag {
  font-size: 0.7rem;
  background: #000;
  color: #fff;
  padding: 2px 6px;
  display: inline-block;
  margin-top: 5px;
  align-self: flex-start;
}
