:root {
  --bg-body: #050505; /* Deep Black */

  --bg-color: #050505;
  --card-bg: #121212;
  --accent: #efbf04;
  --text-gray: #b3b3b3;
  --glass: rgba(5, 5, 5, 0.85);
}
body {
  background-color: #050505;
  color: white;
  font-family: "Poppins", sans-serif;
  padding-top: 100px;
  overflow-x: hidden;
}
/* Social Icons */
.social-icons a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#111;
  color:white;
  font-size:18px;
  text-decoration:none;
  transition:all 0.3s ease;
}

/* Hover Effect */
.social-icons a:hover{
  background:#f1c40f;
  color:black;
  transform:translateY(-3px);
}

/* Footer Links */
footer ul li a{
  color:#bbb;
  text-decoration:none;
  transition:0.3s;
}

footer ul li a:hover{
  color:#f1c40f;
  padding-left:4px;
}

/* Mobile Responsive */
@media (max-width:768px){

  footer{
    text-align:center;
  }

  footer ul{
    align-items:center;
  }

  .social-icons{
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
  }

  footer .form-control{
    text-align:center;
  }

  footer .row > div{
    margin-bottom:25px;
  }

}
.navbar-glass {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo-container img {
  height: 65px;
  width: 65px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
/* Header Section */
.page-header {
  padding: 140px 0 60px;
  background: radial-gradient(circle at 50% 0%, #2a100a 0%, var(--bg-body) 70%);
  text-align: center;
}
.display-4 {
  font-weight: 700;
  letter-spacing: -1px;
}
.text-accent {
  color: var(--accent);
}

.nav-link {
  color: #b3b3b3 !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 15px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: white !important;
}

.text-puadh {
  color: var(--accent) !important;
  font-weight: 700;
}
.btn-custom {
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-youtube {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.btn-youtube:hover {
  background-color: #ff0000;
  border-color: #ff0000;
  color: white;
}
.btn-spotify {
  background-color: var(--accent);
  color: black;
  border: none;
}
.btn-spotify:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
section {
  padding: 20px 0;
}
.section-title {
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.section-title span {
  color: var(--accent);
}
.hero-section {
  background-image:
    linear-gradient(rgb(01, 01, 01), rgba(7, 7, 7, 0.524)),
    url("/img/bg-podcast.webp");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.latest-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.badge-live {
  background-color: #ff0000;
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
}
.clip-card {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.clip-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.clip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: 0.3s;
}
.clip-card:hover img {
  opacity: 1;
}
.clip-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, black, transparent);
  padding: 20px;
}
.episode-thumb {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.episode-thumb img {
  width: 100%;
  transition: transform 0.3s;
}
.episode-item:hover img {
  transform: scale(1.05);
}
footer {
  background-color: black;
  border-top: 1px solid #1a1a1a;
  padding: 20px 0 10px;
  color: #888;
}
footer h5 {
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}
footer a {
  color: #888;
  text-decoration: none;
  transition: 0.2s;
}
footer a:hover {
  color: var(--accent);
}

.about-section {
  background-color: #0a0a0a;
}
.host-card-solo {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.host-card-solo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  margin-bottom: 20px;
}
.topic-box {
  background-color: #111;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #222;
  transition: 0.3s;
  height: 100%;
}
.topic-box:hover {
  background-color: #1a1a1a;
  border-color: var(--accent);
}
.topic-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.cta-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
    url("./img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 0;
}

.platforms-section {
  background-color: #000;
  padding: 60px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.platform-btn h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.platform-btn i {
  font-size: 1.8rem;
  transition: transform 0.3s;
}

.platform-spotify:hover {
  border-color: #1db954;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.2);
  transform: translateY(-5px);
}
.platform-spotify i {
  color: #1db954;
}

.platform-apple:hover {
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.platform-apple i {
  color: #ffffff;
}

.platform-youtube:hover {
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
  transform: translateY(-5px);
}
.platform-youtube i {
  color: #ff0000;
}

.about-short-section {
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.border-gold-left {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}

.about-img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}

.about-img-container:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* --- LATEST EPISODES --- */
.episodes-section {
  background-color: #050505;
  padding: 80px 0;
}

.video-card {
  background-color: #121212;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  height: 100%; /* Makes all cards same height */
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.video-card-body {
  padding: 20px;
}

.episode-tag {
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.video-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.4;
  /* Limit to 2 lines for neatness */
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-listen-sm {
  font-size: 0.85rem;
  color: #b3b3b3;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn-listen-sm:hover {
  color: #1db954; /* Spotify Green */
}

/* --- PAGE HEADER --- */
.page-header {
  background:
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.6) 100%),
    url("./img/bg-podcast.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0 60px; /* Top padding clears the fixed navbar */
  text-align: center;
}

/* --- SEARCH & FILTER --- */
.search-container {
  background: #111;
  border: 1px solid #222;
  border-radius: 50px;
  padding: 5px;
  max-width: 600px;
  margin: 0 auto 40px; /* Center it */
}

.search-input {
  background: transparent;
  border: none;
  color: white;
  box-shadow: none !important;
}

.search-input::placeholder {
  color: #666;
  background: transparent;
}

.search-btn {
  background-color: var(--accent);
  color: black;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
}

.category-scroller {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.category-scroller::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  background: #1a1a1a;
  color: #aaa;
  border: 1px solid #333;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.9rem;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--accent);
  color: black;
  border-color: var(--accent);
}

/* --- PAGINATION --- */
.pagination .page-link {
  background-color: #111;
  border-color: #222;
  color: white;
}

.pagination .page-item.active .page-link {
  background-color: var(--accent);
  border-color: var(--accent);
  color: black;
  font-weight: bold;
}

/* --- FLOATING PILL PLAYER --- */
.music-pill {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%; /* Mobile width */
  max-width: 400px; /* Desktop max width */
  background: rgba(20, 20, 20, 0.85); /* Dark Glass */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px; /* The Pill Shape */
  padding: 8px 15px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hide off-screen */
.music-pill.hidden {
  transform: translate(-50%, 150%);
}

/* Album Art (Spinning optional) */
.pill-thumb {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

/* Text Info */
.pill-info {
  flex-grow: 1;
  margin-left: 12px;
  margin-right: 12px;
  overflow: hidden;
}

.pill-title {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pill-artist {
  color: #aaa;
  font-size: 0.7rem;
  display: block;
}

/* --- BEAUTIFUL WAVE ANIMATION --- */
.wave-container {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
  margin-right: 15px;
}

.wave-bar {
  width: 3px;
  background-color: var(--accent); /* Gold */
  border-radius: 2px;
  height: 3px; /* Default height (paused) */
  animation: wave 1s ease-in-out infinite;
  animation-play-state: paused; /* Paused by default */
}

/* Stagger the animation for "Wave" effect */
.wave-bar:nth-child(1) {
  animation-delay: 0s;
}
.wave-bar:nth-child(2) {
  animation-delay: 0.2s;
}
.wave-bar:nth-child(3) {
  animation-delay: 0.4s;
}
.wave-bar:nth-child(4) {
  animation-delay: 0.1s;
}
.wave-bar:nth-child(5) {
  animation-delay: 0.3s;
}

/* Animation Keyframes */
@keyframes wave {
  0% {
    height: 3px;
  }
  50% {
    height: 18px;
  }
  100% {
    height: 3px;
  }
}

/* Play/Pause Button */
.btn-pill-play {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}

.btn-pill-play:active {
  transform: scale(0.9);
}

/* Class added via JS when playing */
.music-pill.playing .wave-bar {
  animation-play-state: running;
}

/* --- CONTACT PAGE STYLES --- */
.contact-box {
  background-color: #111;
  border: 1px solid #222;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  height: 100%;
}

.contact-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Dark Form Styling */
.form-control-dark {
  background-color: #111;
  border: 1px solid #333;
  color: white;
  padding: 15px;
  border-radius: 8px;
}

.form-control-dark:focus {
  background-color: #111;
  color: white;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.form-label {
  font-weight: 600;
  color: #ccc;
  margin-bottom: 10px;
}

/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
  height: 100%;
  min-height: 400px;
}
/* --- CLIPS PAGE STYLES --- */
.clips-grid {
  padding: 40px 0;
}

/* 1. YOUTUBE CARD (Embed) */
.youtube-card {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #222;
  height: 100%;
  background: black;
}

/* 2. INSTAGRAM CARD (Link to App) */
.insta-card {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.insta-card:hover {
  transform: translateY(-5px);
  border-color: #e1306c; /* Instagram Pink */
  box-shadow: 0 5px 20px rgba(225, 48, 108, 0.3);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  min-height: 450px; /* Force vertical height */
}

/* The Instagram Overlay */
.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.insta-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: white;
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  opacity: 0.8;
}

/* Ratio for YouTube Shorts */
.ratio-9x16 {
  --bs-aspect-ratio: 177.77%;
}
