/* General styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #FFF5E6; /* Light cream background alt-color #F6EACB*/
}


.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header styles */

.ds-header {
    background-color: #E63946; /* Vibrant red */
    padding: 20px 0;
}


.ds-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.ds-logo {
    color: #FFF5E6;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}


nav a {
    color: #FFF5E6;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}


nav a:hover {
    color: #FFD166; /* Light gold */
}

/* Banner styles */

.ds-banner {
    background-color: #457B9D; /* Muted blue */
    color: #FFF5e6;
    padding: 60px 0;
}

.ds-banner .row {
    display: flex;
    align-items: flex-start;
}

.ds-banner .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.ds-banner .col-md-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  padding-left: 30px; /* Add some space between the image and text */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
}

.podcast-cover {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

  
  .animate-fade-slide-in {
    animation: fadeSlideIn 1s ease-out forwards;
    opacity: 0;
  }
  
  /* Apply the animation to specific images */

  .podcast-cover,
  .host-image {
    animation: fadeSlideIn 1s ease-out forwards;
    opacity: 0;
  }
  
  /* Delay the animation for the host image to create a staggered effect */

  .host-image {
    animation-delay: 0.5s;
  }
  
  /* Optional: Add animation to other elements for a cohesive effect */

  .ds-banner h1,
  .ds-banner p,
  .ds-banner ul {
    animation: fadeSlideIn 1s ease-out forwards;
    opacity: 0;
  }
  
  .ds-banner h1 { animation-delay: 0.2s; }
  .ds-banner p { animation-delay: 0.4s; }
  .ds-banner ul { animation-delay: 0.6s; }
  
  /* Ensure the animations only play once when the page loads */

  .ds-banner, .about-content {
    overflow: hidden;
  }

.ds-banner h1 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 6px;
    color: #FFD166; /* Light gold */
}

.ds-banner p {
    font-size: 18px;
    margin-bottom: 7px;
}

.ds-banner ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    max-width: 400px;
}

.ds-banner ul li {
    background-color: #FFD166; /* Light gold */
    color: #457B9D; /* Muted blue */
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

/* Section styles */

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .host-photo {
    flex: 0 0 40%;
    max-width: 40%;
    order: 2; /* This moves the photo to the right */
  }
  
  .host-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .host-description {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

  .host-description p {
    margin: 8% auto;
  }


  section {
    padding: 0;
}


.ds-heading {
    font-size: 36px;
    text-align: center;
    color: #E63946; /* Vibrant red */
    padding-bottom: 0;
}



/* Button styles */

.ds-button {
    display: inline-block;
    background-color: #E63946; /* Vibrant red */
    color: #FFF5E6;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
}

.ds-button:hover {
    background-color: #FFD166; /* Light gold */
    color: #457B9D; /* Muted blue */
}

#copyMessage {
    display: block;
    margin-top: 10px;
    color: #4CAF50; /* Green color for success message */
    font-weight: bold;
}

/* Optional: If you want to center the button within a specific container */

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Episode list styles */

.ds-work-list {
    background-color: #A8DADC; /* Light blue */
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ds-work-list audio {
  width: 100%;
  margin-top: 20px;
}



/* Customized audio player appearance */

.ds-work-list audio::-webkit-media-controls-panel {
  background-color: #1D3557; /* Dark blue */
}

.ds-work-list audio::-webkit-media-controls-current-time-display,
.ds-work-list audio::-webkit-media-controls-time-remaining-display {
  color: #FFF5E6;
}

.ds-work-list audio::-webkit-media-controls-play-button {
  background-color: #E63946; /* Vibrant red */ 
  border-radius: 50%;
}

.ds-work-list audio::-webkit-media-controls-mute-button {
  background-color: #E63946; /* Vibrant red */ 
  border-radius: 50%;
  margin-left: 10px;
}

.ds-work-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1D3557; /* Dark blue */
}

/* Contact section styles */

.ds-contact-section {
    background-color: #1D3557; /* Dark blue */
    color: #FFF5E6;
    text-align: center;
    padding-bottom: 15px;
}

/* Footer styles */

footer {
    background-color: #457B9D; /* Muted blue */
    color: #FFF5E6;
    padding: 20px 0;
    text-align: center;
}

p {
  font-size: 18px;
}

.links-section {
  margin-top: 20px;
}

.links-section h3 {
  font-size: 20px;
  color: #FFD166; /* Light gold */
  margin-top: 0;
  margin-bottom: 17.8px;
  text-align: left;
}

.podcast-links, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.podcast-links .ds-button, .social-links .ds-button {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.social-button {
  background-color: #E63946; /* Vibrant red */
  color: #FFF5E6; /* Light cream */
}

.social-button:hover {
  background-color: #FFD166; /* Light gold */
  color: #1D3557; /* Dark blue */
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #FFF5E6;
  margin: 3px 0;
  transition: 0.4s;
}

.main-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.main-nav ul li {
  margin-left: 20px;
}

/* Responsive styles */

@media (max-width: 768px) {

  .ds-header {
    position: relative;
    z-index: 1000;
  }

  .hamburger-menu {
    display: flex;
    z-index: 1001;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #E63946;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav ul li {
    margin: 10px 0;
  }

  .podcast-links, .social-links {
    flex-direction: column;
    margin-right: 16px;
  }

  .podcast-links .ds-button, .social-links .ds-button {
    width: 100%;
  }

  .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .social-button {
    width: 100%;
  }

  .ds-banner {
    padding-top: 80px; /* Adjust this value based on your header height */
  }

  .ds-banner .row {
    flex-direction: column;
  }

  .ds-banner .col-md-5,
  .ds-banner .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ds-banner .col-md-7 {
    padding-left: 0;
    margin-top: 30px;
  }

  .ds-banner ul {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ds-banner ul li {
    margin-bottom: 10px;
  }


  .ds-work-list audio {
    width: 100%;
  }

  .about-content {
    flex-direction: column;
  }

  .host-photo {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px;
    order: 1; /* On mobile, photo goes below the text */
  }

  .host-description {
    order: 0; /* On mobile, description stays on top */
  }

  p {
    font-size: 16px;
  }

  .links-section {
    margin-top: 20px;
  }

  .podcast-links, .social-links {
    flex-direction: column;
  }

  .podcast-links .ds-button, 
  .social-links .ds-button {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .podcast-links .ds-button {
    font-size: 14px; /* Reduce font size further on very small screens */
    padding-right: 8px;
  }
}

  /* Image fade and slide in animation */
  
@keyframes fadeSlideIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }