/* Section images – խոշորացույց աջ, lightbox (section--one, section--two բոլոր բլոկներ) */

.section__image,
.section.section--one .section__image,
.section.section--two .section__image,
.section--two .section__image {
  position: relative;
}

.section__image-zoom-btn,
.section.section--one .section__image .section__image-zoom-btn,
.section.section--two .section__image .section__image-zoom-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.section__image-zoom-btn:hover {
  background: rgba(149, 1, 1, 0.9);
  transform: scale(1.08);
}

.section__image-zoom-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.section-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.section-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.section-lightbox__content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  animation: sectionLightboxIn 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.section-lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes sectionLightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.section-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10001;
}

.section-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.section-lightbox__close:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
