@charset "UTF-8";
/* GRID */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  padding: 2rem;
  background: #0b0f19;
}

/* CARD BASE */
.gallery-item {
  background: #111827;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: #5b8cff;
}
.gallery-item {
  position: relative;
  height: 500px;
}

/* IMAGEN */
.gallery-item img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 500;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* 🔥 GENERACIÓN AUTOMÁTICA CON @each */
.img1 {
  background: url("img/img1.jpg") center/cover;
}

.img2 {
  background: url("img/img2.jpg") center/cover;
}

.img3 {
  background: url("img/img3.jpg") center/cover;
}

.img4 {
  background: url("img/img4.jpg") center/cover;
}

.img5 {
  background: url("img/img5.jpg") center/cover;
}

.img6 {
  background: url("img/img6.jpg") center/cover;
}

body {
  margin: 0;
  font-family: system-ui;
  background: #0b0f19;
  color: #e5e7eb;
}/*# sourceMappingURL=main.css.map */
