/* BASE */
body {
  margin: 0;
  background: #000;
  font-family: Helvetica, Arial, sans-serif;
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
}

/* DONATION TEXT (TOP) */
#donated {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3vh;
  font-weight: bold;
  z-index: 10;
  white-space: nowrap;   /* ❗ никогда не переносить */

}


.logo {
  max-width: 280px;
  height: auto;
}

/* CENTER IMAGE */
main {
  position: relative;
  height: calc(100vh - 200px);
}

.image-container {
  position: absolute;
  top: 62%;
  left: 50%;
  width: 70vw;
  height: 70vh;
  transform: translate(-50%, -50%);
}

.img-layer {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  opacity: 0;
  transition: opacity 3s ease-in-out;
  pointer-events: none;

  filter: contrast(110%) brightness(105%);
}

.img-layer.visible {
  opacity: var(--opacity, 1);
}


/* FOOTER (SMALLER) */
footer {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  transform: scale(1);
  transform-origin: bottom center;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-contact {
  margin-top: 6px;
  font-size: 11px;
  color: #888;
}

#donated {
}

@media (max-width: 480px) {

  .image-container {
    width: 100vw;   /* было 70vw → +≈25% */
    height: 85vh;  /* увеличиваем и по высоте */
  }

}



