:root{
  --font-sans: Futura, "Futura PT", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

/* Reset / Base */
*{ box-sizing: border-box; }
html, body{ height: 100%; margin: 0; }

body{
  background: #fff;
  color: #111;
  font-family: var(--font-sans);
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* sensible image defaults (prevents weird scaling) */
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* visually hidden helper */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Fullscreen Layout */
.page{
  min-height: 100vh;
  position: relative;
  padding: 18px 16px 56px; /* unten Platz fürs Impressum */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Bandlogo oben */
.header{
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: clamp(6px, 2vh, 18px);
}

.bandlogo{
  width: min(520px, 86vw);
  height: auto;
}

/* Links (Social & Shop) */
.links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 18px);
  padding: 8px 10px;
  margin: 0; /* nav default margins vermeiden */
}

.links--top{
  margin-top: clamp(10px, 2vh, 18px);
}

/* Icon-Buttons */
.iconbtn{
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.10);
  text-decoration: none;

  /* prevents child from overflowing if svg is weird */
  overflow: hidden;
}

/* HARD clamp for SVG icons (prevents "riesig" no matter what) */
.links .iconbtn > img{
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: block !important;
  object-fit: contain;
}

.iconbtn:hover{
  background: rgba(0,0,0,0.07);
}

.iconbtn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.20);
}

/* Album Bereich */
.content{
  width: 100%;
  max-width: 860px;
  margin-top: clamp(14px, 3vh, 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-wrap{
  width: min(520px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Text über Album ohne Rahmen */
.album-badge{
  width: 100%;
  text-align: center;
  margin-bottom: 10px;

  font-size: clamp(14px, 2.6vw, 18px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;

  padding: 0;
  border: none;
  background: none;
}

.album-date{
  letter-spacing: 0.06em;
}

/* Albumcover */
.albumlink{
  display: inline-block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
}

.album{
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  transform: translateZ(0);
}

.albumlink:hover .album{
  filter: brightness(1.02);
}

/* Impressum unten links ohne Rahmen */
.footer{
  position: absolute;
  left: 12px;
  bottom: 10px;
}

.impressum{
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: 0.4px;
  color: #000;
  text-decoration: none;
  padding: 0;
  border: none;
  background: none;
}

.impressum:hover{
  text-decoration: underline;
}
