/* ==================== PROJECTS ==================== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-item {
  text-align: center;
  padding: 15px;
  background: #e7e4cf;
  border: 2px outset #808080;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 2px solid #000000;
  margin-bottom: 10px;
}

.project-item h3 {
  font-family: "VT323", monospace;
  font-size: 20px;
  color: #0000aa;
  margin: 10px 0;
}

.project-item p {
  flex-grow: 1;
}

.project-item > *:last-child {
  margin-top: auto;
}

.text-with-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.text-with-icon img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
  background: transparent;
  border: none;
  outline: none;
}

#construction {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #5eac56, #3c873c);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #2a6b2a;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 0 #2a6b2a,
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  cursor: pointer;
  margin-top: 15px;
  width: fit-content;
  min-width: 160px;
}

.project-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #2a6b2a,
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #6dbc64, #4a9a4a);
}

.project-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 2px 0 #2a6b2a,
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.project-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.project-tags {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #5698ac, #413c87);
  color: #ffffff;
  padding: 4px 8px;
  border: 2px solid #2b2a6b;
  border-radius: 6px;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
