@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-italic-700.woff2') format('woff2');
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: #0a0a0a;
  color: #f2ede3;
  font-family: 'Playfair Display', Georgia, serif;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem;
  background: #0a0a0a;
}

.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.social-icons {
  display: flex;
}

.social-icon {
  display: block;
  color: #f2ede3;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  margin-left: 1.2rem;
}

.social-icon:first-child {
  margin-left: 0;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.social-icon:hover {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: stretch;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6vh 5vw;
  display: flex;
  flex-direction: column;
  gap: 6vh;
}

/* Band name torn-paper sticker */
.band-name {
  margin: 0;
  align-self: flex-start;
}

.sticker {
  display: inline-block;
  background: #f2ede3;
  color: #0a0a0a;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 1.05;
  padding: 0.3em 0.6em;
  transform: rotate(-2.5deg);
  clip-path: polygon(
    1.5% 12%, 6% 2%, 22% 6%, 38% 0%, 55% 5%, 71% 1%, 88% 7%, 99% 2%,
    97% 22%, 100% 40%, 96% 58%, 99% 76%, 95% 92%, 100% 99%,
    82% 96%, 66% 100%, 48% 95%, 33% 99%, 18% 94%, 4% 98%,
    0% 82%, 3% 65%, 0% 48%, 4% 30%, 0% 18%
  );
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.45);
}

/* Cover + tagline row */
.release {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4vw;
  flex-wrap: wrap;
}

.tagline {
  margin: 0;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  text-align: right;
  max-width: 20ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.cover-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  width: clamp(220px, 32vw, 380px);
}

.cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.6);
}

.bandcamp-link {
  display: inline-block;
  text-align: center;
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  color: #f2ede3;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 237, 227, 0.5);
  padding-bottom: 0.15rem;
  transition: border-color 0.2s ease;
}

.bandcamp-link:hover {
  border-color: #f2ede3;
}

@media (max-width: 720px) {
  .hero-content { gap: 4vh; padding: 5vh 6vw; }
  .release { justify-content: center; }
  .tagline { text-align: center; max-width: none; }
  .site-header { padding: 0.9rem 1.2rem; }
  .hero { min-height: calc(100vh - 50px); }
  .social-icon { margin-left: 0.9rem; }
  .social-icon svg { width: 22px; height: 22px; }
}

.site-footer {
  text-align: center;
  padding: 1.5rem;
  background: #0a0a0a;
}

.site-footer a {
  color: #f2ede3;
  opacity: 0.6;
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 0.6rem;
}

.site-footer a:hover {
  opacity: 1;
}

/* Legal pages (Impressum etc.) */
body.legal-page {
  font-family: Georgia, serif;
}

.legal {
  max-width: 640px;
  margin: 0 auto;
  padding: 10vh 6vw 8vh;
  line-height: 1.6;
}

.legal h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3rem);
  margin: 0 0 1.5em;
}

.legal h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1.8em 0 0.4em;
}

.legal p {
  margin: 0 0 1em;
}

.legal a {
  color: #f2ede3;
}

.project-list {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.project-list li {
  margin-bottom: 0.4em;
}

.legal-note {
  opacity: 0.7;
  font-size: 0.9rem;
}

.back-link {
  display: inline-block;
  margin-top: 2em;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 237, 227, 0.5);
  padding-bottom: 0.15rem;
}

.back-link:hover {
  border-color: #f2ede3;
}
