

/* Modal Başlık */
.custom-header {
    background: white; /* Arka plan beyaz */
    color: black !important; /* Yazı rengi siyah */
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #a040a0; /* Alt çizgi (Tatlı Mor) */
}

/* Modal Başlık Yazısı */
.custom-header .modal-title {
    color: black !important;
    font-size: 20px;
    font-weight: bold;
}

/* MODAL ÖZEL STİLLERİ */
.custom-header {
    background: #a040a0; /* Tatlı mor */
    color: white;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
}

/* Modal Başlık Yazısı */
.faculty-name {
    color: #fff !important;
    font-weight: bold;
}

/* Kapat Butonu */
.modal-header .btn-close {
    filter: invert(1); /* Beyaz buton */
}

/* Video Listesi */
.list-group-item {
    border: none;
    padding: 12px;
    border-radius: 8px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease-in-out;
}

/* Video Listesi Hover */
.list-group-item:hover {
    background: #eaeaea;
}

/* İzle Butonu */
.watch-video {
    color: #a040a0;
    font-weight: bold;
    transition: 0.3s;
}

.watch-video:hover {
    background: #a040a0;
    color: white;
}

/* Modal Fade Animasyonu */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translateY(-50px);
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

.faculty-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  padding: 15px;
  background-color: white;
}

/* Hover efekti: Tatlı Mor */
.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(123, 56, 118, 0.3);
  background-color: #f5e1fc;
}

/* Fotoğraf hover efekti */
.faculty-hover img {
  transition: transform 0.3s ease-in-out;
}

.faculty-hover:hover img {
  transform: scale(1.1);
  box-shadow: 0px 5px 15px rgba(99, 51, 118, 0.5);
}

/* Yazılar hover olunca kaybolmasın */
.faculty-card:hover .faculty-text {
  color: black !important;
}

/* Modal Şık Hale Getirme */
.modal-content {
  border-radius: 12px;
  padding: 20px;
}

.modal-header {
  background: linear-gradient(135deg,  #a040a0);
  color: white;
  border-radius: 10px 10px 0 0;
  text-align: center;
}

.modal-body {
  background-color: #f9f9f9;
}

/* Buton düzenlemeleri */
.btn-outline-primary {
  border-color: #a040a0;
  color: #a040a0;
}

.btn-outline-primary:hover {
  background: #a040a0;
  color: white;
}
.modal-backdrop {
    display: none !important;
}
