/* styles/main.css */
:root {
    --primary-black: #000;
    --primary-white: #fff;
    --accent-yellow: #FFD700;
    --accent-red: #FF4136;
    --gray-bg: #1a1a1a;
    --font-primary: 'Montserrat', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
   /* background-color: rgba(0, 0, 0, 0.8);*/
    padding: 20px 0;
    transition: all 0.3s ease;
  /*  backdrop-filter: blur(5px); */
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-red));
    z-index: 99;
}

.header.scrolled {
    background-color: var(--primary-black);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}


header li.nav-item {
    padding: 0 16px;
}
.nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary-white) !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(26,26,26,0.8)),
    url('../assets/banner.jpg');
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
	text-align:center;
	padding: 5rem 0 !important;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.scroll-down-indicator a {
    color: var(--accent-yellow);
    text-decoration: none;
}
.scroll-down-indicator a:hover {
    color: var(--accent-red);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

.hero-section h1 {
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.05em;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Buttons */
/* Common Button Class */
.btn-common {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

/* Variant Button: Red (Primary Call-to-Action) */
.btn-red {
    background-color: var(--accent-red);
    border: 2px solid var(--accent-red);
    color: var(--primary-white);
}

.btn-red:hover {
    background-color: var(--primary-white);
    color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,65,54,0.4);
}

/* Variant Button: Outline Red */
.btn-outline-red {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
}

.btn-outline-red:hover {
    background-color: var(--accent-red);
    color: var(--primary-white);
    transform: translateY(-3px);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-yellow);
    position: relative;
    display: inline-block;
	text-transform:uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-red);
}

/* Music Section */
.music-section {
    background-color: var(--gray-bg);
    position: relative;
    padding: 5rem 0;
}

.music-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
    opacity: 0.1;
    z-index: -1;
}

/* Events Section */
.events-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
    url('../assets/events-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 7rem 0;
}

.event-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid;
    border-image: linear-gradient(45deg, var(--accent-yellow), var(--accent-red)) 1;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: 0.5s;
}

.event-card:hover::before {
    left: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.event-date {
    background: var(--accent-yellow);
    color: var(--primary-black) !important;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    padding: 50px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-red));
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a:hover {
    color: var(--accent-red) !important;
    transform: translateY(-3px);
}

/* Footer Horizontal Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links .nav-link {
    color: var(--primary-white) !important;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links .nav-link:hover {
    color: var(--accent-yellow) !important;
}

/* Music Page Styles */
.music-page {
    padding-top: 80px; /* Adjust based on your header height */
    background-color: var(--gray-bg);
}

.page-title-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../assets/banner.jpg') no-repeat center center/cover;
    padding: 60px 0;
    text-align: center;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.album-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-cover {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.album-card h3 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
	font-size:20px;
}

.streaming-links {
    margin-top: 15px;
}

.streaming-links .btn {
    margin: 5px;
}
.album-card .streaming-links .btn {
    font-size: 14px;
}
.about-preview-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.about-wrapper {
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-radius: 15px;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/tone-loc-bg.jpg') no-repeat center center/cover;
  z-index: 0;
}

.about-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.8) 100%);
}

.about-content-row {
  position: relative;
  z-index: 1;
}

.about-image-col {
  position: relative;
}

.tone-portrait {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tone-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.about-wrapper:hover .tone-portrait img {
  transform: scale(1.05);
}

.image-accent {
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: -10px;
  width: 10px;
  background: var(--accent-yellow);
}

.about-content-col {
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}
/*
.about-content {
  border-left: 3px solid var(--accent-yellow);
}*/

.career-pills {
  transition: all 0.3s ease;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('../assets/tone-loc-hero.jpg') no-repeat center center/cover;	
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.about-hero h1 {
    color: var(--accent-yellow);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-content {
    background-color: var(--gray-bg);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Career Highlights Section */
.bg-pattern {
    background-color: var(--gray-bg);
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    z-index: 0;
}

.highlight-card {
    background-color: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
    transform: rotate(45deg);
    transition: 0.5s;
    z-index: 1;
}

.highlight-card:hover::before {
    left: 0;
}

.highlight-card .icon-wrapper {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.highlight-card h3 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.highlight-card ul {
    padding: 0;
}

.highlight-card ul li {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
	list-style:none;
}

.highlight-card ul li i {
    color: var(--accent-yellow);
    margin-right: 10px;
}

/* Music Page Styles */
.music-content {
  padding: 60px 0;
  background-color: var(--gray-bg);
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.featured-album {
  margin-bottom: 60px;
}

.album-card {
  background-color: rgba(255,255,255,0.05);
  border-radius: 15px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.album-card.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.album-info h3 {
  font-size: 1.8rem;
  color: var(--accent-yellow);
  margin-bottom: 15px;
}

.album-year {
  font-size: 1.1rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.album-desc {
  margin-bottom: 20px;
  line-height: 1.6;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  margin-top: 20px;
}

.albums-grid h2,
.featured-album h2,
.singles-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--accent-yellow);
  position: relative;
  display: inline-block;
}

.albums-grid h2::after,
.featured-album h2::after,
.singles-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-red);
}

.album-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Singles Section */
.singles-section {
  padding: 60px 0;
  background-color: var(--gray-bg);
}

.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.single-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.single-card:hover {
  transform: translateY(-5px);
}

.single-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.single-info {
  padding: 20px;
}

.single-info h3 {
  color: var(--accent-yellow);
  margin-bottom: 10px;
}

.single-info p {
  margin-bottom: 5px;
  opacity: 0.8;
}

.single-info .btn {
  margin-top: 15px;
}



/* Movies Page Styles */
.movie-content {
  padding: 60px 0;
  background-color: var(--gray-bg);
}

.featured-movie {
  margin-bottom: 60px;
}

.movie-card {
  background-color: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.movie-card.featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
}

.movie-info h3 {
  font-size: 1.8rem;
  color: var(--accent-yellow);
  margin-bottom: 15px;
}

.movie-desc {
  margin-bottom: 20px;
  line-height: 1.6;
}

.movie-details p {
  margin-bottom: 10px;
}

.movies-grid h2,
.featured-movie h2,
.tv-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--accent-yellow);
  position: relative;
  display: inline-block;
}

.movies-grid h2::after,
.featured-movie h2::after,
.tv-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-red);
}

.movie-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

/* TV Section */
.tv-section {
  padding: 60px 0;
  background-color: var(--gray-bg);
}

.tv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tv-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.tv-card:hover {
  transform: translateY(-5px);
}

.tv-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.tv-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tv-info h3 {
  color: var(--accent-yellow);
  margin-bottom: 10px;
}

.tv-info p {
  margin-bottom: 5px;
  opacity: 0.8;
}

/* Movie Parallax */
.movie-parallax {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('../assets/tone-loc-voice.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  text-align: center;
  padding: 100px 0;
}

.movie-parallax h2 {
  font-size: 3rem;
  color: var(--accent-yellow);
  margin-bottom: 20px;
}

.movie-parallax p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Media Queries */
@media (max-width: 992px) {
  .movie-card.featured {
    grid-template-columns: 1fr;
  }
  
  .movie-video {
    margin-bottom: 20px;
  }
  
  .movie-row {
    grid-template-columns: 1fr;
  }
}



/* Responsive Design */
@media (max-width: 768px) {
	.header {
	background-color: rgba(0, 0, 0, 0.8);
	}
    .hero-section h1 {
        font-size: 3.5rem;
    }
  .hero-section{
    background-position:center !important;
  } 
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .event-date .fs-4 {
        font-size: 1.5rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .navbar-collapse {
        background: var(--primary-black);
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
	 .about-content-row {
    flex-direction: column;
  }
  
  .tone-portrait {
    height: 350px;
  }
  
  .image-accent {
    top: auto;
    bottom: -10px;
    right: 20px;
    left: 20px;
    width: auto;
    height: 10px;
  }
  
  .about-content {
    border-left: none;
    border-top: 3px solid var(--accent-yellow);
  }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-card .icon-wrapper {
        font-size: 2rem;
    }
	 .album-card.featured {
    grid-template-columns: 1fr;
  }
  
  .album-info {
    order: 2;
  }
  
    .movie-parallax h2 {
    font-size: 2.2rem;
  }
  
  iframe {
    height: 220px;
  }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}



.home-banner {
  /* pure black background + hero image aligned to the right */
  background: var(--primary-black) url('../assets/banner.png') no-repeat right center;
  background-size: auto 100%;
  background-attachment: initial; /* prevent parallax blur on some devices */
  padding: 6rem 0 !important;
  text-align: left;
}

/* Kill the generic dark overlay for the home banner only */
.home-banner .overlay { display: none !important; }

/* Keep headings legible without overlay by giving them stronger weight/size */
.home-banner h1,
.home-banner p { text-shadow: none; }

/* Left-align content nicely and cap width */
.home-banner .container { max-width: 1200px; }
.home-banner .container .z-1 { text-align: left; }

/* Nudge the call-to-action row on desktop */
@media (min-width: 992px) {
  .home-banner .container { padding-left: 1rem; }
}

/* Mobile: fall back to a centered cover image so the face isn't cropped badly */
@media (max-width: 768px) {
  .home-banner {
    background-position: center top;
    background-size: cover;
    text-align: center;
  }
  .home-banner .container .z-1 { text-align: center; }
}


/* === Content banners redesign (client feedback) ===
   Remove dark overlay on faces, right-align crisp image like home hero.
*/
.about-banner {
  background: var(--primary-black) url('../assets/music-banner.jpg') no-repeat right center;
  background-size: auto 100%;
  background-attachment: initial;
  padding: 6rem 0 !important;
  text-align: left;
}
.about-banner .overlay { display:none !important; }
.about-banner h1 { text-shadow:none; }

.music-banner {
  background: var(--primary-black) url('../assets/music-banner.jpg') no-repeat right center;
  background-size: auto 100%;
  background-attachment: initial;
  padding: 6rem 0 !important;
  text-align: left;
}
.music-banner .overlay { display:none !important; }
.music-banner h1 { text-shadow:none; }

.movies-banner {
  background: var(--primary-black) url('../assets/movies-banner.jpg') no-repeat right center;
  background-size: auto 100%;
  background-attachment: initial;
  padding: 6rem 0 !important;
  text-align: left;
}
.movies-banner .overlay { display:none !important; }
.movies-banner h1 { text-shadow:none; }

@media (max-width:768px){
  .about-banner, .music-banner, .movies-banner {
    background-position:center top;
    background-size:cover;
    text-align:center;
  }
  .about-banner h1, .music-banner h1, .movies-banner h1 { text-align:center; }
}


/* === Content page hero redesign (match home style) === */
.about-banner,
.music-banner,
.movies-banner {
  background-color: var(--primary-black);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  padding: 6rem 0 !important;
  text-align: left;
  background-attachment: initial;
}
.about-banner { background-image: url('../assets/banner.jpg'); }
.music-banner { background-image: url('../assets/music-banner.jpg'); }
.movies-banner { background-image: url('../assets/movies-banner.jpg'); }

.about-banner .overlay,
.music-banner .overlay,
.movies-banner .overlay { display: none !important; }

@media (max-width: 768px) {
  .about-banner,
  .music-banner,
  .movies-banner {
    background-position: center top;
    background-size: cover;
    text-align: center;
  }
}
