#Html4 {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

#projekti-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px;
}

.projekti-item {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #f5f5f5;
  cursor: pointer;
}

.projekti-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgba(58, 94, 87, 0.8);
  color: #fff;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info h4 {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}

.projekti-item:hover .info {
  opacity: 1;
}

/* Për pajisjet me touch – efekti gjithmonë aktiv */
@media (hover: none) {
  .info {
    opacity: 1;
  }
}

/* Desktop: për ekran më të madh se 768px, rrit thumbnail-at */
@media (min-width: 768px) {
  .projekti-item {
    width: 250px;
    height: 250px;
  }
}

.filter-btn {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  padding: 6px 12px;
  display: inline-block;
  color: #3A5461;
  transition: color 0.3s ease;
}

.filter-btn.active {
  color: #A68B74;
}