﻿/* =============================
   🎯 مودال عکس (image-modal)
   ============================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10010; /* بالاتر از بقیه عناصر */
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* عکس وسط صفحه */
.modal-image {
  display: block;
  width: 50vw;              /* حدود نصف عرض مانیتور */
  height: auto;
  max-height: 90vh;         /* حداکثر ۹۰٪ ارتفاع صفحه */
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease;
}

.modal-image:hover {
  transform: scale(1.02);
}

/* دکمه بستن برای مودال عکس */
#close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
  z-index: 10011; /* بالاتر از تصویر */
}

#close-modal:hover {
  color: #ff4444;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
  .modal-image {
    width: 85vw;
  }
}

