/* ==========================================================================
   MC RECORDS - Custom Additions & Overrides (2026)
   ========================================================================== */

:root {
  --primary-color: #ff0000;
  --bg-dark: #0a0a0a;
  --card-bg: #141414;
}

html { 
  scroll-behavior: smooth; 
}

body {
  padding-top: 85px !important;
}

/* Navbar Layout */
.main-navbar.fixed-top {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  background-color: #000000 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  padding: 12px 0 !important;
  z-index: 9999 !important;
  transition: all 0.3s ease-in-out;
}

.navbar-brand img {
  max-height: 60px;
}

.navbar-nav.site-menu .menu-item a {
  white-space: nowrap !important;
  display: inline-block !important;
  line-height: 1.2 !important;
  padding: 10px 14px !important;
}

.login-btn-custom {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #ffffff !important;
  transition: all 0.3s ease-in-out !important;
  font-weight: 600;
}

.login-btn-custom:hover {
  background-color: #ff0000 !important;
  color: #ffffff !important;
  border-color: #ff0000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
}

/* Hero & Parallax Section */
.banner-section.style-two {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important; /* Pure CSS Parallax */
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 160px;
  position: relative;
}

.hero-text-container {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-text-container h1 {
  font-weight: 800;
  line-height: 1.2;
  font-size: 2.2rem;
}

.hero-text-container p {
  max-width: 750px;
  margin: 20px auto 35px auto !important;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: stretch;
}

.hero-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 56px;
  padding: 12px 24px !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

/* Audio Player Bottom Sticky Bar */
.banner-bottom-player {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  z-index: 10;
}

.single-audio-player.style-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.single-audio-player.style-two .single-audio-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-audio-player.style-two audio {
  width: 100%;
  max-width: 450px;
  height: 40px;
}

.single-audio-thumb-container {
  width: 60px; 
  height: 60px; 
  flex-shrink: 0;
}

.single-audio-content-top-hero {
  font-size: 1.1rem; 
  margin-bottom: 2px;
}

.audio-time-hero {
  font-size: 0.85rem; 
  color: #aaa; 
  margin: 0;
}

/* Cards & Elements */
.icon-card {
  background: var(--card-bg) !important;
  border-radius: 20px !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, border-color 0.3s !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.icon-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2) !important;
  border-color: var(--primary-color) !important;
}

.pricing-percentage { 
  font-size: 3rem !important; 
  font-weight: 800 !important; 
  color: var(--primary-color) !important; 
  line-height: 1 !important;
}

.show-name-white {
  color: #ffffff;
}

/* Slider Controls */
.artists-carousel-wrapper {
  position: relative;
  padding: 0 45px;
}

.artists-carousel .podcast-item {
  margin: 0 15px; 
}

.slick-list {
  margin: 0 -15px;
}

.slick-prev-custom, .slick-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s ease;
}

.slick-prev-custom { left: 0; }
.slick-next-custom { right: 0; }

.slick-prev-custom:hover, .slick-next-custom:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  color: #ffffff;
}

/* Releases List Alternate Rows */
.releases-list-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.releases-list-container .small-player-wrapper {
  border-radius: 16px;
  padding: 15px 20px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.releases-list-container .small-player-wrapper:nth-child(odd) {
  background-color: #141414;
}

.releases-list-container .small-player-wrapper:nth-child(even) {
  background-color: #2b0000;
  border-color: rgba(255, 0, 0, 0.2);
}

.releases-list-container .small-player-wrapper:hover {
  transform: scale(1.005);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.15);
}

/* Streaming Buttons */
.track-row-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.track-streaming-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.btn-stream {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-stream.spotify:hover {
  background-color: #1DB954;
  border-color: #1DB954;
  box-shadow: 0 0 12px rgba(29, 185, 84, 0.5);
  color: #ffffff;
}

.btn-stream.apple:hover {
  background-color: #FC3C44;
  border-color: #FC3C44;
  box-shadow: 0 0 12px rgba(252, 60, 68, 0.5);
  color: #ffffff;
}

.btn-stream.ytmusic:hover {
  background-color: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
  color: #ffffff;
}

/* Contact CTA Section */
.contact-cta-button-custom {
  min-height: 70px; 
  min-width: 280px; 
  letter-spacing: 0.5px;
}

.bottom-logo img {
  max-height: 60px;
}

/* Scroll Animations Base Trigger */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries Hierarchy */
@media (max-width: 991px) {
  body {
    padding-top: 75px !important;
  }
  .artists-carousel-wrapper { 
    padding: 0; 
  }
  .slick-prev-custom, .slick-next-custom { 
    display: none !important; 
  }
}

@media (min-width: 576px) {
  .hero-cta-buttons { 
    flex-direction: row; 
  }
  .hero-cta-buttons .btn { 
    width: auto; 
  }
}

@media (min-width: 768px) {
  .hero-text-container h1 { 
    font-size: 3.5rem; 
  }
  .hero-text-container p { 
    font-size: 1.15rem; 
  }
  .single-audio-player.style-two {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .track-row-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .track-streaming-links {
    justify-content: flex-end;
  }
}