/* =========================================================================
   STYLE.CSS — Poisoned Hestia
   ========================================================================= */

/* -------------------------------------------------------------------------
   SCHRIFTARTEN — DSGVO-Hinweis
   -------------------------------------------------------------------------
   Diese Version bindet KEINE Schriftarten mehr von Google-Servern ein
   (vorher: fonts.googleapis.com). Dadurch wird beim Seitenaufruf keine
   IP-Adresse mehr an Google übertragen. Der Font-Stack fällt automatisch
   auf saubere System-Standardschriften zurück (Serife für Überschriften,
   Sans-Serif für Fließtext) - die Seite bleibt voll funktionsfähig und
   optisch sehr ähnlich, nur ohne die exakten Google-Font-Glyphen.

   MÖCHTEST DU die Original-Schriften (Cinzel / Oswald) behalten, kannst du
   sie DSGVO-konform SELBST HOSTEN statt von Google zu laden:
   1. Auf https://gwfh.mranftl.com/fonts (google-webfonts-helper) nach
      "Cinzel" und "Oswald" suchen, jeweils die .woff2-Dateien (Latin,
      benötigte Schnitte: 400/500 Oswald, 500/700 Cinzel) herunterladen.
   2. Dateien in einen neuen Ordner assets/fonts/ hochladen.
   3. Den @font-face Block unten (aktuell auskommentiert) einkommentieren
      und die Dateinamen an deine heruntergeladenen Dateien anpassen.
   Danach werden die Schriften von deinem eigenen Webspace geladen -
   keine Verbindung zu Google mehr nötig.

@font-face {
  font-family: "Cinzel";
  src: url("../assets/fonts/cinzel-v-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("../assets/fonts/cinzel-v-latin-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../assets/fonts/oswald-v-latin-300.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../assets/fonts/oswald-v-latin-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../assets/fonts/oswald-v-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
   ------------------------------------------------------------------------- */

:root {
  --bg: #0a0908;
  --bg-alt: #131110;
  --ink: #eae6df;
  --ink-dim: #9a938a;
  --blood: #8e1622;
  --blood-bright: #c21f2e;
  --line: #2a2724;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Oswald", "Segoe UI", sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 0.6em;
  margin-bottom: 1.6em;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--blood-bright);
}

.subsection-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  text-align: center;
  margin: 0 0 28px;
  position: relative;
}
.subsection-title span {
  background: var(--bg);
  padding: 0 18px;
  position: relative;
  z-index: 1;
}
.subsection-title::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(10,9,8,0.95), rgba(10,9,8,0));
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10,9,8,0.96);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img { height: 57px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: transform 0.25s ease, opacity 0.25s ease; }

.nav-area {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-list a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}
.nav-list a:hover { color: var(--blood-bright); }

.header-social-bar {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.header-social-bar .social-icon img { width: 30px; height: 30px; border-radius: 5px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000;
  padding-top: 130px;
  padding-bottom: 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("../assets/band/band-red.jpg");
  background-size: cover; background-position: center 25%;
  opacity: 0.55;
  filter: grayscale(15%) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.75) 55%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }

.hero-eyebrow {
  display: inline-block;
  border: 1px solid var(--blood-bright);
  color: var(--blood-bright);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.5em;
}
.hero-content p {
  color: var(--ink-dim);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 2.2em;
}

.hero-streaming-bar {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.hero-streaming-bar .social-icon img {
  width: auto;
  height: auto;
  display: block;
}
.hero-streaming-bar .social-icon { opacity: 0.92; transition: opacity 0.2s ease, transform 0.2s ease; }
.hero-streaming-bar .social-icon:hover { opacity: 1; transform: translateY(-2px); }

.btn-primary, .btn-ghost {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 13px 30px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--blood); color: #fff; border-color: var(--blood); }
.btn-primary:hover { background: var(--blood-bright); border-color: var(--blood-bright); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blood-bright); color: var(--blood-bright); }
.btn-ghost:disabled, .btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---------- About ---------- */

.about { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}

.about-hero-shot {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(35%);
  cursor: pointer;
  transition: filter 0.25s ease, transform 0.25s ease;
}
.about-hero-shot:hover { filter: grayscale(0%); transform: scale(1.01); }

.about-text p { color: var(--ink-dim); margin-bottom: 1.1em; }
.about-text strong { color: var(--ink); font-weight: 500; }

.band-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.gallery-item {
  padding: 0; border: none; background: none; cursor: pointer;
  border-radius: 3px; overflow: hidden; aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(25%);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0%); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  display: none; align-items: center; justify-content: center;
  z-index: 300; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 85vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; border-radius: 4px; box-shadow: 0 0 60px rgba(194,31,46,0.25); }
.lightbox-close {
  position: absolute; top: -42px; right: -6px;
  background: none; border: none; color: var(--ink); font-size: 2rem; cursor: pointer; line-height: 1;
}
.lightbox-close:hover { color: var(--blood-bright); }

/* ---------- Releases ---------- */

.releases-grid-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  margin-bottom: 64px;
}
.releases-grid-featured .release-card {
  border-color: var(--blood);
  border-width: 2px;
}
.releases-grid-featured .release-info h3 { font-size: 1.25rem; }

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px;
}
.releases-grid .release-cover { aspect-ratio: 1 / 1; }

.release-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.release-card:hover { transform: translateY(-6px); }
.release-card:not(.featured):hover { border-color: var(--blood); }
.releases-grid-featured .release-card:hover { border-color: var(--blood-bright); }

.release-cover { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.release-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.release-cover a:hover img { transform: scale(1.04); }
.release-card.upcoming .release-cover img { filter: grayscale(20%) brightness(0.85); }

.badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 2px; text-transform: uppercase;
}
.badge-coming { background: var(--blood-bright); color: #fff; }

.release-info { padding: 18px 20px 22px; }
.release-info h3 { font-size: 1.05rem; text-transform: uppercase; margin-bottom: 0.3em; }
.release-meta, .release-date { color: var(--ink-dim); font-size: 0.85rem; margin: 0 0 0.4em; }

.release-buttons { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.release-buttons .btn-ghost, .release-buttons .btn-primary { padding: 9px 18px; font-size: 0.75rem; flex: 1; text-align: center; }

/* ---------- Tracklist Modal ---------- */

.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center; z-index: 200; padding: 24px; }
.modal.open { display: flex; }
.modal-box { background: var(--bg-alt); border: 1px solid var(--blood); border-radius: 4px; max-width: 480px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 34px 30px; position: relative; }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--ink-dim); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--blood-bright); }
.release-subtitle { color: var(--ink-dim); font-style: italic; font-size: 0.9rem; margin: -0.6em 0 0.8em; }
.tracklist { padding-left: 1.2em; color: var(--ink-dim); }
.tracklist li { margin-bottom: 0.4em; }
.release-note { font-size: 0.8rem; color: var(--ink-dim); font-style: italic; margin-top: 1em; }
.modal-actions { display: flex; gap: 14px; margin-top: 1.6em; flex-wrap: wrap; }

/* ---------- Contact / Footer ---------- */

.site-footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding: 90px 0;
}
.site-footer .section-title { color: var(--ink); }

.footer-email { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.05em; text-align: center; margin-bottom: 46px; }
.footer-email a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 3px; }
.footer-email a:hover { color: var(--blood-bright); border-color: var(--blood-bright); }

.footer-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-logos img.claim,
.footer-logos img.label { height: 140px; width: auto; }

.footer-social-bar { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-social-bar .social-icon img,
.footer-social-bar .streaming-badge img { height: 34px; width: auto; border-radius: 5px; }

.social-icon { transition: transform 0.2s ease; }
.social-icon:hover { transform: scale(1.1); }

.footer-meta { color: var(--ink-dim); font-size: 0.8rem; text-align: center; margin-top: 40px; }
.footer-meta a { text-decoration: underline; }
.footer-meta a:hover { color: var(--blood-bright); }

/* ---------- Impressum / Datenschutz Seite ---------- */

.legal-page { padding-top: 160px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.legal-container { max-width: 820px; padding-bottom: 40px; }
.legal-block { margin-bottom: 56px; }
.legal-block h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5em;
  margin-bottom: 0.8em;
}
.legal-block h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--blood-bright);
  margin-top: 1.6em;
}
.legal-block p { color: var(--ink-dim); margin-bottom: 1em; }
.legal-block a { color: var(--ink); border-bottom: 1px solid var(--line); }
.legal-block a:hover { color: var(--blood-bright); border-color: var(--blood-bright); }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-area {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 260px;
    background: var(--bg-alt); flex-direction: column; justify-content: center;
    align-items: center; gap: 34px; transition: right 0.3s ease;
    border-left: 1px solid var(--line);
  }
  .nav-area.open { right: 0; }
  .nav-list { flex-direction: column; gap: 24px; }
  .header-social-bar { border-left: none; padding-left: 0; }
  .footer-logos img.claim, .footer-logos img.label { height: 100px; }
  .releases-grid-featured { grid-template-columns: 1fr; }
  .legal-page { padding-top: 130px; }
}
