/*
Theme Name: Bee Music Company
Template: sineflix-base
Author: VR Panghal
Version: 5.0
*/

:root{
  --accent:#ffcc00;
}

/* ================= RESET ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Inter, sans-serif;
  color:#fff;
  background:#0c0c0c;
  overflow-x:hidden;
}

.section{
  width:100%;
  padding:80px 0;
}

.section-title{
  text-align:center;
  font-size:32px;
  color:var(--accent);
  margin-bottom:50px;
}

/* ================= HEADER ================= */

.site-header{
  width:100%;
  background:#000;
  padding:18px 5%;
  border-bottom:1px solid rgba(255,204,0,.2);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:20px;
  font-weight:700;
  color:var(--accent);
}

.site-header nav a{
  color:#fff;
  margin-left:20px;
  text-decoration:none;
}

/* ================= HERO ================= */

.hero-video{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

.youtube-bg{
  position:absolute;
  top:50%;
  left:50%;
  width:120%;
  height:120%;
  transform:translate(-50%,-50%);
  z-index:0;
  pointer-events:none;
}

.youtube-bg iframe{
  width:100%;
  height:100%;
  animation:slowZoom 20s infinite alternate ease-in-out;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.75);
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 20px;
}

.hero-content h1{
  font-size:60px;
  color:var(--accent);
  margin-bottom:10px;
}

.hero-content p{
  font-size:18px;
  color:#ddd;
}

@keyframes slowZoom{
  from{ transform:scale(1); }
  to{ transform:scale(1.1); }
}

/* ================= FIRST RELEASE ================= */

.first-release-section{
  width:100%;
  height:90vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.first-release-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.first-release-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.4);
}

.first-release-gradient{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.8);
  z-index:1;
}

.first-release-wrapper{
  position:relative;
  z-index:2;
  text-align:center;
  padding:0 20px;
  max-width:800px;
}

.release-badge{
  background:var(--accent);
  color:#000;
  padding:8px 18px;
  border-radius:30px;
  font-weight:700;
  display:inline-block;
  margin-bottom:20px;
}

.first-release-wrapper h2{
  font-size:42px;
  margin-bottom:15px;
}

.first-release-wrapper p{
  font-size:16px;
  color:#ddd;
  margin-bottom:20px;
}

.btn-main{
  background:var(--accent);
  color:#000;
  padding:10px 24px;
  border-radius:6px;
  font-weight:700;
}

/* ================= FOOTER ================= */

.site-footer{
  width:100%;
  background:#000;
  padding:20px 5%;
  text-align:center;
  border-top:1px solid rgba(255,204,0,.2);
}

/* ================= MOBILE FIX ================= */

@media(max-width:768px){

  .hero-content h1{
    font-size:38px;
  }

  .song-track{
    animation:scrollSliderMobile 25s linear infinite;
  }

  .slide{
    flex:0 0 100%;
  }

  .slide img{
    height:280px;
  }

  @keyframes scrollSliderMobile{
    from{ transform:translateX(0); }
    to{ transform:translateX(-100%); }
  }

  .first-release-wrapper h2{
    font-size:28px;
  }

}

/* ================= STATS SECTION ================= */

.stats-section{
  padding:100px 5%;
  background:#111;
}

.stats-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
  text-align:center;
}

.stat-box h3{
  font-size:42px;
  color:#ffcc00;
  margin-bottom:10px;
}

.stat-box p{
  color:#aaa;
  font-size:16px;
}



/* ================= ELITE COVERFLOW ================= */

.elite-coverflow{
  width:100%;
  height:100vh;
  background:#000;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* Golden particles */

.ec-particles{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,204,0,.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,204,0,.08), transparent 40%);
  animation:particleMove 10s infinite alternate ease-in-out;
  z-index:0;
}

@keyframes particleMove{
  from{ transform:translateY(-10px); }
  to{ transform:translateY(10px); }
}

/* Header */

.ec-header{
  text-align:center;
  z-index:2;
  margin-bottom:60px;
}

.ec-header h2{
  font-size:48px;
  color:#ffcc00;
}

/* Wrapper */

.ec-wrapper{
  position:relative;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  perspective:1400px;
  z-index:2;
}

/* Track */

.ec-track{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:60px;
  transition:transform .8s cubic-bezier(.25,1.5,.5,1);
}

/* Card */

.ec-card{
  position:relative;
  width:420px;
  height:250px;
  border-radius:20px;
  overflow:hidden;
  transition:all .7s cubic-bezier(.25,1.5,.5,1);
  transform-style:preserve-3d;
  opacity:.3;
}

.ec-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Reflection */

.ec-card::after{
  content:"";
  position:absolute;
  bottom:-35%;
  left:0;
  width:100%;
  height:35%;
  background:linear-gradient(to bottom, rgba(255,255,255,.2), transparent);
  transform:scaleY(-1);
  opacity:.25;
}

/* Active */

.ec-card.active{
  transform:scale(1.25);
  opacity:1;
  z-index:5;
  box-shadow:0 40px 120px rgba(255,204,0,.6);
}

/* Side depth */

.ec-card.left-1{ transform:scale(.95) rotateY(25deg); opacity:.7; }
.ec-card.left-2{ transform:scale(.75) rotateY(40deg); opacity:.4; }
.ec-card.right-1{ transform:scale(.95) rotateY(-25deg); opacity:.7; }
.ec-card.right-2{ transform:scale(.75) rotateY(-40deg); opacity:.4; }

/* Overlay */

.ec-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:20px;
  background:linear-gradient(to top,rgba(0,0,0,.9),transparent);
  color:#fff;
}

/* Nav */

.ec-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:55px;
  height:55px;
  border-radius:50%;
  border:none;
  background:#ffcc00;
  font-size:22px;
  cursor:pointer;
  z-index:5;
}

.ec-prev{ left:6%; }
.ec-next{ right:6%; }

/* Mobile */

@media(max-width:768px){
  .ec-card{
    width:90%;
    height:200px;
  }
  .ec-track{ gap:0; }
}

/* ================= TIMELINE ================= */

.timeline-section{
  padding:120px 5%;
  background:#000;
}

.timeline{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-top:60px;
  position:relative;
}

.timeline::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  right:0;
  height:2px;
  background:#ffcc00;
}

.timeline-item{
  width:22%;
  text-align:center;
  position:relative;
}

.timeline-item span{
  display:inline-block;
  background:#ffcc00;
  color:#000;
  padding:6px 14px;
  border-radius:20px;
  font-weight:700;
  margin-bottom:10px;
}

.timeline-item p{
  color:#ccc;
}

@media(max-width:768px){

  .timeline{
    flex-direction:column;
    align-items:center;
  }

  .timeline::before{
    display:none;
  }

  .timeline-item{
    width:100%;
    margin-bottom:40px;
  }

  .ec-card{
    width:95%;
  }

  .hero-content{
    padding:0 15px;
  }

}

/* ================= SINEFLIX NETWORK ================= */

.network-section{
  padding:120px 5%;
  background:#0a0a0a;
  text-align:center;
}

.network-section h2{
  font-size:36px;
  color:#ffcc00;
  margin-bottom:15px;
}

.network-section p{
  color:#aaa;
  margin-bottom:60px;
}

.network-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.network-card{
  background:#111;
  padding:30px 20px;
  border-radius:14px;
  text-decoration:none;
  color:#fff;
  transition:all .4s ease;
  border:1px solid rgba(255,204,0,.1);
}

.network-card h3{
  margin-bottom:8px;
  font-size:18px;
  color:#ffcc00;
}

.network-card span{
  font-size:14px;
  color:#bbb;
}

.network-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(255,204,0,.25);
  border-color:#ffcc00;
}









/* ================= CINEMATIC INTRO ================= */

#bee-intro{
  position:fixed;
  inset:0;
  background:#000;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
  animation:introFade 4s forwards;
}

#bee-intro h1{
  color:#ffcc00;
  font-size:60px;
  letter-spacing:8px;
  animation:introZoom 3s ease forwards;
}

@keyframes introZoom{
  0%{transform:scale(.6);opacity:0}
  50%{transform:scale(1.1);opacity:1}
  100%{transform:scale(1);opacity:1}
}

@keyframes introFade{
  0%,80%{opacity:1}
  100%{opacity:0;visibility:hidden}
}
