:root {
  --black: #0a0a0a;
  --yellow: #f7d300;
  --red: #e6392d;
  --grey: #1f1f1f;
  --light-grey: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background-color: var(--black);
  color: #ddd;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(247, 211, 0, 0.1);
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), 
              url('images/IMG_7464\ \(1\).jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -4px;
}

.hero p {
  font-size: 1.4rem;
  color: #aaa;
  margin-bottom: 2.5rem;
}

.cta-button {
  background: var(--yellow);
  color: black;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: white;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(247, 211, 0, 0.4);
}

/* Section Styling */
section {
  padding: 100px 5%;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--yellow);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--yellow), var(--red));
}

/* About */
.about {
  background: var(--grey);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

.about-text p {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

/* Music Carousel */
.music {
  background: var(--black);
}

.carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: 20px;
}

.slides {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.track-card {
  flex: 0 0 340px;
  background: var(--light-grey);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.track-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(230, 57, 45, 0.35);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 ratio */
    background: #000;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hover effect */
.track-card:hover .video-container iframe {
    filter: brightness(1.08);
}

.youtube-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.track-cover {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.youtube-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-cover .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 0, 0, 0.9);
  color: white;
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 2;
}

.track-cover .play-btn:hover {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6);
}

/* Remove the old conflicting .play-btn rule at the bottom */

.track-info {
  padding: 1.5rem;
}

.track-info h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.track-info p {
  color: #888;
  font-size: 0.95rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(247, 211, 0, 0.9);
  color: black;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -28px; }
.carousel-btn.next { right: -28px; }

/* Platform Links */
.platform-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.platform-links a {
  color: #aaa;
  font-size: 1.35rem;
  transition: all 0.3s ease;
}

.platform-links a:hover {
  color: var(--yellow);
  transform: translateY(-3px) scale(1.15);
}

/* Specific brand colors on hover */
.platform-links a[href*="spotify"]:hover { color: var(--yellow); }
.platform-links a[href*="apple"]:hover { color: var(--yellow); }
.platform-links a[href*="youtube"]:hover { color: var(--yellow);}
.platform-links a[href*="soundcloud"]:hover { color:var(--yellow); }
.platform-links a[href*="boomplay"]:hover { color: var(--yellow); }
.platform-links a[href*="audiomack"]:hover { color: var(--yellow); }
.platform-links a[href*="deezer"]:hover { color: var(--yellow); }

.gallery {
  background: var(--grey);
  padding: 100px 5% 140px;
}

.gallery-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #bbb;
  font-size: 1.2rem;
}

.gallery-box {
  width: 100%;
  max-width: 900px;
  height: 620px;
  margin: 0 auto;
  background: #0a0a0a;
  border: 14px solid #222;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.artwork {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  border: 5px solid  var(--yellow);
  transform: translate(-50%, -50%);
  opacity: 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  animation: artMove 16s linear infinite;
  transition: transform 0.5s ease, box-shadow 0.4s ease, z-index 0.1s;
  z-index: 1;
}

.artwork:nth-child(1) { animation-delay: 0s; }
.artwork:nth-child(2) { animation-delay: 4s; }
.artwork:nth-child(3) { animation-delay: 8s; }
.artwork:nth-child(4) { animation-delay: 12s; }

@keyframes artMove {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(180px, 120px);
  }
  15% {
    opacity: 1;
    transform: translate(-50%, -50%) translate(160px, -60px);
  }
  40% {
    transform: translate(-50%, -50%) translate(100px, -140px);
  }
  65% {
    transform: translate(-50%, -50%) translate(-120px, -110px);
  }
  85% {
    opacity: 1;
    transform: translate(-50%, -50%) translate(-170px, 40px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(-190px, 150px);
  }
}

/* Media styling */
.artwork img,
.artwork video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HOVER EFFECT - FIXED */
.artwork:hover {
  z-index: 30;                    /* Bring to front */
  transform: translate(-50%, -50%) scale(1.28);   /* Enlarge */
  animation-play-state: paused;   /* Pause floating */
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.85);
}

.artwork:hover img,
.artwork:hover video {
  transform: scale(1.1);
}

/* Caption */
.artwork p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
  text-align: center;
  padding: 12px 8px 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}
/* Tour */
.tour {
  background: var(--grey);
}

.event-card {
  background: var(--light-grey);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.event-card:hover {
  background: #2a2a2a;
  border-left: 5px solid var(--red);
}

.event-date {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

/* Footer */
footer {
  background: #050505;
  padding: 80px 5% 40px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.social-links a {
  color: #ddd;
  font-size: 1.8rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--yellow);
}

/* Responsive */
@media (max-width: 1024px) {
  .track-card { flex: 0 0 300px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3.8rem; }
  .about-content { grid-template-columns: 1fr; }
  .nav-links { gap: 1.5rem; font-size: 0.95rem; }
  .track-card { flex: 0 0 280px; }
  .marquee-content img { width: 240px; height: 240px; }
  .gallery-box { height: 520px; }
  .artwork { width: 220px; height: 220px; }
}
.footer {
  background: #050505;
  padding: 70px 5% 30px;
  text-align: center;
  border-top: 1px solid rgba(247, 211, 0, 0.15);
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.footer-tagline {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 30px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.footer-socials a {
  color: #bbb;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: var(--yellow);
  transform: translateY(-4px) scale(1.2);
}

/* Brand hover colors */
.footer-socials a:hover .fa-instagram { color: var(--yellow); }
.footer-socials a:hover .fa-twitter { color: var(--yellow); }
.footer-socials a:hover .fa-youtube { color:var(--yellow); }
.footer-socials a:hover .fa-tiktok { color: var(--yellow); }

.footer-copy {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}
@media (max-width: 1024px) {

  /* Navbar */
  nav {
    padding: 1rem 4%;
  }

  .nav-links {
    gap: 1.5rem;
    font-size: 0.95rem;
  }

  /* Hero */
  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  /* Sections */
  section {
    padding: 80px 4%;
  }

  /* About */
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  /* Music */
  .track-card {
    flex: 0 0 280px;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  /* Gallery */
  .gallery-box {
    height: 500px;
  }

  .artwork {
    width: 220px;
    height: 220px;
  }

  /* Footer */
  .footer-logo {
    font-size: 2rem;
  }

  .footer-socials {
    gap: 20px;
  }
}
@media (max-width: 768px) {

  /* Navbar */
  nav {
    flex-direction: column;
    gap: 10px;
    padding: 1rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* Hero */
  .hero {
    height: 90vh;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  /* Section Titles */
  .section-title {
    font-size: 2rem;
  }

  /* About */
  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  /* Music */
  .carousel-btn {
    display: none; /* cleaner mobile UX */
  }

  .slides {
    gap: 1rem;
  }

  .track-card {
    flex: 0 0 85%;
  }

  .track-info {
    padding: 1rem;
  }

  /* Gallery */
  .gallery-box {
    height: 400px;
    border-width: 8px;
  }

  .artwork {
    width: 160px;
    height: 160px;
    border-width: 3px;
  }

  .artwork p {
    font-size: 12px;
  }

  /* Tour */
  .event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .event-date {
    font-size: 1.6rem;
  }

  /* Footer */
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-logo {
    font-size: 1.6rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .footer-socials a {
    font-size: 1.4rem;
  }

  .footer-copy {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {

  .hero h1 {
    font-size: 2.2rem;
  }

  .track-card {
    flex: 0 0 100%;
  }

  .gallery-box {
    height: 340px;
    padding:70px;
  }

  .artwork {
    width: 130px;
    height: 130px;
    margin-top: 50px;
  }
    .slides {
    flex-direction: column;   /* 👈 stack vertically */
    align-items: center;      /* optional: center cards */
  }

  .track-card {
    flex: none;
    width: 100%;              /* full width */
    max-width: 320px;         /* optional: control size */
  }

  .carousel-container {
    overflow: visible;        /* 👈 prevent clipping */
  }
    .gallery-box {
    height: 400px;              /* allow it grow */
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 per row */
    gap: 10px;
    overflow: hidden;          /* keep everything inside */
  }


  .artwork:hover {
    transform: scale(1.05);    /* smaller hover */
  }


}