/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080808;
  --surface:   #0f0f0f;
  --border:    rgba(255,255,255,0.07);
  --text:      #c8c0b8;
  --text-dim:  rgba(200,192,184,0.45);
  --accent:    #c8c0b8;
  --white:     #f0ece8;
  /*--font-serif: 'Cormorant Garamond', Georgia, serif;*/
  --font-hand: 'Cormorant Garamond', Blippo, fantasy;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono:  'Suisse Int\'l Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: crosshair;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s, color 0.3s;
}
a:hover {
  color: var(--white);
  border-color: rgba(200,192,184,0.5);
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  mix-blend-mode: difference;
}

.nav-name {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
    display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
    align-self: flex-start;
}
.nav-links a {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: none;
  color: var(--white);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) contrast(1.05);
  transform: scale(1.03);
  animation: slow-zoom 20s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.3) 40%, transparent 70%),
    linear-gradient(to right, rgba(8,8,8,0.4) 0%, transparent 60%);
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 0 40px 64px;
}

.hero-name {
  font-family: var(--font-hand);
  font-weight: 300;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.92;
  color: var(--text);
  letter-spacing: -0.01em;
  animation: fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  margin-left: 120px;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 20px;
  animation: fade-up 1.2s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  font-size: 18px;
  color: var(--text-dim);
  animation: pulse-down 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-down {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(6px); opacity: 0.9; }
}

/* ─── SECTIONS ──────────────────────────────────────────────── */
.section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ─── RELEASES ──────────────────────────────────────────────── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
}

.release-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
}

.release-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
  transition: filter 0.5s, transform 0.6s;
}

.release-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.release-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}

.release-item:hover .release-info {
  opacity: 1;
  transform: translateY(0);
}

.release-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  display: block;
}

.release-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 4px;
  display: block;
}

.release-year {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 2px;
  display: block;
}

/* placeholder if no cover art */
.release-item.no-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.release-item.no-cover .release-placeholder {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  padding: 16px;
}

/* ─── INFO ──────────────────────────────────────────────────── */
.info-inner {
  display: grid;
  grid-template-columns: 1fr 0,5fr;
  gap: 80px;
  align-items: start;
}

.info-text p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.info-text a {
  color: var(--text);
}

.info-links {
  display: flex;
  gap: 16px;
  padding-top: 4px;
  margin-top: 20; /* Wert nach Geschmack anpassen */
}

.info-links a {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--text);
  animation: fade-up 1.2s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
  font-size: 14px;
  border-bottom: none;
  flex-direction: row;
  transition: color 0.25s;
}
.info-links a:hover { color: var(--white); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-links { gap: 20px; }
  .hero-name { margin-left: -20px; }
  .hero-text { padding: 0 24px 48px; }
  .hero-scroll { right: 24px; }
  .section { padding: 72px 24px; }
  .info-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer { padding: 24px; }
  .releases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .releases-grid { grid-template-columns: 1fr; }
}

/* ─── GRAIN OVERLAY ─────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}
