
 :root {
  --page-max-width: 1700px; /* Adjust this value to control page size */
  --page-padding: 40px;     /* Optional: padding around your content */
}

body {
  background-color: #1f1e1d;
  color: white;
  margin: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fading-gallery a.spa-link {
  display: inline-block;
  width: auto;
  height: auto;
  position: relative; /* for overlay positioning */
}


/* Content wrapper to control page width */
.page-wrapper {
  max-width: var(--page-max-width);
  padding: var(--page-padding);
  margin: 0 auto; /* center the content */
  width: 100%;
  box-sizing: border-box;
}
 .content {
  padding: 0;
  margin: 0;
  min-height: auto; /* or remove min-height if it exists */
}   
    
 .content {
    min-height: calc(100vh - 100px); /* Adjust for footer height */
    padding-bottom: 80px; /* Increase padding to create space above footer */
  }
 .footer {
  background-color: #111112;
  /* top:20px, right:40px, bottom:20px, left:20px */
  padding: 20px 40px 20px 20px;
  color: #ffffff;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.footer a.navbar-brand1 {
  margin: 0 15px; /* Add margin for spacing between images */
}

.footer img {
  width: 50px; /* Set a consistent size for all images */
  height: auto; /* Maintain the aspect ratio of the images */
  display: inline-block; /* Align images horizontally */
  object-fit: contain; /* Ensure the image is fully visible within the defined width */
}

.footer p {
  margin-top: 10px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  color: #f0f0f0;
}

.footer a {
  color: #ffffff; /* Default link color */
  text-decoration: none;
  transition: color 0.3s ease; /* Smooth transition effect */
}

.footer a:hover {
  color: orange; /* Hover color */
}

.footer a {
  color: #ffffff; /* Default link color */
  text-decoration: none;
  padding: 5px 10px; /* Add some padding for button-like appearance */
  border-radius: 5px; /* Rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  display: inline-block; /* Ensures padding and background are applied properly */
}

.footer a:hover {
  color: #ffffff; /* Keep text white on hover */
  background-color: orange; /* Button hover background color */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Add a slight shadow for depth */
}


/* Navbar Styles */
/* Make toggle icon bars white */
.navbar-toggle .icon-bar {
    background-color: #ffffff;
}

/* Optional: change hover color */
.navbar-toggle:hover .icon-bar {
    background-color: orange;
}


.navbar {
  margin-bottom: 50px;
  border-radius: 0;
  background-color: #111111;
  height: 70px;
  border: none;
  z-index: 9999; 
}

.navbar-brand {
  padding: 5px 15px;
  height: 100%;
}

.navbar-brand img {
  max-height: 57px;
  width: auto;
}

.navbar-nav > li > a {
  color: white !important;
  background-color: #111111;
  padding: 20px 15px;
  border-radius: 0;
  border: none;
  height: 70px;
  display: flex;
  align-items: center;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  color: orange !important;
  background-color: black;
  border: none;
  outline: none;
}

.navbar-collapse {
  background-color: #111111;
}

.dropdown-menu {
  background-color: #111111;
}

.dropdown-menu > li > a {
  color: white !important;
}

.dropdown-menu > li > a:hover {
  color: orange !important;
}

.navbar-form {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 70px;
}

.navbar-form .form-group {
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-form .form-control {
  background-color: #111111;
  border: none;
  color: white;
  height: 40px;
}

.navbar-form .form-control::placeholder {
  color: white;
}

.navbar-form .btn {
  background-color: orange;
  border: none;
  color: white;
  height: 40px;
}

/* Responsive Styles for Screens Smaller Than 1349px */
@media (max-width: 1349px) {
  .navbar {
    height: auto;
    padding: 10px 0;
  }

  .navbar-brand {
    height: auto;
    padding: 0 10px;
    text-align: center;
  }

  .navbar-brand img {
    max-height: 50px; /* Ensure logo scales down on smaller screens */
    width: auto;     /* Maintain aspect ratio */
  }

  .navbar-nav {
    display: block;
    text-align: center;
  }

  .navbar-nav > li {
    display: block;
  }

  .navbar-nav > li > a {
    height: auto;
    padding: 10px 0;
    justify-content: center;
  }

  .navbar-right {
    float: none;
    display: block;
    text-align: center;
  }

  .dropdown-menu {
    text-align: left;
  }

  .navbar-form {
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
  }

  .navbar-form .form-group {
    width: 100%;
    margin-bottom: 10px;
  }

  .navbar-form .form-control {
    width: 100%;
    text-align: center;
  }

  .navbar-form .btn {
    width: 100%;
    margin-top: 5px;
  }

  /* Show the toggle button on screens smaller than 1349px */
  .navbar-toggler {
    margin-right: 10px;
    display: block; /* Make the toggle visible */
  }
}

@media (max-width: 768px) {
  .nav.navbar-nav.navbar-right {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 1rem; /* Add spacing between items */
  }

  .nav.navbar-nav.navbar-right li {
    width: auto; /* Allow buttons to be centered and fit their content */
  }

  .nav.navbar-nav.navbar-right li a {
    width: auto; /* Center-align buttons and adjust their width */
    justify-content: center; /* Center text inside buttons */
  }

  /* Adjust the search dropdown */
  .navbar-form .form-group {
    width: 100%;
    margin-bottom: 15px;
  }

  .navbar-form .form-control {
    width: 100%;
    text-align: center;
  }

  .navbar-form .btn {
    width: 100%;
    margin-top: 5px;
  }

  .navbar-nav .dropdown-menu {
    width: 80%; /* Full width for the dropdown on smaller screens */
    box-sizing: border-box;
    position: absolute; /* Ensure dropdown stays in place */
    left: 0; /* Align left to prevent overflow */
  }
}


/* Hide the Sign Up button on smaller screens */
@media (max-width: 768px) {
  .btn {
    display: none !important;
  }
}

    .jumbotron {
      margin-bottom: 0;
    }
    .product-info {
      margin-top: 20px;
    }
    .product-info h2, .product-info p {
      margin: 8px 0;
    }
 .search-dropdown {
  position: absolute; /* Ensures dropdown is placed relative to the parent container */
  background-color: #2a2727;
  border: 1px solid #ccc;
  z-index: 1050; /* High enough to appear above other elements */
  width: 100%; /* Match the width of the search input */
  display: none; /* Initially hidden */
  max-height: 200px; /* Limit dropdown height for overflow */
  overflow-y: auto; /* Enable vertical scrolling for long lists */
  border-radius: 5px; /* Smooth corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.search-dropdown a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.search-dropdown a:hover {
  background-color: #FF7900; /* Highlight on hover */
}

#searchQuery {
    width: 300px;       /* Sets a wider default width */
    max-width: 100%;    /* Prevents overflow */
    padding: 10px;      /* Adds padding inside the input */
    font-size: 1.5rem;    /* Adjusts font size for readability */
}

    .placeholder {
      background-color: #1f1e1e ;
      height: 100%;
      width: 100%;
    }
    .panel-body, .panel-footer {
      background-color: #1f1e1e ;
      color: white;
    }
    .panel-primary {
      border-color: #1f1e1e ;
    }
    .panel-primary > .panel-heading {
      background-color: #1f1e1e ;
      border-color: #1f1e1e ;
    }
    /* Slider Styles */
    #featuredSlider {
        max-width: 40%;
        margin: auto;
        border-radius: 15px; /* Add border-radius to the slider container */
        overflow: hidden; /* Ensure rounded corners apply to the entire slider */
    }

    #featuredSlider .carousel-inner > .item img {
        border-radius: 15px; /* Add border-radius to each slider image */
    }

    /* Product List Styles */
    .product-item .panel {
        border-radius: 10px; /* Rounded corners for each product card */
        overflow: hidden; /* Ensures rounded corners are applied */
    }

    .product-item .panel-body img {
        border-radius: 10px; /* Rounded corners for product images */
    }

    .product-item .panel-footer {
        border-radius: 0 0 10px 10px; /* Match footer to panel's rounded corners */
        background-color: #1f1e1e ;
        color: white;
    }

    .product-item .panel-primary {
        border-color: #1f1e1e ;
    }

    /* Remaining styles (navbar, jumbotron, etc.) are the same */
.text-center {
  text-align: center;
  margin-bottom: 25px; /* Adjust margin as needed */
}

.text-center h2 {
  font-size: 3em; /* Adjust font size as needed */
  color: #fff; /* White text color */
}

.text-center p {
  font-size: 1.5em; /* Adjust font size as needed */
  color: #fff; /* White text color */
}

@media (max-width: 768px) {
  .text-center h2 {
    font-size: 2em; /* Adjust font size for smaller screens */
  }

  .text-center p {
    font-size: 1.2em; /* Adjust font size for smaller screens */
  }
}

      /* Mobile responsiveness adjustments for the footer */
@media (max-width: 768px) {
  .footer-container {
    padding-bottom: 10px;
  }
}  
 
/* Card Styling */
.content-card {
  background-color: #1f1e1e;
  border-radius: 15px;
  padding: 40px; /* Increased padding */
  margin: 20px auto;
  max-width: 90%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
/* Centered Smaller Card Styling */
.content-card3 {
  background-color: #1f1e1e;
  border-radius: 15px;
  padding: 15px;
  margin: 15px auto;
  width: 90%; /* Always 100% inside the column */
  max-width: 500px; /* Good default size for desktops/tablets */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* For large desktops */
@media (min-width: 1200px) {
  .content-card3 {
    max-width: 500px;
  }
}

/* For tablets (smaller) */
@media (max-width: 768px) {
  .content-card3 {
    max-width: 90%; /* A bit smaller */
    padding: 12px;
  }
}

/* For mobile phones */
@media (max-width: 576px) {
  .content-card3 {
    width: 50%;  /* Shrink width a bit more */
    max-width: 320px; /* Smaller card on mobile */
    padding: 10px; /* Less padding on mobile */
  }
}

img {
  max-width: 100%;
  height: auto;
}




  /* Card Styling */
  .content-card2 {
    background-color:  #1f1e1e ; /* Background color of the card */
    border-radius: 15px; /* Rounded corners */
    padding: 20px; /* Padding inside the card */
    margin: 20px auto; /* Center and add space around */
    max-width: 90%; /* Width of the card */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Optional shadow for depth */
  }
  
  /* Title Styling */
  .section-title {
    color: #FFFFFF; /* Title text color */
    text-align: center;
    margin-bottom: 20px;
  } 
  /* Responsive adjustments */
  @media (max-width: 768px) {
    /* Slider becomes full-width on mobile */
    #featuredSlider {
      max-width: 90%;
    }
    
    .jumbotron {
      margin-bottom: 0;
    }
    .product-info {
      margin-top: 20px;
    }
    .product-info h2, .product-info p {
      margin: 5px 0;
    }
    .tracklist {
      margin-top: 20px;
  
    }
    .placeholder {
      background-color: #2a2727 ;
      height: 100%;
      width: 100%;
    }
    .panel-body, .panel-footer {
      background-color: #2a2727 ;
      color: white;
    }
    .panel-primary {
      border-color: #2a2727 ;
    }
    .panel-primary > .panel-heading { 
      background-color: #2a2727 ;
      border-color: #2a2727 ;
    }
   /* Styling for striped table rows */
   
.table-container {
  overflow-x: auto;
  text-align: center;
}

.table {
  margin: 0 auto; /* Center the table inside the container */
  width: 95%; /* Make it a bit smaller */
}
   
.table-striped tbody tr:nth-child(odd) {
  background-color: #2a2727  !important; /* Ensure this color applies */
}

.table-striped tbody tr:nth-child(even) {
  background-color: #FF7900 ; /* Ensure this color applies */
}

.table-striped th, .table-striped td {
  color: white !important; /* Set text color for table cells */
}

       }
 /* Desktop Specific Adjustments */
@media (min-width: 768px) {
  .table-striped tbody tr:nth-child(odd) {
    background-color: #2a2727 ; /* Ensure same color for desktop */
  }
  .table-striped tbody tr:nth-child(even) {
    background-color: #FF7900; /* Ensure same color for desktop */
  }
}

.green-circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #39FF14;
    border-radius: 50%;
    margin-left: 5px; /* Adjusts spacing */
  }
  
/* General Styling for the Carousel Section */
.content-card1 {
  background-color:  #1f1e1e ; /* Background color of the card */
  border-radius: 15px; /* Rounded corners */
  padding: 20px 20px 50px 20px; /* Add more padding to the bottom (20px left, 20px top, 30px bottom, 20px right) */
  margin: 20px auto; /* Center and add space around */
  max-width: 100%; /* Width of the card */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Optional shadow for depth */
}

/* Carousel Section Styling */
.carousel {
  position: relative;
  margin-bottom: 15px; /* Reduced bottom margin for closer cards */
  width: 100%; /* Increased width of the carousel container */
  max-width: 1000px; /* Set a larger max width for the carousel */
  margin-left: auto; /* Center the carousel */
  margin-right: auto; /* Center the carousel */
}

.content-card1 h2 {
  font-size: 24px;
  color: white;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: center; /* Ensure heading is centered */
}

/* Carousel Items Styling */
.carousel-item {
  display: none; /* Hide all items initially */
}

.carousel-item.active {
  display: block; /* Show the active item */
} 

/* Ensure carousel items are displayed correctly */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden; /* Prevent images from stacking vertically */
}

/* Styling for carousel items */
.carousel-item {
  display: none; /* Hide all items by default */
  position: relative;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  height: 300px; /* Set consistent height for carousel items */
}

.carousel-item.active {
  display: flex; /* Show active item */
}

/* Square image styling */
.carousel-item img {
  width: 100%; /* Allow responsiveness */
  max-width: 300px; /* Square dimensions */
  height: 300px; /* Fixed height to maintain square shape */
  object-fit: cover; /* Ensure the image covers the container */
  border-radius: 8px; /* Optional rounded corners */
  margin: 0 auto; /* Center the image */
  transition: transform 0.3s ease-in-out; /* Hover effect */
}

.carousel-item img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Adjusting navigation buttons for better visibility */
.carousel-control-prev,
.carousel-control-next {
  top: 50%; /* Center buttons vertically */
  transform: translateY(-50%);
}.carousel-item img {
  width: 100%; /* Make the images responsive */
  height: 100%; /* Set the height to match the container */
  object-fit: cover; /* Ensure the image covers the space without distortion */
  max-height: 350px; /* Limit the height of the image */
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}
  right: 15px; /* Position the next button to the right */
}

/* Control icons inside buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #464767;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: orange;
}
/* Carousel Caption Styling - Center button */
.carousel-caption {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center; /* Center text and button within the caption */
}

.carousel-caption a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  background-color: orange;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.carousel-caption a:hover {
  background-color: #464767;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-caption a {
    font-size: 14px;
    padding: 6px 12px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 15px;
    height: 15px;
  }

  /* Stack the sliders on small screens */
  .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Adjust the slider image for smaller screens */
  .carousel-item img {
    max-height: 300px; /* Set a lower max height for small devices */
  }

  .carousel {
    width: 90%; /* Reduce width on smaller screens */
  }
}

@media (max-width: 576px) {
  .carousel {
    width: 90%; /* Full width on smaller screens */
    max-width: 90%; /* Remove max-width constraint */
  }

  .carousel-caption {
    font-size: 12px;
    padding: 5px 10px;
  }

  /* Further reduce height on smaller screens */
  .carousel-item img {
    max-height: 200px; /* Adjust for very small screens */
  }

  .carousel {
    width: 100%; /* Make carousel container full width */
  }
}

/* Wrapper for Horizontal Scrolling */
.scroll-wrapper {
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  padding: 20px;
  width: 100%;
}
/* Add a wrapper around your page content to control the width */
.container-fluid {
  max-width: 1600px;  /* Limit the max width to ensure the content doesn't stretch */
  margin: 0 auto;     /* Center the content horizontally */
  padding: 0 15px;    /* Add some padding to the sides */
}

/* Optionally, you can set a max-width on the body to avoid over-stretching */
body {
  overflow-x: hidden;  /* Prevent horizontal scrolling if content overflows */
}

/* Adjust the padding on the content container */
.container-fluid,
.content,
.scroll-wrapper {
  padding-bottom: 1px; /* Reduce the bottom padding */
}

/* Optionally, if the content has specific sections, you can adjust them too */
section {
  padding-bottom: 1px; /* Reduce padding for specific sections */
}

/* Three Galleries Layout */
.multi-gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-wrapper {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* Fading Gallery Styles */
.fading-gallery {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Square aspect ratio */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.fading-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block;
  cursor: pointer;
}

.fading-image.active {
  opacity: 1;
}

.fading-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fading-image {
  opacity: 1 !important; /* Always visible */
  transition: none !important; /* No fading */
}


/* Responsive Styles */
@media (max-width: 992px) {
  .gallery-wrapper {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .gallery-wrapper {
    display: none;
    flex: 0 0 100%;
    margin-bottom: 0;
  }
  
  .gallery-wrapper.mobile-visible {
    display: block;
  }
  
  .fading-gallery {
    padding-bottom: 80%; /* Slightly rectangular on mobile */
  }
}
.genre-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto; /* Allow it to adjust on small screens */
  text-align: center;
  margin: 20px 0 40px;
  width: 100%;
}

.genre-header h2 {
  font-size: 4rem;
  font-weight: bold;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

/* Adjust font size and spacing for smaller screens */
@media (max-width: 768px) {
  .genre-header h2 {
    font-size: 2rem; /* Smaller size for mobile */
  }
}

/* Default style - visible on all devices */
  .genre-header {
    display: block;
  }

  /* Hide on mobile devices (typically screens less than 768px wide) */
  @media only screen and (max-width: 767px) {
    .genre-header {
      display: none;
    }
  }

.genre-header2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  text-align: center;
  margin: 20px 0 40px;
  width: 100%;
}

.genre-header2 h2 {
  font-size: 4rem;
  font-weight: bold;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  text-align: center;
}

/* Responsive font size for mobile */
@media (max-width: 768px) {
  .genre-header2 h2 {
    font-size: 2rem;
  }
}

    .player {
      margin-top: 10px;
    }
    #customAudioPlayer {
      width: 100%;
      background-color: #464767;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
    }
    #playPauseBtn, #prevBtn, #nextBtn {
      width: 50px;
      height: 50px;
      background-color: #ca7df7;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }
    #playPauseBtn.pause {
      background-color: orange;
    }
    #volumeSlider {
      -webkit-appearance: none;
      appearance: none;
      width: 10%;
      height: 10px;
      background-color: #f76d29;
      outline: none;
      border-radius: 5px;
      margin-left: auto;
    }
    #progressBar {
      background-color: #f76d29;
      height: 20px;
      width: 100%;
      margin-top: 10px;
      border-radius: 5px;
      overflow: hidden;
    }
    #progress {
      background-color: orange;
      height: 100%;
      width: 0%;
    }


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030; /* Ensures the navbar stays above other elements */
  background-color: #111111; /* Maintain the desired background color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
}

body {
  padding-top: 70px; /* Adjust this value to match the height of the navbar */
}

.navbar .dropdown-menu {
  margin-top: 10px; /* Prevent dropdowns from overlapping the navbar */
}

.product-image {
      position: relative;
      width: 40px;
      height: 40px;
      overflow: hidden;
  }

  .product-image img {
      width: 50%;
      height: 50%;
      object-fit: cover;
      cursor: pointer;
  }

  .play-icon {
      position: absolute;
      top: 35%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 24px;
      color: white;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 5px;
      border-radius: 50%;
      cursor: pointer;
      display: none;
  }

  .product-image:hover .play-icon {
      display: block;
  }
  
  

.product-item {
    position: relative; /* Ensure the play button is positioned relative to the image container */
}

.play-btn {
    position: absolute;
    top: 35%; /* Move the button a little higher (adjust this value as needed) */
    left: 50%; /* Keep the button horizontally centered */
    transform: translate(-50%, -50%); /* Adjust position to ensure it is perfectly centered */
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-btn i {
    font-size: 18px; /* Adjust the size of the icon inside the button */
}

/* Product Image Styling */
.product-image {
  width: 100%;
  height: 250px; /* Set fixed height */
  object-fit: cover; /* Ensures the image fills and crops nicely */
}

/* Style the product image */
.product-image img {
    max-width: px;  /* Limit the image width */
    max-height: 50px; /* Limit the image height */
    width: 100%;       /* Ensure the image scales properly within the container */
    height: auto;      /* Maintain the aspect ratio */
    display: block;    /* Prevent image from overflowing */
    margin: 0 auto;    /* Center the image horizontally */
}

/* Style the play button inside the image */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;  /* Adjust size of play icon */
    color: white;     /* Set color of play icon */
    cursor: pointer; /* Make it clickable */
    opacity: 0.7;     /* Add some transparency to the play icon */
}

.product-image {
    position: relative; /* Ensure the play button is positioned relative to the image */
}

/* General Styles */
.content {
  width: 100%; /* Ensure content spans the available space */
  max-width: 1650px; /* Optional: Set a max width for readability */
  margin: 0 auto; /* Center content */
}

/* Mobile-specific Styles (for screens smaller than 768px) */
@media (max-width: 768px) {
  /* Ensure the content is still centered on small screens */
  .content {
    padding: 10px; /* Add some padding for better spacing on mobile */
  }

  /* Adjust table styles for smaller screens */
  .table-striped {
    width: 100%; /* Make sure the table spans the full width */
    font-size: 12px; /* Make text smaller for better readability on small screens */
  }

  .table-striped th, .table-striped td {
    padding: 8px; /* Decrease padding for compact table layout */
  }

  /* Ensure product image and text are aligned on mobile */
  .product-image img {
    width: 40px; /* Reduce image size for mobile */
    height: 40px;
  }

  /* Adjust the button size for mobile */
  .btn-primary {
    font-size: 12px; /* Smaller font size */
    padding: 5px 8px; /* Smaller padding for better fit */
  }

 
/* Adjust for even smaller screens (below 410px) */
@media (max-width: 410px) {
  .table-striped td {
    font-size: 10px; /* Make text even smaller for very small screens */
  }
}


/* Mobile-Specific Adjustments */
@media (max-width: 410px) {
  .table-striped th:nth-child(4), /* Target Artist Name(s) column */
  .table-striped th:nth-child(5) { /* Target Record Label column */
    display: none; /* Hide columns on smaller screens */
  }

  .table-striped td:nth-child(4), /* Target Artist Name(s) data */
  .table-striped td:nth-child(5) { /* Target Record Label data */
    display: none; /* Hide column data on smaller screens */
  }
}
 /* Initially hide the menu items on mobile */
  .hide-mobile {
    display: block !important;
  }

         /* General Styles */
.content {
  width: 100%; /* Ensure content spans the available space */
  max-width: 1650px; /* Optional: Set a max width for readability */
  margin: 0 auto; /* Center content */
}

/* Mobile-specific Styles (for screens smaller than 768px) */
@media (max-width: 768px) {
  /* Ensure the content is still centered on small screens */
  .content {
    padding: 10px; /* Add some padding for better spacing on mobile */
  }
  
  /* Wrapper for Horizontal Scrolling */
.scroll-wrapper {
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  padding: 20px;
  width: 100%;
}
/* Add a wrapper around your page content to control the width */
.container-fluid {
  max-width: 1600px;  /* Limit the max width to ensure the content doesn't stretch */
  margin: 0 auto;     /* Center the content horizontally */
  padding: 0 5px;    /* Add some padding to the sides */
}

/* Optionally, you can set a max-width on the body to avoid over-stretching */
body {
  overflow-x: hidden;  /* Prevent horizontal scrolling if content overflows */
}

/* Adjust the padding on the content container */
.container-fluid,
.content,
.scroll-wrapper {
  padding-bottom: 1px; /* Reduce the bottom padding */
}

/* Optionally, if the content has specific sections, you can adjust them too */
section {
  padding-bottom: 1px; /* Reduce padding for specific sections */
}
   /* Initially hide the menu items on mobile */
  .hide-mobile {
    display: block !important;
  }

  /* On mobile screens, hide the menu items */
  @media (max-width: 767px) {
    .hide-mobile {
      display: none !important; /* Hide the items on mobile */
    }
  }
  
  
    /* Ensure the dropdown height is restricted and can be scrolled on mobile */
  .genres-dropdown {
    max-height: 200px; /* Set maximum height for scrolling */
    overflow-y: auto; /* Enable vertical scroll if the content exceeds the max height */
  }

  /* Mobile devices */
  @media (max-width: 767px) {
    .genres-dropdown {
      max-height: 200px;  /* Adjust height as needed */
      overflow-y: auto;  /* Allow scrolling */
    }
  }
  
 .page-container {
  background: #111112; /* Only fills behind the content/footer, not full body */
} 
 .carousel-caption {
  pointer-events: none; /* disables mouse interactions */
}
.carousel-caption a {
  pointer-events: auto; /* re-enable it only for the View button */
}
.audio-thumb {
  z-index: 10;
  position: relative;
}
.carousel-caption {
  border: 2px solid red;
}
.audio-thumb {
  position: relative;
}

 /* Base square size on desktop */
  .product-img {
    display: block;
    width: 275px;
    height: 275px;        /* force square */
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;       /* center in its container */
  }

  /* Smaller square on tablets */
  @media (max-width: 991px) {
    .product-img {
      width: 200px;
      height: 200px;
    }
  }

  /* Smallest square on mobile */
  @media (max-width: 767px) {
    .product-img {
      width: 150px;
      height: 150px;
    }
  }

/* Image container */
.img-container {
  position: relative;
  width: 100%;
  max-width: 275px;
  margin: 0 auto; /* center horizontally */
  aspect-ratio: 1/1; /* Force square, modern browsers */
  overflow: hidden;
  border-radius: 10px;
}

/* Product image */
.product-img {
  width: 100%;
  height: 95%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: orange;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make images larger on mobile */
@media (max-width: 768px) {
  .img-container {
    max-width: 100%; /* take up more width */
    aspect-ratio: 1/1;
    border-radius: 15px; /* Added for mobile */
  }

  .product-img {
    border-radius: 25px; /* Added for mobile */
  }
}

  .slider-container {
    position: relative;
    overflow: hidden;
  }

  .slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
  }

  .slider-item {
    flex: 0 0 50%;
    text-align: center;
  }

  .slider-item img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
  }

  .slider-pagination {
    text-align: center;
    margin-top: 10px;
  }

  .pagination-item {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #aaa;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }

  .pagination-item.active {
    background-color: #ffa;
  }

/* Default style - visible on all devices */
  .genre-header {
    display: block;
  }

  /* Hide on mobile devices (typically screens less than 768px wide) */
  @media only screen and (max-width: 767px) {
    .genre-header {
      display: none;
    }
  }


 /* Desktop - aligned with menu */
  @media (min-width: 768px) {
    .navbar-form.navbar-left {
      float: left;
      margin-left: 15px;
      padding-top: 5px !important; /* Reduced from 7px to 5px */
    }
    .navbar-nav > li > a {
      padding-top: 15px;
      padding-bottom: 15px;
    }
  }
  
  /* Mobile - centered */
  @media (max-width: 767px) {
    .navbar-form.navbar-left {
      float: none !important;
      display: block;
      margin: 5px auto 15px;
      width: 80%;
      padding-top: 0 !important;
    }
    .navbar-form .form-control {
      margin: 0 auto;
    }
  }
  
  .search-dropdown a:hover {
    background-color: #FF7900
 
 /* hide on mobile (≤767px) and tablets (768px–1024px) */
@media (max-width: 1024px) {
  .hide-mobile {
    display: none !important;
  }
}
 
.nav-link {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}

.nav-link.active {
    color: #0066cc;
    font-weight: bold;
    border-bottom: 2px solid #0066cc;
}

#content.loading {
    opacity: 0.6;
    pointer-events: none;
}

body {
  zoom: 70%;            /* your current shrink */
  padding-bottom: 40px; /* adjust this value as needed */
}

body {
  margin: 0;
  padding: 0;
  font-size: 0.9rem; /* smaller base font */
}

.navbar-nav .nav-link {
  padding: 0.25rem 0.5rem; /* tighter links */
}

.container.compact-page {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.multi-gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-wrapper {
  flex: 0 0 calc(20% - 20px);
  min-width: 0;
  position: relative;
}

.fading-gallery {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Square aspect ratio */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fading-gallery:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.fading-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.fading-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fading-image:hover img {
  transform: scale(1.05);
}

.image-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.3s ease;
  color: white;
}

.fading-image:hover .image-hover-overlay {
  opacity: 1;
}

.hover-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.fading-image:hover .hover-content {
  transform: translateY(0);
}

.hover-content h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.hover-content p {
  margin: 0;
  font-size: 14px;
  color: #ff7900;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .gallery-wrapper {
    flex: 0 0 calc(25% - 20px);
  }
}

@media (max-width: 992px) {
  .gallery-wrapper {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .gallery-wrapper {
    flex: 0 0 calc(50% - 20px);
  }
  
  .gallery-wrapper:not(.mobile-visible) {
    display: none;
  }
}

@media (max-width: 576px) {
  .gallery-wrapper.mobile-visible {
    flex: 0 0 100%;
  }
  
  .hover-content h4 {
    font-size: 14px;
  }
  
  .hover-content p {
    font-size: 12px;
  }
}

