/* Repertuar Sayfası Özel CSS */

/* Filtre Butonları */
.repertoire-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background-color: #f0f0f0;
  border: none;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: rgba(0, 109, 119, 0.1);
}

.filter-btn.active {
  background-color: #006d77;
  color: white;
}

/* Arama Çubuğu */
.search-bar {
  position: relative;
  min-width: 250px;
}

.search-bar input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  transition: border-color 0.3s;
}

.search-bar input:focus {
  border-color: #006d77;
}

.search-bar button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #006d77;
  cursor: pointer;
}

/* Repertuar Öğeleri */
.repertoire-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.repertoire-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.repertoire-header {
  background-color: #006d77;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.repertoire-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.repertoire-language {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
}

.repertoire-body {
  padding: 20px;
}

.repertoire-meta {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0;
  gap: 15px;
}

.meta-item {
  display: flex;
  align-items: center;
  color: #555;
}

.meta-item i {
  margin-right: 8px;
  color: #006d77;
}

.repertoire-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-audio, .btn-more {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

.btn-audio {
  background-color: #006d77;
  color: white;
}

.btn-audio:hover {
  background-color: #004f52;
  color: white;
}

.btn-more {
  background-color: #f0f0f0;
  color: #333;
}

.btn-more:hover {
  background-color: #e0e0e0;
  color: #333;
  text-decoration: none;
}

.btn-audio i, .btn-more i {
  margin-right: 8px;
}

/* Ses Oynatıcı Modal */
.audio-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.audio-modal.active {
  display: flex;
}

.audio-content {
  background-color: white;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.audio-header {
  padding: 15px 20px;
  background-color: #006d77;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.audio-header h4 {
  margin: 0;
}

.audio-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.audio-body {
  padding: 20px;
}

.audio-player {
  width: 100%;
}

.audio-player audio {
  width: 100%;
}

.audio-footer {
  padding: 10px 20px;
  background-color: #f0f0f0;
  text-align: center;
}

/* Filtre Efektleri */
.repertoire-item {
  transition: all 0.3s ease;
}

.repertoire-item.hidden {
  display: none;
}

.no-results {
  text-align: center;
  padding: 30px;
  background-color: #f0f0f0;
  border-radius: 10px;
  margin-top: 20px;
}

/* Responsive Düzenlemeler */
@media (max-width: 767px) {
  .repertoire-filter {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-buttons {
    justify-content: center;
  }
  
  .search-bar {
    width: 100%;
    min-width: auto;
  }
  
  .repertoire-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .repertoire-actions {
    flex-direction: column;
  }
  
  .btn-audio, .btn-more {
    width: 100%;
    justify-content: center;
  }
}
