/* ===========================
   ODWIEDŹ NAS
   Warrior Angel Studio
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #ffd700;
  --blue: #1e90ff;
  --white: #ffffff;

  --gold-soft: rgba(255, 215, 0, 0.25);
  --gold-medium: rgba(255, 215, 0, 0.48);
  --blue-soft: rgba(30, 144, 255, 0.24);

  --panel: rgba(0, 0, 0, 0.56);
  --panel-strong: rgba(0, 0, 0, 0.72);

  --radius-large: 26px;
  --radius-medium: 20px;
  --radius-pill: 999px;

  --shadow-panel: 0 16px 42px rgba(0, 0, 0, 0.56);
  --shadow-hover: 0 22px 50px rgba(0, 0, 0, 0.68);
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  overflow-x: hidden;

  font-family: "Aptos Display", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  color: var(--white);

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.42) 52%,
      rgba(0, 0, 0, 0.68) 100%
    ),
    radial-gradient(
      1000px 520px at 16% 8%,
      rgba(255, 215, 0, 0.17),
      transparent 62%
    ),
    radial-gradient(
      1000px 520px at 84% 88%,
      rgba(30, 144, 255, 0.18),
      transparent 62%
    ),
    url("../studio.jpg") no-repeat center center fixed;

  background-size: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;

  min-height: 56px;
  padding: 14px 24px;

  display: flex;
  align-items: center;

  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--gold-soft);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.brand__logo {
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.32);
}

.brand__name {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 28px 24px 0;
}

.hero {
  min-height: 38vh;
  display: grid;
  place-items: center;
  text-align: center;

  padding: 48px 24px;

  background: var(--panel);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(3px);
}

.hero__content {
  width: min(820px, 100%);
  animation: fade-in 0.85s ease-out both;
}

.hero__eyebrow,
.section-heading__eyebrow {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin-top: 10px;

  font-size: clamp(2.5rem, 7vw, 4.7rem);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;

  background: linear-gradient(90deg, var(--gold), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow:
    0 0 24px rgba(255, 215, 0, 0.2),
    0 0 24px rgba(30, 144, 255, 0.16);
}

.hero__lead {
  max-width: 720px;
  margin: 22px auto 0;

  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.media-section {
  margin-top: 28px;
  padding: 36px;

  background: var(--panel);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(3px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.2;
}

.section-heading p:last-child {
  margin-top: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.media-card {
  position: relative;
  overflow: hidden;

  min-height: 300px;
  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  color: var(--white);
  text-decoration: none;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
    var(--panel-strong);

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-medium);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.95;
}

.media-card--youtube::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.15), transparent 27%),
    linear-gradient(145deg, rgba(255, 0, 0, 0.32), transparent 62%);
}

.media-card--spotify::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.15), transparent 27%),
    linear-gradient(145deg, rgba(30, 215, 96, 0.3), transparent 62%);
}

.media-card > * {
  position: relative;
  z-index: 1;
}

.media-card:hover,
.media-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.media-card__platform {
  width: fit-content;
  padding: 7px 13px;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.3);
}

.media-card h3 {
  margin-top: 16px;
  font-size: 1.65rem;
}

.media-card p {
  margin-top: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.media-card__action {
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 3px;

  font-weight: 800;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-medium);
}

.page-return {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.return-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 30px;

  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.4px;

  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0.2),
    rgba(30, 144, 255, 0.2)
  );

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.return-link:hover,
.return-link:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.52),
    0 0 18px rgba(255, 215, 0, 0.13),
    0 0 18px rgba(30, 144, 255, 0.12);
  outline: none;
}

.site-footer {
  margin-top: 38px;
  padding: 30px 16px 40px;

  text-align: center;
  color: rgba(255, 255, 255, 0.84);

  background: rgba(0, 0, 0, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand__name {
    width: 100%;
    font-size: 0.82rem;
  }

  .page-wrap {
    padding: 18px 16px 0;
  }

  .hero {
    min-height: 34vh;
    padding: 38px 18px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .media-section {
    padding: 26px 18px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 270px;
    padding: 24px;
  }

  .return-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__content {
    animation: none;
  }

  .media-card,
  .return-link {
    transition: none;
  }
}