html {
    font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

p {
  font-size: 1.6rem;
}

.side-padding {
  padding-left: 5%;
  padding-right: 5%;
}

nav {
  position: fixed;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(92, 35, 179, 0.3);  /* #5c23b3 with transparency */
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%); /* Safari support */
}

.logo {
  position: absolute;
  left: 5%;
  color: #fff;
}

nav ul {
  display: flex;
}

ul li {
  list-style: none;

}

li a {
  text-decoration: none;
  color: white;
  padding: 14px 42px;
  border: solid 1px white;
  border-radius: 50px;
  font-size: 1.4rem;
  transition: all 0.3s ease-in-out;
}

li a:hover {
  color: #000;
  background-color: white;
}

/* ====== HAMBURGER ====== */
    .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 8px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 5%;
        background-color: #341563;
        padding: 10px;
    }

    .menu-toggle span {
      height: 5px;
      width: 35px;
      background: #ffffff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

/* ====== MOBILE MENU ====== */
    @media (max-width: 720px) {
      nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: #111;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease-in-out;
      }

      nav ul li {
    list-style: none;
  }

  nav ul li a {
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  nav ul.active {
    right: 0;
  }

      .menu-toggle {
        display: flex;
      }
    }

    /* ====== ANIMATION FOR TOGGLE ====== */
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
      background: #7129dd;
    }
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
      transform: translateX(-10px);
      background: #7129dd;
    }
    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(10px, -10px);
      background: #7129dd;
    }

    .menu-toggle.active {
      background-color: none;
    }

/*####################################################
Hero
########################################################*/

.hero {
  min-height: 100vh;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom left, #5c23b3, #220e40 40%, #1c0c32);
}

.hero-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  justify-content: space-between;
  overflow: hidden;
  gap: 5em;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sub {
  font-size: 3.2rem;
  color: white;
  padding-bottom: 20px;
}

h1 {
  color: #fff;
  font-size: clamp(3.2rem, 12vw, 8.2rem);
  font-weight: 300;
  margin: 0;
}

h5 {
  font-size: 42px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.purple-text {
  color: #5c23b3;
}

.hero-socials {
  max-width: 240px;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.social-container {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3f1979;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 2em;
}

.tags p {
  color: #c5c5c5;
  padding: 14px 24px;
  background-color: #4f4f4f;
  border-radius: 25px;
  font-size: 1.2rem;
}

.hero-card img {
  max-width: 500px;
}

/* ########################################
########################################
               EPISODES
########################################
######################################## */

.episodes {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  background: linear-gradient(to top right, #5c23b3, #220e40 40%, #1c0c32);
  padding-top: 5em;
  padding-bottom: 10em;
}

.episodes-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8em;
  width: 100%;
  max-width: 1440px;
  
}

.episodes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
}

.episodes-header a {
  display: flex;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  border-radius: 50px;
  background-color: #5821ab;
}

h2 {
  font-size: clamp(2.4rem,12vw,6.4rem);
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.cta {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  padding: 18px 24px;
}

.button-img {
  background-color: black;
  border-radius: 50px;
  padding: 10px;
}

.episode-cards {
  display: flex;
  justify-content: center;
  gap: 2em;
}

.ep-card {
  display: flex;
  max-width: 450px;
  align-items: center;
  border: 1px solid #b3b3b3;
  border-radius: 30px;
  gap: 1em;
  padding-right: 20px;
}

.ep-image img {
  width: 200px;
}

.meta {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.meta h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.play-bttn a {
  display: flex;
  text-decoration: none;
  color: white;
  align-items: center;
  gap: 1em;
}

.about-pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  gap: 1em;
}

/* ########################################
########################################
               HOST
########################################
######################################## */

.host {
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-top: 3em;
  padding-bottom: 8em;
}

.host-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}

.host-content {
  display: flex;
  align-items: center;
  gap: 3em;
}

.host-img img {
  max-width: 350px;
  height: auto;
  border-radius: 50px;
}

.host-text {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  gap: 2em;
  padding: 50px;
  border: 1px solid #707070;
  border-radius: 50px;
}

.plain-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #5320A1;
}

.host h2 {
  color: #000;
}

h4 {
  font-size: 32px;
  color: #000;
  font-weight: 500;
}

.host-social {
  max-width: 704px;
  width: 100%;
  height: 86px;
  border-top: 1px solid #707070;
  display: flex;
  flex-direction: column;
}

.host-socials {
  height: 35px;
  display: flex;
  gap: 2em;
  
  align-items: center;
  margin-top: 30px;
}

.x-container {
  width: 35px;
  height: 35px;
}

.x-container svg {
  fill: #757575;
}

/* ########################################
########################################
              LISTENERS
########################################
######################################## */

.testimonials {
  max-width: 100vw;
  display: flex;
  justify-content: center;
  background-color: #5320A1;
}

.testimonial-content {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
  padding-top: 3em;
  padding-bottom: 8em;

}

.testimonial-container {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  text-align: center;
  display: none;
  animation: fadeIn 0.6s ease;
}

.testimonial.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote {
  font-style: italic;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: white;
}

.stars {
  font-size: 1.5rem;
  color: gold;
  margin-bottom: 0.5rem;
}

.author {
  font-size: 1.2rem;
  color: #aeaeae;
}

.controls {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.controls button {
  background: white;
  border: none;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  font-size: 2.4rem;
  color: #5a2ca0;
  cursor: pointer;
  transition: background 0.3s;
}

.controls button:hover {
  background: #ddd;
}

.dots {
  display: flex;
  gap: 0.5rem;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  cursor: pointer;
}

.dots .active {
  opacity: 1;
  background: gold;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ########################################
########################################
              SUBSCRIBE
########################################
######################################## */

.news-letter {
  display: flex;
  justify-content: center;
  max-width: 100vw;
}

.news-content {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: center;
  padding-top: 8em;
  padding-bottom: 8em;
}

.news-banner {
  display: flex;
  align-items: center;
  padding: 20px;
  width: 90%;
  justify-content: space-around;
  background: linear-gradient(to left, #5c23b3, #ffffff 40%, #ffffff);
  border: 1px solid #707070;
  border-radius: 25px;

}

.news-banner p {
  font-size: 2.4rem;
  font-weight: 500;
}

.email-input {
  display: flex;
  border-radius: 25px;
  border: solid 1px #707070;
  background-color: white;
  gap: 3em;
}

.email-input button {
  display: flex;
  align-items: center;
  border: none;
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  border-radius: 25px;
  font-size: 1.4rem;
}

button img {
  border-radius: 50%;
}

.email-input input {
  border: none;
  padding: 10px;
  background-color: none;
  border-radius: 25px;
}

/* ########################################
########################################
              FOOTER
########################################
######################################## */

.footer {
  background-color: #1c0c32;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3em;
  padding-bottom: 3em;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
}

.footer-content p {
  font-size: 2.4rem;
  font-weight: 500;
  color: white;
}

.footer-socials {
  display: flex;
  gap: 2em;
  align-items: center;
}

/*Mobile*/

@media (max-width: 1130px) {
  .mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5em;
  }

  .mobile-rev {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 5em;
  }

  .hero {
    padding-top: 10em;
    padding-bottom: 10em;
  }

}

@media (max-width: 720px) {
  .hero-card img {
    width: 440px;
  }

  .text-container {
    align-items: center;
  }

  .hero-container {
    text-align: center;
  }

  .mobile-off {
    display: none;
  }

  .nav-off {
    display: none;
  }
}

@media (max-width: 480px) {

  .hero-card img {
    width: 300px;
  }

  .episodes-header {
    flex-direction: column;
    text-align: center;
  }

  .ep-image img {
    width: 200px;
  }

  .ep-card {
    flex-direction: column;
    padding: 20px;
    gap: 2em;
  }

  .host-text {
    width: 250px;
  }

  .mobile-off-sml {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 1em;
  }
}