/* ============================================= */
/* ГАЛЕРЕЯ — ОСНОВНИЙ КОНТЕЙНЕР ТА ЗОБРАЖЕННЯ     */
/* ============================================= */

.gallery__img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 12px; /* Закруглені кути галереї */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.gallery__img:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.gallery__picture {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Фото завжди гарно заповнює блок */
  transition: transform 0.6s ease;
}

.gallery__img:hover .gallery__picture {
  transform: scale(1.08); /* Легкий зум фото при ховері */
}

/* ============================================= */
/* HOVER-ЕФЕКТИ                                  */
/* ============================================= */

/* Темний оверлей при ховері */
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none; /* Не заважає клікам */
}

.gallery__img:hover .gallery__overlay {
  opacity: 1;
}

/* Інформація (заголовок + опис) */
.gallery__info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.gallery__img:hover .gallery__info {
  transform: translateY(0);
  opacity: 1;
}

.gallery__title {
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.gallery__desc {
  font-size: 15px;
  opacity: 0.95;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Іконка зуму */
.gallery__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.gallery__img:hover .gallery__icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
}

/* ============================================= */
/* ДОДАТКОВО: АДАПТИВНІСТЬ (опціонально)          */
/* ============================================= */

@media (max-width: 768px) {
  .gallery__title {
    font-size: 18px;
  }
  .gallery__desc {
    font-size: 14px;
  }
  .gallery__info {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
  .gallery__icon {
    width: 50px;
    height: 50px;
  }
  .gallery__icon svg {
    width: 24px;
    height: 24px;
  }
  .is-arrow {
    display: none;
  }
  .f-counter {
    font-size: 0.875rem;
  }
  .f-button {
    width: 36px;
  }
}
