:root {
--bg-top: #1a1412;
--bg-bottom: #120e0c;

--text: #ece4d8;
--muted: #b8ab99;
--line: rgba(255,255,255,0.08);

--accent: #D4765A;
--accent-rgb: 212, 118, 90;

--max: 1000px;
}

/* Kategorie-Farben */

body.musik {
  --accent: #5A6E82;
  --accent-rgb: 90, 110, 130;

  --bg-top: #20262c;
  --bg-bottom: #0f1113;
}

body.fotografie {
--accent: #7a8468;
--accent-rgb: 122, 132, 104;

--bg-top: #161713;
--bg-bottom: #10110f;
}

body.texte {
  --accent: #9b6f58;
  --accent-rgb: 155, 111, 88;

  --bg-top: #1a1412;
  --bg-bottom: #120e0c;
}

body.sonstiges {
  --accent: #6f7f8a;
  --accent-rgb: 111, 127, 138;

  --bg-top: #141618;
  --bg-bottom: #0f1113;
}

/* GLOBALER HINTERGRUND */

body {
  margin: 0;
  font-family: Arial, sans serif;
  color: var(--text);
  line-height: 1.6;

  background:
    radial-gradient(
      circle at top left,
      rgba(var(--accent-rgb), 0.50),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      var(--bg-top),
      var(--bg-bottom)
    );
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

header {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav {
  display: flex;
  gap: 1.2rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 0 0 1rem;
  line-height: 0.95;
}

.intro {
  padding: 3rem 0;
  max-width: 40rem;
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.intro-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.intro-text {
  max-width: 600px;
}

.intro-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin-right: -200px;

  border-radius: 50%;
  opacity: 0.85;
}

/* Mobile Anpassung für Intro */
@media (max-width: 700px) {
  .intro-inner {
    flex-direction: column;
  }

  .intro-image {
    margin-top: 1rem;
  }
}

.text-block {
  max-width: 40rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.text-block p {
  margin: 0 0 1rem;
}

/* Listenstruktur */

.section {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.entry {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.entry:first-child {
  border-top: none;
}

.entry-title {
  font-size: 1.2rem;
}

.entry-text {
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.entry-link {
  color: var(--accent);
  font-size: 0.95rem;
}

/* =========================
   RELEASE BOX (editorial)
========================= */

.release-box {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2rem;

  padding: 1.5rem;
  margin: 0.5rem 0 1.5rem;

  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

/* Linke Seite */

.release-info {
  display: flex;
  flex-direction: column;
}

/* Jede Zeile */

.release-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;

  padding: 0.6rem 0;

  border-top: 1px solid rgba(255,255,255,0.08);
}

.release-row:first-child {
  border-top: none;
}

/* Labels */

.release-label {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Werte */

.release-value {
  font-family: Arial, sans-serif;
  color: var(--text);
}

/* Tracklist (keine Linien!) */

.release-value div {
  margin: 0.15rem 0;
}

/* Cover */

.release-cover img {
  width: 100%;
  display: block;

  border: 1px solid rgba(255,255,255,0.08);
}

/* Bandcamp Link */

.release-bandcamp {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--accent);

  text-decoration: none;
}

.release-bandcamp:hover {
  opacity: 0.7;
}

/* Fotografie */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.photo-item {
  margin: 0;
}

.photo-item img {
  display: block;
  width: 100%;
  height: auto;
}

.external-link {
  color: var(--accent);
}

@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Updates */

.updates {
  margin: 3rem 0;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  color: var(--muted);
}

.update-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;

  padding: 0.6rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.update-item:first-child {
  border-top: none;
}

.update-date {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.update-text {
  font-family: Arial, sans-serif;
}

/* Mobile */

@media (max-width: 760px) {
  .release-box {
    grid-template-columns: 1fr;
  }

  .release-cover {
    max-width: 220px;
  }
}

.site-footer {
  margin-top: 4rem;
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: right;
}

.site-footer a {
  text-decoration: none;
}