/* ===========================
   Warrior Angel Studio — Global CSS
   Kolorystyka: złoto + błękit
   =========================== */


/* ===========================
   RESET
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Aptos Display", system-ui, Arial, sans-serif;
  color: white;
}


/* ===========================
   KOLORY I ZMIENNE
   =========================== */

:root {
  --gold: gold;
  --blue: dodgerblue;
  --text: white;

  --gold-ghost: rgba(255, 215, 0, 0.22);
  --blue-ghost: rgba(30, 144, 255, 0.22);

  --gold-glow: rgba(255, 215, 0, 0.45);
  --blue-glow: rgba(30, 144, 255, 0.45);

  --gold-border-soft: rgba(255, 215, 0, 0.25);
  --gold-border-strong: rgba(255, 215, 0, 0.65);

  --panel-bg: rgba(0, 0, 0, 0.45);
  --panel-bg-strong: rgba(0, 0, 0, 0.58);

  --blur-weak: 2px;
  --blur-medium: 3px;

  --radius-large: 24px;
  --radius-extra-large: 40px;

  --shadow-tile:
    0 10px 28px rgba(0, 0, 0, 0.50);

  --shadow-tile-hover:
    0 16px 40px rgba(0, 0, 0, 0.62);
}


/* ===========================
   TŁO STRONY
   =========================== */

body {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.20) 0%,
      rgba(0, 0, 0, 0.35) 35%,
      rgba(0, 0, 0, 0.50) 100%
    ),
    radial-gradient(
      1200px 600px at 20% 10%,
      rgba(255, 215, 0, 0.18),
      transparent 60%
    ),
    radial-gradient(
      1200px 600px at 80% 90%,
      rgba(30, 144, 255, 0.18),
      transparent 60%
    ),
    url("studio.jpg") no-repeat center center fixed;

  background-size: cover;
  overflow-x: hidden;
}


/* ===========================
   GÓRNY PASEK
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

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

  padding: 14px 24px;

  background: rgba(0, 0, 0, 0.42);
  border-bottom: 1px solid var(--gold-border-soft);

  backdrop-filter: blur(6px);
}

.brand .logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-shadow:
    0 0 12px rgba(255, 215, 0, 0.25),
    0 0 18px rgba(30, 144, 255, 0.18);
}

.brand .tag {
  display: inline-block;
  margin-left: 10px;

  font-size: 0.95rem;
  opacity: 0.90;
}


/* ===========================
   GŁÓWNY KONTENER
   =========================== */

.wrap {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 24px;
}


/* ===========================
   HERO / PORTAL
   =========================== */

.hero {
  display: grid;
  place-items: center;

  min-height: 38vh;
  margin-top: 12px;

  background: var(--panel-bg);
  border: 1px solid var(--gold-border-soft);
  border-radius: var(--radius-large);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(var(--blur-weak));
}

.hero-card {
  padding: 28px 22px;
  text-align: center;

  animation: fadeIn 1.2s ease-out both;
}

.hero h1 {
  font-size: 3rem;
  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 20px rgba(255, 215, 0, 0.30),
    0 0 24px rgba(30, 144, 255, 0.25);
}

.hero h2 {
  margin-top: 8px;

  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;

  color: rgba(255, 255, 255, 0.92);

  text-shadow:
    0 0 12px rgba(0, 0, 0, 0.65);
}

.subtitle {
  margin-top: 10px;

  font-size: 1.2rem;
  letter-spacing: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 215, 0, 0.95),
      rgba(30, 144, 255, 0.95)
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.authors {
  margin-top: 10px;
  opacity: 0.85;
}


/* ===========================
   SIATKA KAFELKÓW
   =========================== */

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;
  margin-top: 28px;
}


/* ===========================
   ZWYKŁE KAFELKI
   =========================== */

.tile {
  position: relative;

  min-height: 180px;

  overflow: hidden;

  color: var(--text);
  text-decoration: none;

  background: var(--panel-bg-strong);
  border: 1px solid var(--gold-border-soft);
  border-radius: 22px;

  box-shadow: var(--shadow-tile);

  backdrop-filter: blur(var(--blur-medium));

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease;
}

.tile:hover {
  transform: translateY(-3px);

  border-color: rgba(255, 255, 255, 0.32);

  box-shadow: var(--shadow-tile-hover);

  filter: saturate(1.06);
}

.t-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 18px;
}

.t-content h2 {
  font-size: 1.15rem;

  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.55);
}

.t-content p {
  margin-top: 5px;

  line-height: 1.45;
  opacity: 0.95;
}


/* ===========================
   BANNER / ZAPROSZENIE
   =========================== */

.premiere-banner {
  grid-column: 1 / -1;

  display: block;
  overflow: hidden;

  margin: 28px 0;

  min-height: 210px;

  color: var(--text);
  text-decoration: none;

  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.72),
      rgba(5, 15, 30, 0.68)
    );

  border: 1px solid var(--gold-border-strong);
  border-radius: 24px;

  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.58),
    0 0 18px rgba(255, 215, 0, 0.10);

  backdrop-filter: blur(var(--blur-medium));

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.premiere-banner:hover {
  transform: translateY(-3px);

  border-color: rgba(255, 255, 255, 0.40);

  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.68),
    0 0 24px rgba(255, 215, 0, 0.18),
    0 0 26px rgba(30, 144, 255, 0.12);
}


/* GÓRNA CZĘŚĆ — STAŁA */

.premiere-banner__header {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 82px;
  padding: 18px 24px;

  text-align: center;

  background:
    linear-gradient(
      90deg,
      rgba(255, 215, 0, 0.16),
      rgba(30, 144, 255, 0.16)
    );

  border-bottom: 1px solid rgba(255, 215, 0, 0.38);
}

.premiere-banner__header h2 {
  font-size: 1.85rem;
  letter-spacing: 1px;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--blue)
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow:
    0 0 16px rgba(255, 215, 0, 0.20),
    0 0 16px rgba(30, 144, 255, 0.18);
}


/* DOLNA CZĘŚĆ — ZMIENNA */

.premiere-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 128px;
  padding: 24px 28px;

  text-align: center;
}

.premiere-banner__content h3 {
  margin-bottom: 9px;

  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;

  color: var(--gold);

  text-shadow:
    0 0 10px rgba(255, 215, 0, 0.18);
}

.premiere-banner__content p {
  max-width: 760px;

  font-size: 1rem;
  line-height: 1.55;

  color: rgba(255, 255, 255, 0.92);
}


/* ===========================
   STOPKA
   =========================== */

.site-footer {
  margin-top: 32px;
  padding: 32px 16px 40px;

  text-align: center;

  background: rgba(0, 0, 0, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.20);

  opacity: 0.90;

  backdrop-filter: blur(3px);
}


/* ===========================
   ANIMACJE
   =========================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===========================
   RESPONSYWNOŚĆ — TABLET
   =========================== */

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premiere-banner {
    grid-column: 1 / -1;
  }
}


/* ===========================
   RESPONSYWNOŚĆ — TELEFON
   =========================== */

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand .tag {
    margin-left: 6px;
    font-size: 0.82rem;
  }

  .wrap {
    padding: 16px;
  }

  .hero {
    min-height: 34vh;
  }

  .hero-card {
    padding: 24px 16px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.05rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tile {
    min-height: 165px;
  }

  .premiere-banner {
    grid-column: 1;
    min-height: 190px;
  }

  .premiere-banner__header {
    min-height: 72px;
    padding: 16px;
  }

  .premiere-banner__header h2 {
    font-size: 1.38rem;
  }

  .premiere-banner__content {
    min-height: 118px;
    padding: 20px 18px;
  }

  .premiere-banner__content h3 {
    font-size: 1.08rem;
  }

  .premiere-banner__content p {
    font-size: 0.92rem;
  }
}


/* ===========================
   REDUKCJA RUCHU
   =========================== */

@media (prefers-reduced-motion: reduce) {
  .hero-card,
  .tile,
  .premiere-banner {
    animation: none !important;
    transition: none !important;
  }
}