/* Album grid: zorg dat foto's altijd even groot zijn */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 36px 0;
  background: #000;
}

.album-grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.album-grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #222;
  transition: box-shadow 0.2s;
  border-radius: 8px;
}
.album-grid a.grid-item--big img {
  height: 380px;
}
.album-grid a.grid-item--tall img {
  height: 280px;
}

/* Album action worden gebruikt in de prive shoots om te selecteren en downloaden*/
.album-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.btn-download, .btn-select {
  display: inline-block;
  background: #ffff00;
  color: #222;
  border: none;
  border-radius: 4px;
  padding: 10px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-download:hover, .btn-select:hover,
.btn-download:focus, .btn-select:focus {
  background: #222;
  color: #ffff00;
}
.file-warning {
  color: #ffff00;
  font-size: 1rem;
  margin-top: 0;
  text-align: center;
}

/* Responsive aanpassingen */
@media (max-width: 700px) {
  .album-grid {
    gap: 14px;
    padding: 24px 0;
  }
  .album-grid img {
    height: 160px;
  }
  .album-grid a.grid-item--big img {
    height: 320px;
  }
  .album-grid a.grid-item--tall img {
    height: 240px;
  }
}

@media (max-width: 450px) {
  .album-grid {
    gap: 12px;
    padding: 18px 0;
  }
  .album-grid img {
    height: 140px;
  }
  .album-grid a.grid-item--big img {
    height: 280px;
  }
  .album-grid a.grid-item--tall img {
    height: 200px;
  }
}
