@import url("header.css");
body {
  width: 100%;
  background-color: #191009;
  color: #ff6200;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden;
}

.gallery-block {
  width: 100%;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4.5rem;
}

.gallery-block h1 {
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 1270px;
  background-color: #191009;
}

.osn {
  margin-left: -40px;
}

.gallery-block h1 span {
  background: linear-gradient(90deg, #ff6200, #00ffff, #ff00ff, #ff6200);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 400%;
  }
  100% {
    background-position: 0%;
  }
}
.gallery-container {
  width: 100%;
  max-width: 1270px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.dynamic-gallery {
  grid-column: 1/-1;
  display: contents;
}

.gallery-item {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  cursor: pointer;
  opacity: 0.5;
}

.gallery-item:hover {
  opacity: 1;
  color: rgba(255, 128, 0, 0.7333333333);
}

.gallery-item a {
  display: block;
  text-decoration: none;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.kontakti-block {
  text-align: center;
  width: 100%;
  max-width: 1270px;
  color: #c1aaaa;
  margin: 0 auto;
}

.kontakti-block h2 {
  color: #c1aaaa;
  animation: pulse 2s ease-in-out infinite;
}

.kontakty_wrapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cont_inst img,
.cont_fa img,
.cont_yo img {
  display: block;
  width: 3rem;
  height: 3rem;
}

.cont_fa img {
  height: 2rem;
}

.cont_inst img {
  animation: floatInst 2.5s ease-in-out infinite;
}

.cont_fa img {
  animation: floatFa 3s ease-in-out infinite 0.2s;
}

.cont_yo img {
  animation: floatYo 2s ease-in-out infinite 0.4s;
}

@keyframes floatInst {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatFa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatYo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.footer-block {
  width: 100%;
  text-align: center;
  padding: 10px 15px;
  flex-shrink: 0;
  box-sizing: border-box;
  font-size: clamp(0.8rem, 2vw, 1rem);
  margin: 0 auto;
  max-width: 1270px;
}

@media (max-width: 768px) {
  .osn {
    margin-left: -40px;
  }
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 180px;
  }
}/*# sourceMappingURL=galery.css.map */