/* Briloner Bierbande — Album-Übersicht. Same monochrome language as the
   gallery: black/white, Impact-family display type, Georgia body. This
   page is deliberately public and text-only — no photos, no manifest
   fetch, just titles and lock hints. See albums.js. */

:root {
  --ink: #000;
  --paper: #fff;
  --line: rgba(255, 255, 255, 0.25);
  --dim: rgba(255, 255, 255, 0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

h1, .a-back, .a-badge, .a-lock {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', 'Franklin Gothic Bold', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

a { color: var(--paper); }

.a-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 1rem 0.75rem;
}

.a-head h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }

.a-back {
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--paper);
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

main {
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.a-intro {
  padding: 0.5rem 0 1.5rem;
  opacity: 0.75;
  font-size: 0.95rem;
}

.a-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.a-item {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  min-height: 44px;
}

.a-item:active { background: rgba(255, 255, 255, 0.06); }

.a-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.a-title {
  font-size: 1.05rem;
}

.a-subtitle {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 0.25rem;
}

.a-badge {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.45rem;
  background: var(--paper);
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.a-lock {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: none;
  opacity: 0.55;
  white-space: nowrap;
  flex-shrink: 0;
}

.a-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 1.05rem;
  opacity: 0.75;
}

.a-foot {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}
