/* === Kartlar Genel === */
.card {
  font-size: 0.95rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* === Kart Resimleri === */
.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;      /* taşmayı önler, orantılı kırpar */
  display: block;
}

/* Mobilde daha küçük resim yüksekliği */
@media (max-width: 576px) {
  .card-img-top {
    height: 150px;
  }
}

/* === Kurs Başlık Alanı === */
.course-header {
  text-align: center;
  margin: 2rem 0;
}

.course-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #5d3f6a;
  margin-bottom: 0.5rem;
}

.course-header p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.course-header .title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3f6c9a, #e85711);
  border-radius: 2px;
  margin: 0 auto;
}

/* === Carousel Kontrolleri === */
.carousel-control-prev,
.carousel-control-next {
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-size: 60% 60%;
}

/* Taşmayı önlemek için butonları içe al */
.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

/* Carousel içeriğini sabitle */
.carousel-inner {
  overflow: hidden;
}

/* Fazladan boşluğu kaldır */
.carousel-item {
  margin-bottom: 0;
}

/* === Genel Sayfa Ayarları === */
html, body {
  overflow-x: hidden; /* yatay scroll'u kapatır */
}
