
:root {
  --primary-background: url("images/Rect Light.svg");
  --header-background: #212325;
  --text-color: #FFFFFF;
  --link-color: #FF5733;
  --link-hover-color: #FF0000;
  --button-background: #C8102E;
  --button-text-color: #FFFFFF;
  --button-hover-background: #9C041E;
  --button-shadow-color: rgba(0, 0, 0, 0.2);
  --card-background: #222;
  --card-hover-background: #444;
  --underline-color: #F6E7D8;
}


/* CSS styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background: var(--primary-background) center/cover no-repeat; /* Apply the background to the body */
  background-size: cover; /* Set the background size to 'cover' */
}


header {
  background-color: var(--header-background);
  color: var(--text-color);
  padding: 20px 20px;
  text-align: center;
}

header nav {
  display: flex;
  justify-content: center;
}

header nav a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

/* Hero Section styles */
.hero {
  display: flex;
  align-items: center;
  padding: 50px;
  margin-top: 0px; /* Add margin to the top */
}

.podcast-logo {
  order: 1;
}

.hero-text {
  flex: 1;
  order: 2;
}

.hero h1 {
  font-size: 48px;
  color: #F6E7D8;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 18px;
  margin: 20px 0;
  font-weight: bold;
}

.desktop-description {
  display: none;
}

.listen-button {
  background-color: #C8102E;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.listen-button:hover {
  background-color: #9C041E; /* Darker red on hover */
}

/* Platforms Section styles */

.listen {
  padding: 5px;
  text-align: center;
}

.listen h2 {
  margin-bottom: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-decoration: underline var(--underline-color); /* Bright red underline */
}

.listen-icons {
  display: flex;
  justify-content: center;
}

.listen-icons a {
  margin: 0 20px;
}

.listen-icons img {
  height: 80px;
}

/* Episodes section */
.episodes {
  background-color: #333333; /* Slightly lighter dark gray */
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
}

.episodes h2 {
  font-size: 32px;
  font-weight: bold;
  color: #FFFFFF;
  text-decoration: underline var(--underline-color); /* Bright red underline */
}

/* Add or modify styles in your existing CSS */
.episode-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.episode-card {
  background-color: #1C1C1C; /* Dark gray for episode cards */
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, background-color 0.2s;
  text-align: center;
}

.episode-card:hover {
  transform: scale(1.05);
  background-color: #333333; /* Darker gray on hover */
}

.episode-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
  color: #FFFFFF;
}

.episode-card p {
  font-size: 16px;
  color: #FFFFFF;
}

.episode-card a {
  display: inline-block;
  margin-top: 10px;
  color: #C8102E; /* Bright red for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.episode-card a:hover {
  color: #FF0000; /* Brighter red on hover */
}

/* Social Media Section styles */

.social-media {
  padding: 10px;
  text-align: center;
  background-color: #1C1C1C; /* Same as the header background */
  color: #FFFFFF;
}

.social-media h2 {
  margin-bottom: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 28px;
  color : #FFFFFF;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: underline var(--underline-color); /* Bright red underline */
}

.social-media-icons {
  display: flex;
  justify-content: center;
}

.social-media-icons a {
  margin: 0 20px;
}

.social-media-icons img {
  height: 70px;
  width: 70px;
}

/* Adjust the padding and margin for smaller screens */
@media (max-width: 480px) {
  .hero {
    padding: 10px;
  }

  .listen {
    padding: 10px;
  }

  .episodes {
    padding: 10px;
  }

  .social-media {
    padding: 10px;
  }
}

/* Media Queries */
/* Extra small devices (phones, 600px and down) */
@media (max-width: 600px) {
  header, footer {
    padding: 15px; /* Adjust padding for smaller screens */
  }

  .hero {
    padding: 20px 5px 0; /* Reduce top padding to 10px */
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 40px; /* Decrease font size for smaller screens */
    margin-top: 15px; /* Add some top margin to separate it from the logo */
    padding: 0 10px; /* Increase padding to expand the width */
    margin-bottom: 15px;
  }

  .podcast-logo {
    max-width: 200px;
    margin-bottom: 5px;
    margin-top: 10px;
  }

  .hero p {
    margin-top: 0px; /* Add some top margin to separate it from the logo */
  }

  .hero-text {
    order: 1;
  }

  .listen-icons img {
    height: 40px;
    width: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .listen h2 {
    font-size: 22px;
    margin-top: 15px;
    font-weight: bold;
  }

  .episodes h2{
    font-size: 22px;
    font-weight: bold;
  }

  .social-media h2 {
    font-size: 22px;
    margin-top: 10px;
    font-weight: bold;
  }
  .social-media-icons img {
    height: 40px;
    width: 40px;
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  /* Small and medium devices (portrait tablets and large phones, 600px to 991px) */
  .hero {
    flex-direction: column;
    align-items: center;
  }

  .podcast-logo {
    max-width: 300px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .hero-text {
    order: 2;
  }
}

@media (min-width: 992px) {
  /* Large devices (laptops/desktops, 992px and up) */
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .podcast-logo {
    max-width: 300px;
    margin-bottom: 0;
    margin-right: 20px;
  }

  .hero-text {
    order: 2;
  }
}

@media (min-width: 1200px) {
  /* Large devices (laptops/desktops, 1200px and up) */
  .hero {
    flex-direction: row;
    align-items: center;
    padding: 5px 50px; /* Decrease the top margin by changing the padding-top value */
  }

  .hero h1 {
    font-size: 64px;
    margin-bottom: 0px;
    margin-right: 0px;
  }

  .podcast-logo {
    max-width: 300px;
    margin-bottom: 10px;
    margin-right: 50px;
    margin-top: 39px;
    margin-left: 13px;
  }

  .hero-text {
    order: 4;
    padding: 10px;
  }

  .listen-button {
    margin: 5px auto; /* Center the button horizontally using margin */
    text-align: center; /* Center the button text */
  }

  .desktop-description {
    display: block;
    text-align: justify;
    margin: 5px auto;
    font-size: 18px; /* You can adjust the font size as needed */
    padding: 10px;
    margin-top: auto;
  }

  /* Hide the small description for desktop screens */
  .small-description {
    display: none;
  }

  .listen-icons img {
    height: 70px;
    width: 70px;
    margin-top: 20px;
    margin-bottom: 22px;
  }
}

/* Footer styles */
footer {
  padding: 10px;
  text-align: center;
  background-color: #212325;
  color: #FFFFFF;
}

footer a {
  color: #C8102E;
  font-weight: bold;
}

.navigation {
  display: flex;
  justify-content: space-between;
}

.nav-left {
  margin-left: 10px;
}

.nav-right {
  margin-right: 10px;
}


/* CSS for styling the Listen to Your Favorite Platform section */
.listen h2 {
  font-size: 28px; /* Reduce font size for the section heading */
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: underline var(--underline-color);
  margin-bottom: 25px;
}

.platforms-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Add margin between icons */
}

.platform {
  text-align: center;
  background-color: var(--card-background);
  border-radius: 10px;
  padding: 10px; /* Reduce padding for each platform */
  transition: transform 0.2s, background-color 0.2s;
  min-width: 100px; /* Reduce the minimum width for each platform card */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  max-width: 100px; /* Reduce the max-width to make icons smaller */
}

.platform:hover {
  transform: scale(1.05);
  background-color: var(--card-hover-background);
}

.platform img {
  max-width: 30px; /* Reduce the size of icons */
  margin-bottom: 5px; /* Reduce margin below icons */
}

.platform a {
  display: block;
  font-size: 14px; /* Reduce the font size of platform names */
  color: #F6E7D8;
  text-decoration: none;
  font-weight: bold;
  margin-top: 5px; /* Reduce margin above platform names */
  transition: color 0.2s;
}

.platform a:hover {
  color: #EBE3D5;
}

@media (max-width: 600px) {
  .platform {
    width: calc(25% - 10px); /* To fit 4 cards in a row, considering the margin */
    margin: 15px; /* Add margin around each icon */
    }
   .listen h2 {
     font-size: 22px;
   }
}


@media (min-width: 1200px) {
  .platform {
    width: calc(25% - 10px); /* To fit 4 cards in a row, considering the margin */
    margin: 10px; /* Add margin around each icon */
  }
}
