/* -----------------------------------------------------------------------------
   Αρχείο:     assets/css/fotografies.css
   Σκοπός:     Photo albums grid (/fotografies/) + album detail.
   VERSION:    0.1.0
   Ημερομηνία: 2026-09-23
   ----------------------------------------------------------------------------- */

.fotografies-page {
  max-width: var(--content-max);
  margin: 40px auto 80px;
  padding: 0 20px;
}

.fotografies-page__header { text-align: center; margin: 20px 0 40px; }

.albums-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.album-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg-band);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid var(--border);
}
.album-card:hover, .album-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--sh-card);
  text-decoration: none;
  color: inherit;
}
.album-card__thumb-wrap {
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.album-card__thumb-placeholder {
  font-size: 56px;
  filter: opacity(0.6);
}
.album-card__body { padding: 16px 20px 20px; }
.album-card__title {
  font-size: 18px; font-weight: 500;
  color: var(--primary-dark);
  margin: 0 0 6px;
  line-height: 1.3;
}
.album-card__date {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.albums-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}
