:root {
  --section-max-width: 1140px;
  --section-narrow-max-width: 620px;
}

@font-face {
  font-family: "Hleba Soli Ziamli Voli";
  src: url("../HlebaSoliZiamliVoli-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: #000;
}

body {
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
  z-index: 0;
}

.background video,
.background img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%);
  display: block;
}

.background img {
  z-index: 1;
}

.background video {
  z-index: 2;
}

.background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.28) 42%,
      rgba(0, 0, 0, 0.76)
    );
}

.content {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 32px clamp(18px, 4vw, 64px) 48px;
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  width: 50%;
  margin-bottom: clamp(28px, 5vh, 54px);
  text-align: center;
}

.title {
  margin: 0;
  font-family: "Hleba Soli Ziamli Voli", system-ui, sans-serif;
  font-size: clamp(54px, 8vw, 150px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.88;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.75);
}

.band-description {
  width: 100%;
  max-width: var(--section-max-width);
  box-sizing: border-box;
  margin: 0 0 clamp(28px, 5vh, 54px);
  color: rgba(255, 255, 255, 0.92);
  text-align: left;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.01em;
  text-wrap: normal;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

.listen,
.watch,
.releases {
  width: 100%;
  max-width: var(--section-max-width);
}

.listen {
  margin-bottom: clamp(34px, 5vh, 64px);
}

.watch {
  margin-top: clamp(34px, 5vh, 64px);
  margin-bottom: clamp(34px, 5vh, 64px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
  width: 100%;
}

.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.45);
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.section-title {
  margin: 0 0 18px;
  text-align: left;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.8);
}

.listen-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 18px);
  width: 100%;
}

.listen-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  box-sizing: border-box;

  color: white;
  text-decoration: none;
  text-align: center;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 600;
  letter-spacing: 0.02em;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);

  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.listen-buttons a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.75);
}

.covers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
  width: 100%;
}

.covers a {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 180ms ease;
}

.covers a:hover {
  transform: translateY(-4px);
}

.covers img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.45);
}

@media (max-aspect-ratio: 1 / 1) {
  .content {
    padding-top: 28px;
  }

  .hero {
    width: 100%;
    margin-bottom: clamp(28px, 5vh, 48px);
  }

  .title {
    font-size: clamp(54px, 17vw, 118px);
  }

  .band-description {
    width: 100%;
    max-width: var(--section-narrow-max-width);
    margin-bottom: clamp(28px, 5vh, 48px);
    font-size: clamp(16px, 3.8vw, 19px);
    line-height: 1.32;
    text-wrap: normal;
  }

  .listen,
  .watch,
  .releases {
    max-width: var(--section-narrow-max-width);
  }

  .listen-buttons {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .covers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.socials {
  width: 100%;
  max-width: var(--section-max-width);
  margin: clamp(28px, 5vh, 56px) auto 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.socials a {
  width: clamp(38px, 4vw, 52px);
  height: clamp(38px, 4vw, 52px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  text-decoration: none;

  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);

  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.socials a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.72);
}

.socials svg {
  width: 58%;
  height: 58%;
  display: block;
  fill: currentColor;
}
