/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary1: #eb5a24;
  --primary2: #F07142;
  --primary2: #1ad71d;
  --bg1: #f4f3e5;
  --bg2: #fffdd0;
  --bg-dark1: #180702;
  --bg-dark2: #240e06;
  --text1: #1a1a15;
  --tex2: #450303;
  --gray: #333;
  --white: #fefefe;
}

/* =============================================
   BODY BASE
   ============================================= */
body {
  background-color: var(--bg1);
  color: var(--text1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* =============================================
   NAVBAR
   ============================================= */
.nav {
  height: 50px;
}

.navbar {
  background-color: var(--bg-dark1);
  border-bottom: 2px solid var(--primary1);
}

.navbar container-fluid {
  margin: auto;
  padding: 10px;
}

.navbar .navbar-toggler {
  margin-left: auto;
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: var(--white) !important;
  font-weight: 700;
}

.navbar .navbar-brand:hover,
.navbar .nav-link:hover {
  color: var(--primary1) !important;
}

.nav-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.nav-social a {
  color: var(--primary1);
  font-size: 1.5rem;
  transition: 0.3s;
}

.nav-social a:hover {
  color: var(--white);
  transform: scale(1.1);
}

.btn-outline-success {
  min-width: 80px;
}

/* =============================================
   SEARCH BAR
   ============================================= */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.center-search-bar {
  margin: 0 auto;
}

.search-input {
  height: 42px;
  padding-left: 42px;
  padding-right: 15px;
  border-radius: 30px;
  border: 1px solid var(--primary1);
  font-size: 15px;
  transition: all 0.3s ease;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text1);
  pointer-events: none;
}

.search-wrapper:focus-within .search-icon {
  color: var(--primary1) !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  text-align: center;

  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary1);
}

.hero p {
  font-size: 1.2rem;
  color: var(--white);
}

.hero.home {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/pexels-vishnurnair-1105666.jpg") center/cover no-repeat;
}

.hero.podcast {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/pexels-thibault-trillet-44912-167628.jpg") center/cover
      no-repeat;
}

.hero.news {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/pexels-tomfisk-1692695.jpg") center/cover no-repeat;
}

.hero.contact {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/pexels-paggiarofrancesco-2111016.jpg") center/cover no-repeat;
}

/* =============================================
   CARDS
   ============================================= */

.card {
  color: var(--white);
  font-size: 0.9em;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.card-spaced {
  margin: 1rem;
}

.card:hover {
  transform: translateY(-3px);
  border-left: 4px solid var(--primary1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.card .card-title {
  color: var(--text1);
  margin: 0.5rem 0;
  font-weight: 600;
  text-decoration: none;
}

.card .card-title-mh {
  color: var(--text1);
  margin: 0.5rem 0;
  font-weight: 600;
  text-decoration: none;
  min-height: 5rem;
}

.card .card-body {
  padding: 1rem;
  background-color: var(--white);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  /* background: linear-gradient(135deg, #fff9f0 0%, #ffffff 60%, #fff3e8 100%); */
}

.category-tag {
  background-color: var(--primary1);
  color: var(--white);
}

.card .card-body .btn-orange {
  margin-top: auto;
  align-self: flex-start;
}

.overlay-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.overlay-link:hover {
  color: var(--bg2);
  text-decoration: none;
}

/* Style the link search.php */
.search-link {
  color: var(--primary1);
  text-decoration: underline;
  transition: color 0.3s;
}

.search-link:hover {
  color: var(--text1);
  text-decoration: none;
}

.listen-card-img {
  max-height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.listen-card-img img {
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  /* object-fit: cover;
  object-position: center 20%; */
}

/* Shrink the picture */
.card-img-mh {
  height: 220px;
  width: 100%;
  object-fit: contain;
  background-color: #fbfbfb;
}

/* =============================================
   NEWS CONTENT
   ============================================= */
.news-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text1);
  word-wrap: break-word;
}

.news-content p {
  margin-bottom: 1.5rem;
  color: var(--text1);
}

.news-content h2,
.news-content h3,
.news-content h4 {
  /* margin-top: 2rem;
  margin-bottom: 1rem; */
  font-weight: 600;
}

.news-content a {
  color: #ff9f1a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.news-content a:hover {
  color: #ffc66b;
}

.news-content img {
  /* max-width: 100%; */
  height: auto;
  max-height: 350px;
  margin: 1.5rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =============================================
   SECTION TITLE & MISC
   ============================================= */
.section-title {
  color: var(--primary1);
  text-align: center;
  margin: 0 0 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* h3 a {
  color: var(--primary1);
}

h4 {
  color: var(--primary1);
  font-weight: 600;
} */

iframe,
.spotify-embed {
  max-width: 100%;
  background-color: transparent;
  box-shadow: 0 4px 8px rgba(211, 211, 223, 0.2);
}

audio {
  width: 100%;
  padding-top: 10px;
}

.featured-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

.category-link {
  color: var(--white);
  text-decoration: none;
}

.white-text {
  color: var(--white);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
/* #testimonialCarousel img {
  width: 80px;
  max-height: 90px;
  border-radius: 50%;
  margin-right: 0.5rem;
  overflow: hidden;
}

.bi-quote {
  color: var(--white);
} */

/* =============================================
   CONTACT
   ============================================= */
.contact-form,
.subscription-container {
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 20px var(--primary1);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--bg-dark1);
  color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary1);
  box-shadow: none;
}

.btn-orange {
  background-color: var(--primary1);
  color: var(--white);
  border: none;
  margin-bottom: 10px;
  border-radius: 20px;
  box-shadow: 2px 2px var(--bg-dark2);
}

.btn-orange:hover {
  background-color: var(--primary1);
  color: var(--white);
  transform: scale(1.05);
  box-shadow:
    0 0 15px rgba(255, 140, 0, 0.6),
    2px 2px var(--bg-dark2);
  transition: all 1s ease;
}

#contact .container {
  margin-top: 120px;
}

.contact-section {
  background-color: var(--bg2);
  padding: 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
}

.contact-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-section p {
  margin-bottom: 0.5rem;
  color: var(--text1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  margin-top: 2rem;
}

.social-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* =============================================
   Home Latest Podcast
   ============================================= */

.podcast-img {
  width: 100%;
  max-width: 481px;
}

/* =============================================
   SHOWS & ARTISTS
   ============================================= */
.shows-section {
  padding: 20px;
  justify-content: center;
  margin: auto 0;
}

.show-card {
  max-width: 360px;
  width: 100%;
}

/* 
.show-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 15px;
  transition: transform 0.3s ease;
  text-align: center;
  color: var(--text1);
}

.show-card:hover {
  transform: translateY(-5px);
}

.show-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
} */

.artist-card {
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--primary1);
  padding: 15px;
  transition: transform 0.3s ease;
  text-align: center;
}

.artist-card:hover {
  transform: translateY(-5px);
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule {
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--primary1);
  padding: 15px;
  transition: transform 0.3s ease;
  text-align: center;
  min-height: 300px;
}

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #77640e, #883802);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-left {
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
}

.about-left h2,
.about-left h3 {
  color: var(--primary1);
}

.about-left h3 {
  margin-top: 25px;
}

.team-right {
  text-align: center;
  margin: 0 auto;
  padding-top: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
}

.team-right h2 {
  color: var(--primary1);
}

.team-member {
  text-align: center;
  padding: 15px;
  background: var(--primary1);
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

.team-member img {
  border-radius: 50%;
  max-width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #007bff;
}

.join-section {
  padding: 40px 25px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 0 20px var(--primary1);
}

.btn-join {
  background-color: var(--white);
  font-weight: 600;
  padding: 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.btn-join:hover {
  background: var(--primary1);
  color: var(--white);
}

/* =============================================
   CIRCLE NUMBER
   ============================================= */
.circle-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark1);
  color: var(--text1);
  background-color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 15px;
}

/* =============================================
   SPONSOR SLIDER
   ============================================= */
.sponsor-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  
}
.sponsor-slider-wrapper:hover .sponsor-slider {
  animation-play-state: paused;
}

.sponsor-slider {
  display: flex;
  gap: 20px;
  align-items: center;
}

.sponsor-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 20px; */
}

.sponsor-slider img.sponsor-logo {
  height: 100px;              /* consistent visual size */
  max-width: 180px;         /* prevents huge wide logos */
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  flex-shrink: 0;           /* prevents flex distortion */
  transition: transform 0.3s ease;
}

.sponsor-slider img.sponsor-logo:hover {
  transform: scale(1.08);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   RADIO PLAYER
   ============================================= */
.radio-player-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 90px;
  width: auto;
  z-index: 1050;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.radio-player-wrapper.active .tunein {
  width: 300px;
} 


.tunein {
  width: 0;
  height: 115%;
  overflow: hidden;
  transition: width 0.3s ease;
  margin-right: 10px;
  border-radius: 10px;
  border: 2px solid var(--primary1);
}

.tunein iframe {
  width: 100%;
  border: none;
}

.toggle-btn {
  background-color: var(--primary1);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1060;
}

.toggle-btn:hover {
  background-color: #ff6600;
  color: white;
}

.listen-btn {
  background-color: var(--white);
  color: var(--primary1);
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.listen-btn:hover {
  background-color: var(--primary1);
  color: var(--white);
}

/* =============================================
   SCROLL TO TOP BUTTON
   ============================================= */
.scrollTopBtn {
  position: fixed;
  bottom: 30px;
  left: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  border: 1px solid grey;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s;
}

.scrollTopBtn:hover {
  background-color: #ff6600;
}

#scrollTopBtn i {
  color: grey;
  transition: 0.3s;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* =============================================
   FOOTER
   ============================================= */
footer {
  background-color: var(--bg-dark1);
  color: var(--white);
  text-align: center;
  border-top: 1px solid var(--primary1);
  padding: 20px 0;
}

footer p {
  color: white;
}

footer h5 {
  color: var(--primary1);
}

.nav-social a:hover i {
  color: var(--primary1);
}

.nav-footer a:hover {
  color: var(--primary1) !important;
}

/* =============================================
   SINGLE POST
   ============================================= */
.single-h1 {
  color: var(--text1);
}

.single-hero-img {
  max-height: 400px;
}

.single-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.singlecard-about-post {
  color: var(--text1);
  background-color: var(--bg2);
}

.recent-post {
  background-color: var(--white);
  border-radius: 25px;
  background-size: 20px 20px;
  background-image: radial-gradient(
    rgba(255, 140, 0, 0.15) 1px,
    transparent 1px
  );
}

.recent-post ul li a::before {
  content: "›";
  margin-right: 0.8rem;
  color: var(--primary1);
  font-size: 1.2rem;
  line-height: 1;
}

.relatednews-tag {
  background-color: var(--primary1);
  color: var(--white);
}

.relatednews-tag:hover {
  background-color: var(--bg-dark2);
  color: var(--bg2);
}

/* Related News cards */
/* .card-img-top {
  height: 180px;
  object-fit: cover;
} */

.card-img-top {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: contain;
}

.card .card-body {
  display: flex;
  flex-direction: column;
}

.card .card-body .btn {
  margin-top: auto;
}

.about-this-post::before {
  content: "";
  background-image: url("../images/bg/musicnote.png");
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  z-index: -1; /* Ensures image stays behind content */
}

.about-this-post {
  position: relative;
  color: var(--text1);
  border-top: var(--primary1);
  background-color: rgba(255, 255, 255, 0.8);
}

.recent-post ul li a {
  text-decoration: none;
  color: var(--text1);
  background-color: var(--white);
  position: relative;
}
.recent-post ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary1);
  transition: width 0.3s ease;
}
.recent-post ul li a:hover::after {
  width: 100%;
}
.recent-post ul li a:hover {
  color: var(--primary1);
}

/* Page.php (For terms&conditions and Privacy Policy) */
.page-content h1 {
  text-align: center;
  margin-bottom: 30px;
}
.page-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  line-height: 1.7;
  font-size: 16px;
}

.page-text p {
  margin-bottom: 16px;
}

.page-text h2,
.page-text h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-text ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-text li {
  margin-bottom: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 992px) {
  .carousel {
    gap: 18px;
  }

  .card .card-title {
    min-height: 5.5rem;
    padding-top: 0.5rem;
  }

  .news-content {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Mobile menu */
@media (max-width: 991px) {
  .navbar-collapse .navbar-nav {
    text-align: center;
    width: 100%;
  }

  .navbar-collapse form {
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
  }

  .hero h1 {
    font-size: 2rem;
    font-weight: 500;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .radio-player-wrapper {
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 9999;
  }

  .radio-player-wrapper.active .tunein {
    width: 250px;
  }

  .tunein {
    border-width: 1.5px;
  }

  .toggle-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Small mobile */
@media (max-width: 576px) {
  .carousel {
    gap: 15px;
    overflow-x: visible;
  }

  .carousel-inner {
    padding-top: 0.5em;
  }

  .carousel-item,
  .carousel-item1 {
    flex: 0 0 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 1.5rem;
    height: 1.5rem;
  }

  .img-wrapper {
    max-height: 20vw;
    height: auto;
    margin-bottom: 10px;
  }

  .card {
    margin: 0.75rem;
    font-size: 0.9em;
  }

  .card .card-title {
    font-size: 1em;
    text-align: center;
    min-height: unset;
  }

  .card-img-top {
    /* width: 100%; */
    /* height: 200px;
    margin-bottom: 50px; */
    object-fit: cover;
  }

  .social-img {
    width: 120px;
    height: 120px;
  }

  .show-card img {
    height: 180px;
  }

  .spotify-embed {
    max-width: 100%;
    height: 200px;
  }
}


