/* ================= MODAL STİLLERİ BAŞLANGIÇ ================= */

/* Modal Arka Planı */
.modal {
  display: none; /* Başlangıçta gizli */
  position: fixed; /* Sayfa kaysa bile sabit kalır */
  z-index: 1000; /* Her şeyin üzerinde görünür */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Büyük resimler için scroll imkanı */
  background-color: rgba(0, 0, 0, 0.9); /* Yarı saydam siyah arka plan */
  padding-top: 60px;
}

/* Modal İçeriği (Resim) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1024px; /* Resmin maksimum genişliği */
  animation-name: zoom;
  animation-duration: 0.6s;
}

/* Yakınlaşma Animasyonu */
@keyframes zoom {
  from {transform: scale(0.1)}
  to {transform: scale(1)}
}

/* Kapatma Butonu (X) */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
}
/* ================== MODAL STİLLERİ BİTİŞ ================== */