.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Зображення з анімацією масштабу */
.hero-slider__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleImage 5s ease-out forwards;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
}

@keyframes scaleImage {
  0% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Темний напівпрозорий шар */
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Контент поверх з текстом */
.hero-slider__content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  /* padding-top: 195px; */
  max-width: 795px;
  padding: 37vh 15px 0 15px;
  margin: auto auto;
}

/* Заголовок і підзаголовок */
.hero-slider__title,
.hero-slider__subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  text-align: center;
  text-shadow: 1px 1px 2px var(--bg-darker);
}

.hero-slider__subtitle span {
    font-family: var(--second-family);
    text-transform: uppercase;
    color: var(--chinazes-color);
}

.hero-slider__title {
  font-family: var(--second-family);
  text-transform: uppercase;
  font-size: 64px;
  color: var(--chinazes-color);
  animation-delay: 0.2s;
}

.hero-slider__subtitle {
  font-weight: 500;
  font-size: 24px;
  animation-delay: 0.5s;
}

/* Адаптивний розмір для мобільних */
@media (max-width: 767px) {
  .hero-slider__title {
    font-size: 38px;
  }
  .hero-slider__subtitle {
    font-size: 21px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Кнопка з анімацією градієнту і появою */
.btn-to-calculator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 0;
  border-radius: 8px;
  width: 300px;
  height: 70px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  border: none;
  outline: none;
  background: linear-gradient(270deg, #000, #232628, #464d50, #232628);
  background-size: 800% 800%;
  opacity: 0;
  animation: gradientShift 6s ease infinite, slideInFromLeft 0.8s ease forwards;
  box-shadow: 8px 7px 5px rgba(0, 0, 0, 0.77);
  transform: translateX(-50px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-to-calculator:hover {
  transform: scale(1.5);
  box-shadow: 10px 9px 6px rgba(0, 0, 0, 0.9);
  outline: none;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes slideInFromLeft {
  to {
    opacity: 0.8;
    transform: translateX(0);
  }
}

/* Іконка кнопки */
.button-icon-img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

/* Іконка скролу мишкою */
.mouse-scroll-icon {
  position: absolute;
  top: 80vh;
  left: 50%;
}

/* Анімація стрілок */
.arrow-animation {
  animation: bounceArrows 1.5s infinite;
  transform-origin: center;
}

@keyframes bounceArrows {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* About Us */
.about-slider__image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    animation: scaleImage 5s ease-out forwards;
}

@media (max-width: 768px) {
	.hero-slider__image img {
		-webkit-mask-image: linear-gradient(
		  to bottom,
		  rgba(0,0,0,0) 0%,      /* прозорий верх */
		  rgba(0,0,0,1) 20%,     /* плавний перехід до видимого */
		  rgba(0,0,0,1) 80%,     /* повністю видно донизу */
		  rgba(0,0,0,0) 100%     /* прозорий низ */
		);
		mask-image: linear-gradient(
		  to bottom,
		  rgba(0,0,0,0) 0%,
		  rgba(0,0,0,1) 20%,
		  rgba(0,0,0,1) 80%,
		  rgba(0,0,0,0) 100%
		);
		margin-top: 60px;
	}
}