/* podcast.css - Updated with orange borders and truly fixed navbar */

:root {
  --primary-color: #ff8a1d;
  --secondary-color: #21014a;
  --light-bg: #ffffff;
  --light-gray: #f9f9f9;
  --dark-text: #333;
  --light-text: #fff;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  padding-top: 60px; /* Add padding to prevent content from hiding under fixed navbar */
}

/* Navbar Styling - Fixed positioning */
.navbar {
  padding: 8px 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Ensure podcast title text stays visible */
.podcast-title-text {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Section Padding - Adjusted for fixed navbar */
.section-padding {
  padding: 80px 0 70px;
}

/* Section Header */
.section-header {
  margin-bottom: 40px;
}

.section-title {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.divider {
  height: 3px;
  width: 50px;
  background-color: var(--primary-color);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* Podcast Container - Added orange border all around */
.podcast-container {
  background-color: var(--light-gray);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--primary-color); /* Full orange border */
}

.podcast-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Podcast Elements */
.podcast-title {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.podcast-description {
  color: var(--dark-text);
  margin-bottom: 18px;
  line-height: 1.6;
}

.podcast-icon {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-right: 15px;
  background: rgba(255, 138, 29, 0.1);
  padding: 8px;
  border-radius: 50%;
}

/* Audio Player */
.audio-player {
  width: 100%;
  margin: 12px 0;
  border-radius: 30px;
  height: 36px;
}

.audio-player::-webkit-media-controls-panel {
  background-color: #f1f1f1;
  border-radius: 30px;
}

.audio-player::-webkit-media-controls-play-button {
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Podcast Metadata */
.podcast-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

.podcast-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.podcast-meta span {
  margin-right: 20px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

/* Load More Button */
.podcast-load-more {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 25px;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(255, 138, 29, 0.3);
}

.podcast-load-more:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(33, 1, 74, 0.3);
}
.hidden-podcast {
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0 60px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0 40px;
  }

  .podcast-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .podcast-meta span {
    margin-bottom: 8px;
  }

  .podcast-container {
    padding: 18px;
  }
}
