/* General Reset */
  {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #1A0B2E;
  /* Deep dark purple background */
}

/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #1A0B2E;
  color: white;
}

/* Logo Styling */
.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
}

/* Gradient Text for "Wave" */
.logo span {
  background: linear-gradient(135deg, #a020f0, #ff33cc, #ffc371);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Center Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #cccccc;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: white;
}

/* Subscribe Button */
.btn-subscribe {
  background: linear-gradient(90deg, #ffcc33, #ff33cc, #9933ff);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.btn-subscribe:hover {
  transform: scale(1.05);
}

/* HERO SECTION */

.hero-section {
  background-color: #1A0B2E;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-wave {
  position: absolute;
  width: 100%;
  max-width: 1400px;
  z-index: 1;
}

.circle-area {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gradient-circle {
  width: 320px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(153, 51, 255, 0.3));
}

.mic-box {
  position: absolute;
  justify-content: center;
  align-items: center;
}

.circle-area {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #00ff88;
  color: #000;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 0 10px #00ff88;
}

.badge {
  top: 10px;
  right: 50px;
}

:root {
  --spotify-grad: linear-gradient(90deg, #f9d423 0%, #ff4e50 50%, #bc13fe 100%);
  --green-accent: #00c853;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.main-heading {
  font-size: 48px;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.sub-heading {
  font-size: 20px;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background: var(--spotify-grad);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-btn-secondary {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #00fa9a;
  border: 1.5px solid #00fa9a;
  padding: 8px 25px;
  border-radius: 100px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  gap: 12px;
}

/* Background and General Setup */
.about-podcast {
  background-color: #120a2e;
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Typography */
.title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
}

.description,
.sub-description {
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.sub-description {
  margin-top: 40px;
}

/* Horizontal Line */
.divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 50px 0;
}

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 56px;
  color: #00ff88;
  margin: 0;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star {
  font-size: 40px;
  margin-left: 5px;
}

.stat-label {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Section Base */
.why-choose {
  background-color: #1a0b2e;
  padding: 80px 40px;
  color: white;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* Card General Style */
.card {
  background-color: #251442;
  padding: 30px;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 30px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  color: #b3a1d1;
  line-height: 1.6;
}

/* Specific Grid Positions */
.card-tall {
  grid-row: span 2;
  padding: 120px 20px;
  text-align: left;
}

.card-medium {
  grid-column: span 2;
}

.card-wide {
  grid-column: span 2;
  padding: 30px;

}

/* Section Container */
.featured-episodes {
  background-color: #1a0b2e;
  padding: 80px 20px;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.section-title {
  font-size: 40px;
  margin-bottom: 50px;
  font-weight: bold;
}

/* Grid Layout */
.episodes-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.episode-card {
  background-color: #251442;
  width: 350px;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.episode-card:hover {
  transform: translateY(-10px);
}

/* Image with Play Button Overlay */
.card-image {
  position: relative;
  height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff00ff, #ff8800);
  /* Pinkish-Orange Gradient */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

/* Text Content */
.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.card-content p {
  font-size: 14px;
  color: #b3a1d1;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Duration Style */
.duration {
  color: #00ff88;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Section Container */
.meet-host {
  background-color: #1a0b2e;
  padding: 100px 20px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: bold;
}

/* Card Styling */
.host-card {
  background-color: #251442;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

/* Profile Image */
.host-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

/* Info Section */
.host-info h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.host-info p {
  font-size: 16px;
  color: #b3a1d1;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Social Icons Styling */
.social-icons {
  display: flex;
  gap: 15px;
}

.icon {
  width: 35px;
  height: 35px;
  border: 1px solid #7a4bbd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.icon:hover {
  background: linear-gradient(45deg, #ff00ff, #7a4bbd);
  border-color: transparent;
}

/* Footer */
.footer-section {
  background-color: #1a0b2e;
  padding: 100px 20px;
  color: white;
  font-family: 'Arial', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 2;
}

footer {
  background: url(./assets/footer-bg.png);
}

.footer-logo {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.footer-logo span {
  background: linear-gradient(to right, #ff33cc, #ff9933);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.platform-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.platform-links a:hover {
  opacity: 0.7;
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
}


/* Medium Device (Tablet) */
@media (max-width: 992px) {

  /* Navbar */
  .navbar {
    padding: 15px 30px;
  }

  /* Grid reduce */
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Host section */
  .host-card {
    flex-direction: column;
    text-align: center;
  }

}

  /* Small Device (Mobile) */
  @media (max-width: 576px) {

    /* Navbar */
    .nav-links {
      display: none;
    }

    .menu-toggle {
      display: block;
    }

    /* Heading */
    .main-heading {
      font-size: 32px;
    }

    .sub-heading {
      font-size: 16px;
    }

    /* Buttons */
    .button-group {
      flex-direction: column;
    }

    /* Stats → 2x2 */
    .stats-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    /* Cards → single column */
    .grid-container {
      grid-template-columns: 1fr;
    }

    /* Episodes */
    .episode-card {
      width: 100%;
    }

    /* Footer */
    .platform-links {
      flex-direction: column;
    }
  }