/* projects.css */

/* Glowing kutu */
.glowing-box {
  background-color: #111827; /* koyu koyu gri/siyah */
  border-radius: 1rem;
  box-shadow:
    0 0 10px #0ea5e9,
    0 0 30px #0ea5e9,
    0 0 60px #0ea5e9;
  transition: box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: default;
}

.glowing-box:hover {
  box-shadow:
    0 0 15px #3b82f6,
    0 0 40px #3b82f6,
    0 0 80px #3b82f6;
}

/* Proje görseli */
.project-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

/* Başlık */
.project-title {
  color: #61dafb;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

/* Açıklama */
.project-desc {
  color: #cbd5e1;
  font-size: 1rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* Buton */
.btn-info {
  padding: 0.35rem 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  align-self: start;
}

/* Responsive küçültme */
@media (max-width: 576px) {
  .project-img {
    height: 120px;
  }
}
