:root {
  --primarycolor: #FBAD18;
  --secondarycolor: #85837D;
  --thirdcolor: #0c243d;
}



.container-ziyaretci {
  padding: 40px 20px;
  text-align: center;
}

.h1-ziyaretci {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000000;
  text-align: center;
}

.gallery-ziyaretci {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card-ziyaretci {
  position: relative;
  flex: 1 1 200px;
  max-width: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.card-ziyaretci img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.3s ease;
}

.card-ziyaretci:hover img {
  transform: scale(1.05);
}

.card-text-ziyaretci {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .gallery-ziyaretci {
    flex-direction: column;
    align-items: center;
  }

  .card-ziyaretci {
    max-width: 90%;
  }
}
