/* Estil general */
body {
  font-family: sans-serif;
  background: #f5f5f5;
  padding: 20px;
  margin: 0;
}

/* Galeria responsive i elegant */
#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 25px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Imatges i v�deos adaptables */
.item img,
.item video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  background: #000;
}

/* Contenidor de cada element */
.item {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-width: 0;
}

/* Efecte hover suau */
.item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.alert {
  background-color: #000;
  position: absolute;
}

p {
  margin: 0;
}