@charset "UTF-8";
.circle-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  border: 2px solid black; /* black border */
  color: black; /* number text black */
  background-color: white; /* circle empty inside */
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 15px; /* center horizontally + spacing below */
}


.event-box img {
    width: 100%;
    height: 200px;           /* FIXED HEIGHT */
    object-fit: cover;       /* CROPS CLEANLY */
    border-radius: 6px;
}
/* Equal height card */
.event-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    background: #fff;
}

/* Hover effect */
.event-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.event-price {
    font-weight: bold;
    color: #198754;
}
.event-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-category li {
    list-style: none;
}


/* Featured badge */
.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.75rem;
    border-radius: 4px;
    z-index: 2;
}

/* Buy ticket button */
.buy-ticket-btn {
    margin-top: auto;
    padding: 8px 14px;
    /* background: #3543dc; */
    background: rgb(7.125, 163.875, 25.65);
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}

.buy-ticket-btn:hover {
    background: #bb2d3b;
}

/* View all button */
.view-all-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 18px;
    background: #0d6efd;
    color: #fff !important;
    border-radius: 5px;
    text-decoration: none;
}

/* sponsor slider 2 */
.sponsor-item {
    position: relative;
    display: inline-block;
}

.sponsor-logo {
    transition: 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    transform: scale(1.05);
    opacity: 0.8;
}

.sponsor-item::after {
    content: "Visit Website";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 4px;
    opacity: 0;
    transition: 0.3s ease;
}

.sponsor-item:hover::after {
    opacity: 1;
}


/* .sponsor-slider-wrapper {
    overflow: hidden;
} */

.sponsor-item {
    padding: 10px;
}

.sponsor-slider img.sponsor-logo {
    height: 200px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sponsor-slider img.sponsor-logo:hover {
    transform: scale(1.1);
}

.sponsor-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sponsor-slider {
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.radio-player-wrapper {
  position: fixed;
  bottom: 20px;
  right: 10px;
  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: 90px;
  overflow: hidden;
  transition: width 0.3s ease;
  margin-right: 10px;
  border-radius: 10px;
  border: 2px solid #cf6849;
}
.tunein iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.toggle-btn {
  color: #702800;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1060;
}

.toggle-btn:hover {
  background-color: #702800;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .radio-player-wrapper {
    bottom: 10px;
    right: 10px;
    height: 60px;
  }
  .radio-player-wrapper.active .tunein {
    width: 200px;
  }
  .tunein {
    height: 60px;
    border-width: 1.5px;
  }
  .tunein iframe {
    height: 100%;
  }
  .toggle-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
html, body {
  height: 100%;
}

body {
  background-color: rgba(239, 250, 160, 0.6431372549);
  color: #333333;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1; /* takes all available free space */
}

header.hero {
  margin-top: 10px;
  /* position: relative;
  z-index: 2;
  background: #fff; */
}
.custom-logo {
    max-height: 200px;  
    width: auto;
}

.navbar-brand {
    padding: 0;
}


.navbar {
  border-bottom: 2px solid #d35400;
  position: relative;
  padding-top: 620px;
  /* Center menu items when collapsed */
}
.navbar container-fluid {
  margin: auto;
  padding: 10px;
  padding-bottom: 10px;
}
.navbar .navbar-toggler {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  z-index: 2000;
  height: 40px;
  padding: 0;
  color: #d35400;
  background-color: #702800;
}
.navbar .navbar-nav {
  width: 100%;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.navbar .navbar-nav .nav-link {
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  flex-shrink: 0.5;
}
.navbar .navbar-brand,

.navbar .nav-link {
  color: #057312 !important;
  font-weight: 500;
}
.navbar .navbar-brand:hover,
.navbar .nav-link:hover {
  color: #d35400 !important;
}

.nav-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-social a {
  color: #d35400;
  font-size: 2.5rem;
  transition: 0.3s;
}
.nav-social a:hover {
  color: white;
  transform: scale(1.1);
}

.btn-success-outline-success {
  min-width: 60px;
}

/* SEARCH BAR WRAPPER */


/* WRAPPER */
/* .search-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  max-width: 800px; 
  margin: 0 auto;
} */

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.center-search-bar {
  margin: 0 auto;
}

/* INPUT */
/* .search-input {
  height: 30px;
  padding-left: 40px;
  border-radius: 6px;
  font-size: 15px;
} */

.search-input {
  height: 42px;
  padding-left: 42px;
  padding-right: 15px;
  border-radius: 30px;
  border: 1px solid #057312;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* SEARCH ICON */
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #888;
  /* pointer-events: none; */
   transition: color 0.3s ease;
}

.search-wrapper:focus-within .search-icon {
  color: #0cc45c !important;
}

/* Page Header Styles for Search Results */
.page-header {
    /* Basic layout: Full width within container, centered content */
    width: 100%;
    text-align: center; /* Centers the title */
    padding: 40px 20px; /* Adds space above/below and sides; adjust as needed */
    margin-bottom: 30px; /* Space below before search results */
    background-color: #f8f9fa; /* Light gray background; change to match theme (e.g., transparent for no bg) */
    border-bottom: 1px solid #e9ecef; /* Subtle border; optional */
    /* Ensure it doesn't overflow or shrink unexpectedly */
    box-sizing: border-box;
}

/* Page Title (H1) Styles */
.page-title {
    /* Typography: Make it prominent but readable */
    font-size: 2.5rem; /* Large size for emphasis; scales down on mobile */
    font-weight: 700; /* Bold */
    color: #333; /* Dark text; adjust for theme contrast */
    margin: 0; /* Remove default margins */
    line-height: 1.2; /* Tight line height for better spacing */
    /* Add a subtle text shadow or highlight for the search query span */
    /* If you want to style the <span> inside (search query), add: */
    /* .page-title span { color: #007cba; font-weight: 800; } */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 30px 15px; /* Reduce padding on smaller screens */
        margin-bottom: 20px;
    }
    .page-title {
        font-size: 2rem; /* Smaller on mobile */
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 20px 10px;
    }
    .page-title {
        font-size: 1.75rem; /* Even smaller on very small screens */
    }
}

/* ---------- Hero Section ---------- */
.smart-slider-wrapper {
  height: 100%;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d35400;
}
.hero p {
  font-size: 1.2rem;
  color: rgb(7.125, 163.875, 25.65);
}
.hero.home {
  background: url("../images/nccb-banner-web2.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;
}

h1, h2, h3, h4, a, .form-label {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), -1px -1px 2px rgba(255, 255, 255, 0.3);
}

p {
  color: black;
}

h3, h4 {
  color: #d35400;
  font-weight: 600;
}

.listen-btn {
  background-color: #ffffff;
  color: #702800;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.listen-btn:hover {
  background-color: #d35400;
  color: #ffffff;
}

.boxshadow {
  box-shadow: 0 0 20px #d35400;
}


.card .card-title {
  color: #d35400;
}

iframe,
.spotify-embed {
  max-width: 100%;
  height: 232px;
  background-color: transparent;
  box-shadow: 0 4px 8px rgba(211, 211, 223, 0.2);
}

.section-title {
  color: #333333;
  text-align: center;
  margin: 0px 0 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Cards Section ---------- */
.carousel {
  position: relative;
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
}

.carousel-inner {
  padding-top: 1em;
  /* padding: 1em; */
  display: flex;
  overflow: hidden;
}

.img-wrapper {
  max-width: 100%;
  /* height: 20vw; */
  max-height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none; /* allows hover to pass through */
}

.img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.carousel-item {
  display: block;
  margin-right: 0;
  flex: 0 0 100%;
}

.carousel-item1 {
  display: block;
  margin-right: 0;
  flex: 0 0 33.3333333333%;
}

.card {
  background-color: #ffffff;
  color: #333333;
  margin: 1rem;
  font-size: 0.9em;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}
.card .card-title {
  margin-bottom: 10px;
  font-weight: 600;
  text-decoration: none;
}
.card .card-body {
  padding: 15px;
}

/* Style the link inside the heading */
.overlay-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.overlay-link:hover {
  color: #333333;
  text-decoration: none;
}

/* demo-clients say */
#testimonialCarousel img {
  width: 80px;
  max-height: 90px;
  border-radius: 50%;
  margin-right: 0.5rem;
  overflow: hidden;
}

.bi-quote {
  /* font-size: 2rem;   */
  color: #ffffff;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

/* contact-form  */
.contact-form,
.subscription-container {
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 20px #d35400;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #3a4f55;
  color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d35400;
  box-shadow: none;
}

.btn-success-orange {
  background-color: #702800;
  color: #ffffff;
  border: none;
  margin-bottom: 10px;
  border-radius: 15px;
}

.btn-success-orange:hover {
  background-color: #d35400;
  color: #ffffff;
}

/* Section Styling */
#contact .container {
  margin-top: 120px;
}

.contact-section {
  background-color: #ffffff;
  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: #333;
}

/* Grid for the 4 social items */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  margin-top: 2rem;
}

/* Image Styling */
.social-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: cover;
     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);
}

audio {
  width: 100%;
  padding-top: 10px;
}

h3 a {
  color: #d64d1f;
}

/* about page */
.team-right h2 {
  color: #ef5924;
}

.team-box {
  min-height: 600px;
}

.team-member {
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}


.team-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}


.value-card {
  height: 100%;
  max-height: 600px;
}

.value-card p {
  flex-grow: 1;
}

.join-section {
  padding: 40px 25px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 0 20px #ef5924;
}

.btn-success-join {
  background-color: #ffffff;
  margin-bottom: 10px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.btn-success-join:hover {
  background: #d35400;
  color: #ffffff;
}

/* ---------- Featured Shows ---------- */
.shows-section {
  padding: 20px;
  justify-content: center;
  margin: auto 0;
}

.show-card {
  background-color: #ffffff;
  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: #d35400;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* no stretching */
}

.show-card:hover {
  transform: translateY(-5px);
}

.show-card img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.artist-card {
  border-radius: 10px;
  box-shadow: 0 5px 15px #ffffff;
  padding: 15px;
  transition: transform 0.3s ease;
  text-align: center;
}

.artist-card:hover {
  transform: translateY(-5px);
}

.artist-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.schedule {
  border-radius: 10px;
  box-shadow: 0 5px 15px #cf6849;
  padding: 15px;
  transition: transform 0.3s ease;
  text-align: center;
  min-height: 300px;
}


/* Ensure widgets are displayed */
.widget {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Optional: Fix the row layout if there are spacing issues */
.row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between;
}

.col-lg-4 {
    flex: 1 1 30%; /* Ensure 3 columns per row */
    box-sizing: border-box;
}

/* News comments section */
/* Previous / Next Navigation Styling */
.post-navigation {
    margin-top: 1px;
    text-align: center;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-navigation .nav-links .nav-subtitle {
    font-size: 14px;
    color: #888;
}

.post-navigation .nav-links .nav-title {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
}

.post-navigation .nav-links .nav-title:hover {
    color: #0056b3;
    text-decoration: underline;
}

.post-navigation .nav-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Bootstrap 'active' style for navigation */
.nav-links .active {
    color: #c81133;
    font-weight: bold;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #77640e, #883802);
}

/* .fb-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.fb-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
  border-radius: 8px;
} */


.fb-page-wrapper {
  width: 100%;           /* container takes full width */
  max-width: 650px;      /* maximum width you want on desktop */
  margin: 0 auto;        /* center horizontally */
  text-align: center;
}

.fb-page-wrapper .fb-page,
.fb-page-wrapper .fb-page > span,
.fb-page-wrapper iframe {
  width: 100% !important; /* force the plugin to fill the wrapper */
}

.fb-box {
  display: flex;
  /* justify-content: center; */
  justify-content: flex-end;
  align-items: center;
  /* height: 100vh; */
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
  border-radius: 8px;
}

.right-section-header {
  margin-bottom: 20px;
  font-weight: 600;
  color: #007bff;
}

.featured-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

a.link-secondary:hover {
  color: #057312 !important;
}

.scrollTopBtn {
  position: fixed;
  bottom: 30px;
  left: 10px;
  font-size: 30px;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #d35400;
  background-color: #ffffff;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: opacity 0.3s;
}

.scrollTopBtn:hover {
  background-color: #702800;
}

/*Gallery Styles */

.gallery-filters {
  margin-bottom: 20px;
}
.gallery-card {
    /* background: #111; */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}



/* Festival badge */
.festival-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d62828, #f77f00);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

/* Video title */
.gallery-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #ffffff;
}

/* Video description */
.gallery-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1c0202;
    margin-bottom: 12px;
    font-weight: bold;
}

/* Video container */
.video-container {
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

/* Make iframe responsive and clean */
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* View More Videos button */
.more-videos-btn {
    background: #d62828;
    color: #fff;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.more-videos-btn:hover {
    background: #a61c1c;
    color: #fff;
    transform: translateY(-2px);
}


.gallery-slider {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
}

/* Fix Smart Slider height issues */
.n2-ss-slider {
    max-width: 100% !important;
}

.n2-ss-slider-wrapper {
    height: 100% !important;
    max-width: 100% !important;
}


.filter-btn {
  background: #444;
  color: #fff;
  border: none;
  padding: 8px 18px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #e63946;
}

.membership-card {
  border-radius: 15px;
  transition: transform 0.3s ease;
  background: #eaea8d;
  /* background: $nccb-bg; */
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-warning:hover {
  background-color: whitesmoke;
}

footer {
  color: #aaa;
  text-align: center;
  border-top: 2px solid #d35400;
  min-height: 200px;
}
/* .footer-logo img,
.custom-logo {
  max-height: 150px;
  width: auto;
} */
 /* Footer logo sizing */
.footer-logo img,
.custom-logo {
  max-height: 150px;
  width: auto;
  margin-bottom: 0.5rem;
}
/* Hide footer logo on mobile (less than 768px) */
@media (max-width: 767.98px) {
  .footer-logo {
    display: none !important;
  }
}

/* Prevent overlap */
/* .footer-logo p {
  margin-top: 1.5rem;
} */
.footer-p {
  margin-top: 2.5rem;
}

/* Ensure Bootstrap icons display */
.bi {
  font-size: 1.5rem; /* adjust size */
  vertical-align: middle;
}



/* ---------- Responsive ---------- */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  .card {
    margin: 0.5rem;
  }
  .social-img {
    max-width: 120px;
    max-height: 120px;
  }
}
@media screen and (max-width: 576px) {
  .custom-logo{
    width: auto;
    position: static;
    max-height: 50px;
    margin: 10px 0;
    top: 10px;
    transition: height 0.3s ease;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
    padding: 0.4rem 0.5rem;
  }
  .navbar-toggler {
    top: 0.5rem;
    right: 0.75rem;
    height: 36px;
  }
  h1 {
    font-size: small;
    font-weight: bold;
  }
  .btn {
    font-size: 0.5rem;
    padding: 0.5rem 0.8rem;
    width: 100%;
  }
  .listen-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .carousel {
    flex-direction: column;
    gap: 15px;
    overflow-x: visible;
  }
  .carousel-inner {
    display: flex;
    padding-top: 0.5em;
  }
  .carousel-item,
  .carousel-item1 {
    display: block;
    margin-right: 0;
    flex: 0 0 100%;
  }
  .img-wrapper {
    max-height: 20vw;
    height: auto;
    margin-bottom: 10px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 1.5rem;
    height: 1.5rem;
    background-color: grey;
  }
  .card {
    margin: 0.75rem;
    font-size: 0.9em;
  }
  .card .scrollTopBtn {
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
  .card .card-title {
    font-size: 1em;
    text-align: center;
  }
  .card-img-top {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }
  .social-img {
    width: 120px;
    height: 120px;
  }
  .show-card img {
    height: 180px;
  }
  .spotify-embed {
    max-width: 100%;
    height: 200px;
  }
}
@media (max-width: 991px) {
  .navbar {
    padding: 10px;
  }
  .navbar .container-fluid {
    padding: 10px;
  }
  .navbar .custom-logo {
    max-height: 130px;
    margin: 0 auto;
    display: block;
    position: static;
    transform: none;
  }
  .navbar .navbar-nav {
    text-align: center;
    width: 100%;
    margin-top: 15px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    flex-shrink: 0.5;
  }
  .navbar-collapse .navbar-nav {
    text-align: center; /* center menu items */
    width: 100%;
  }
  .navbar-collapse form { /* Center the search form on mobile */
    justify-content: center;
    width: 10%;
    margin-top: 15px;
  }
  .carousel {
    gap: 18px;
  }
  .card {
    margin: 0.9rem;
  }
  .btn {
    font-size: 1.25rem; /* Default large button */
    padding: 0.75rem 1.5rem;
  }
  h2 {
    font-size: medium;
  }
  .navbar-brand,
  .nav-link {
    font-size: 2rem;
  }
  .search-wrapper {
    display: none;
  }
}
/* Desktop only (≥ 992px) */
@media (min-width: 992px) {

  .custom-logo {
    max-height: 200px;   /* adjust */
    width: auto;
/* }
  .navbar-brand img { */
    display: block;
    margin: 0 auto;
  position: absolute;
    transform: translateY(-50%);
    padding: 20px;
    margin-bottom: 40px;
  
  }
  .navbar {
    padding-top: 60px; /* give room for absolute logo */
    padding-bottom: 10px;
  }
  h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 375px) {
 .custom-logo {
    max-height: 100px;
    width: auto;
    transition: height 0.3s ease;
  }
}/*# sourceMappingURL=style.css.map */