/* ===== PODSTAWOWE USTAWIENIA STRONY ===== */
body, html {
  margin: 0;
  padding: 0;
  height: 100dvh;
  background: #000;
  color: white;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* ===== KONTENER STRONY ===== */
.page {
  position: relative;
  height: 100%;
  width: 100vw;
  background: #000;
}

/* ===== KONTENER OBRAZU ===== */
.image-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #000;
  overflow: hidden;
  position: relative;
}

/* ===== OBRAZ ===== */
.image-wrapper img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== TEKST NA OBRAZIE ===== */
.top-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  width: 760px;
  max-width: 90vw;
  text-align: justify;
  line-height: 1.5;
  font-size: 14px;
  text-shadow: 0 0 4px rgba(0,0,0,0.8);
  pointer-events: none;
  z-index: 10;
}

/* ===== WERSJA MOBILNA ===== */
@media (max-width: 600px) {

  .top-text {
    top: 15px;
    max-width: 90vw;
    font-size: 13px;
  }
}
