body {
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
  background: url('https://res.cloudinary.com/dwhkjr77b/image/upload/v1749931587/Background_lcttlj.jpg') no-repeat center center fixed;
  background-size: cover;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 10px;
  max-width: 100%;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.gallery img:active {
  transform: scale(0.98);
}

footer {
  text-align: center;
  padding: 10px;
  color: white;
  font-size: 0.9rem;
  background-color: rgba(0,0,0,0.4);
  margin-top: 20px;
}

/* تحسين عرض الصور على الشاشات الأكبر */
@media (min-width: 600px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
