/* css/projeler.css — projeler.html */

.project-card{
  min-height: 50vh;
}

/* ===== UPDATE MODAL + BLUR ===== */
.blur-background{
  display:none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

.modal{
  display:none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;

  width: min(520px, 92vw);
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.modal-content{
  text-align: center;
  color: rgb(90, 85, 85);
  display: grid;
  gap: 10px;
}

.modal-title{
  margin: 0;
  font-family: "Aboreto", system-ui;
  font-weight: 400;
  color: #444;
}

.modal-close{
  margin: 8px auto 0;
  padding: 10px 16px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}
.modal-close:hover{
  background: rgba(0,0,0,.04);
}
