/* sound_single.css */

/* خلفية الصفحة العامة */
body {
  background: #f9f9f7;
}

/* الحاوية العامة */
.sound_container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  text-align: center;
  font-family: "Scheherazade New", "Amiri", serif;
}

/* اسم التصنيف */
.sound_category {
  font-size: 16px;
  color: #0c3964;
  background: #f0f3f5;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* الصورة البارزة */
.sound_image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* اجعلها تتوسط الصفحة وتتكيف في الموبايل */
.sound_image {
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .sound_image img {
    width: 100%;
    height: auto;
    max-height: 400px;
  }
}


/* العنوان */
.sound_title {
  font-size: 26px;
  color: #2d1c0d;
  margin: 10px 0 10px;
  line-height: 1.4;
}

/* الوصف */
.sound_desc {
  color: #555;
  font-size: 17px;
  margin-bottom: 25px;
}

/* مشغل الصوت */
.sound_player audio {
  width: 100%;
  outline: none;
  margin-bottom: 25px;
  border-radius: 10px;
}

/* زر التحميل */
.sound_download .r_btn {
  background: #d4a857;
  color: #2d1c0d;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sound_download .r_btn:hover {
  background: #c39a40;
  transform: translateY(-2px);
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 600px) {
  .sound_container {
    margin: 20px 10px;
    padding: 15px;
  }
  .sound_title {
    font-size: 22px;
  }
  .sound_desc {
    font-size: 15px;
  }
}
/* أدوات المشاركة والنسخ */
.sound_tools {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.sound_tool_btn {
  background: #d4a857;
  color: #2d1c0d;
  padding: 8px 18px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.sound_tool_btn:hover {
  background: #c39a40;
  transform: translateY(-2px);
}
