*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:#000;
  color:white;
  overflow-x:hidden;
}

/* HEADER */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 5%;
  background:linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  width:170px;
  height:auto;
  display:block;
}

/* NAVIGATION */

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  transition:0.3s;
}

.nav-links a:hover{
  opacity:0.7;
}

/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:
    linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.58)),
    url('../images/hero.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
  padding:180px 20px 40px;
}

.hero h1{
  font-size:72px;
  line-height:1.1;
  margin-bottom:20px;
  font-weight:800;
  letter-spacing:2px;
}

.tagline{
  font-size:24px;
  font-weight:700;
  margin-bottom:20px;
  color:#f1f1f1;
}

.intro{
  font-size:20px;
  line-height:1.7;
  margin-bottom:40px;
  color:#d7d7d7;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn,
.section-btn{
  display:inline-block;
  padding:16px 34px;
  border-radius:50px;
  background:white;
  color:black;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.btn:hover,
.section-btn:hover{
  transform:translateY(-3px);
}

.btn-outline{
  background:transparent;
  border:2px solid white;
  color:white;
}

.btn-outline:hover{
  background:white;
  color:black;
}

/* SECTIONS */

section{
  padding:120px 20px;
  position:relative;
}

.section-container{
  max-width:1000px;
  margin:auto;
  text-align:center;
  position:relative;
  z-index:2;
}

section h2{
  font-size:48px;
  margin-bottom:30px;
}

section p{
  font-size:20px;
  line-height:1.8;
  color:#d0d0d0;
  margin-bottom:25px;
}

/* BACKGROUND IMAGE SECTIONS */

.about-section{
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
    url('../images/about-bg.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.music-section{
  background:#111;
}

.videos-section{
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
    url('../images/performance-bg.png');
  background-size:cover;
  background-position:top;
  background-repeat:no-repeat;
}

.merch-section{
  background:
    linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.82)),
    url('../images/merch-bg.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.tour-section{
  background:#0a0a0a;
}

.contact-section{
  background:#111;
}

/* MUSIC LINKS */

.music-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
  margin-top:40px;
}

.music-links a{
  padding:16px 28px;
  border:2px solid white;
  border-radius:50px;
  color:white;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.music-links a:hover{
  background:white;
  color:black;
}

/* FOOTER */

.footer{
  padding:50px 20px;
  text-align:center;
  background:black;
}

.footer p{
  color:#999;
  margin:8px 0;
}

/* TABLET */

@media(max-width:900px){
  .site-header{
    flex-direction:column;
    gap:18px;
    padding:18px 5%;
  }

  .logo img{
    width:150px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
  }

  .hero h1{
    font-size:52px;
  }

  .tagline{
    font-size:20px;
  }

  .intro{
    font-size:17px;
  }
}

/* MOBILE */

@media(max-width:700px){
  section{
    padding:90px 20px;
  }

  section h2{
    font-size:34px;
  }

  section p{
    font-size:17px;
  }
}

@media(max-width:600px){
  .hero{
    background-position:65% center;
  }

  .hero-content{
    padding-top:220px;
  }

  .hero h1{
    font-size:40px;
  }

  .tagline{
    font-size:17px;
  }

  .intro{
    font-size:16px;
  }

  .nav-links{
    gap:12px;
  }

  .nav-links a{
    font-size:11px;
  }

  .logo img{
    width:130px;
  }

  .btn{
    width:100%;
    max-width:260px;
  }
}

/* =========================
   TOUR WIDGET
========================= */

.tour-widget-box{
  max-width:900px;
  margin:40px auto 0;
  padding:25px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(230,95,33,0.45);
  border-radius:22px;
  box-shadow:0 20px 60px rgba(0,0,0,0.45);
  overflow:hidden;
}

.tour-widget-scroll{
  max-height:720px;
  overflow-y:auto;
  padding-right:8px;
}

.bit-widget{
  font-family:Arial, Helvetica, sans-serif !important;
}

/* =========================
   FEATURED SONG
========================= */

.featured-song-section{
  background:
  linear-gradient(
    to bottom,
    #f5f5f5,
    #e8e8e8
  );

  color:#111;
}
.spotify-player{
  max-width:900px;
  margin:40px auto 0;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.45);
}
.featured-song-section p{
  color:#222;
}

.social-icons{
display:flex;
justify-content:center;
gap:28px;
margin-bottom:25px;
flex-wrap:wrap;
align-items:center;
}

.social-icons a{
display:flex;

align-items:center;
justify-content:center;

width:42px;
height:42px;

color:white !important;

text-decoration:none !important;

font-size:28px;

transition:.3s;

-webkit-tap-highlight-color:transparent;
}

.social-icons a:visited{
color:white;
}

.social-icons a:hover{
color:#f08c28;
transform:translateY(-3px);
}

.social-icons a i{
pointer-events:none;
}

/* =========================
   MOBILE HAMBURGER MENU - FIXED
========================= */

.mobile-menu-toggle{
  display:none;
  width:44px;
  height:44px;
  background:rgba(0,0,0,0.65);
  border:1px solid rgba(255,255,255,0.35);
  border-radius:8px;
  cursor:pointer;
  position:relative;
  z-index:3000;
}

.mobile-menu-toggle span{
  position:absolute;
  left:10px;
  width:22px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:0.25s ease;
}

.mobile-menu-toggle span:nth-child(1){
  top:13px;
}

.mobile-menu-toggle span:nth-child(2){
  top:21px;
}

.mobile-menu-toggle span:nth-child(3){
  top:29px;
}

@media(max-width:900px){
  .site-header{
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    padding:14px 5% !important;
  }

  .mobile-menu-toggle{
    display:block;
  }

  .nav-links{
    position:fixed;
    top:72px;
    right:16px;
    width:220px;
    display:none !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:0 !important;
    padding:14px;
    background:rgba(0,0,0,0.96);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:14px;
    box-shadow:0 20px 50px rgba(0,0,0,0.6);
    z-index:2500;
  }

  .nav-links.active{
    display:flex !important;
  }

  .nav-links a{
    width:100%;
    padding:13px 8px;
    font-size:12px !important;
  }

  .mobile-menu-toggle.active span:nth-child(1){
    top:21px;
    transform:rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2){
    opacity:0;
  }

  .mobile-menu-toggle.active span:nth-child(3){
    top:21px;
    transform:rotate(-45deg);
  }
}