:root{
  --text:#ffffff;
  --muted:#cbd5e1;
  --accent:#00e0ff;     /* cyan */
  --accent2:#a855f7;    /* purple */
  --line:rgba(255,255,255,.1);
  --radius:18px;
  --max:1100px;
  --navH: 76px; /* adjust if needed */
  /* keep your other variables */
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

html, body{
  min-height: 100%;
}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;

  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url(Images/BG.jpg) no-repeat center center;

  background-size: cover;
  background-attachment: fixed; /* makes it feel continuous */
}

/* GENERAL */

a{
  color: inherit;
  text-decoration: none;
}

section{
  scroll-margin-top: calc(var(--navH) + 20px);
}

section, main{
  scroll-margin-top: var(--navH);
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.section-divider{
  height: 1px;
  width: min(1100px, 90%);
  margin: 80px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,224,255,.5),
    rgba(168,85,247,.5),
    transparent
  );
  box-shadow: 0 0 30px rgba(0,224,255,.15);
  
}


/* ================= NAVBAR ================= */

.nav{
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--navH);
  display: flex;
  align-items: center;

  background: rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
}


.nav-inner{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0; /* important */
}


.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size: 18px;
}

.logo{
  height:48px;
  width:auto;
  display:block;
}


.links{
  display:flex;
  gap:18px;
}


.links a{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.links a.active{
  color: var(--accent2);
  font-weight: 700;
  position: relative;
}

.links a.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: var(--accent2);
  border-radius: 10px;
}


.links a:hover{
  color: var(--text);
  background: rgba(255,255,255,.08);
}

/* ===== NAV ACTIONS ===== */
.nav-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger hidden on desktop */
.hamburger{
  display:none;
  font-size:24px;
  color:white;
  margin-right: 10px;
  background:transparent;
  border:none;
  cursor:pointer;
}


/* Mobile menu panel */
.mobile-menu{
  display: none;

  position: absolute;        /* important */
  top: var(--navH);          /* start BELOW navbar */
  left: 0;
  right: 0;

  background: rgba(0,0,0,.9);
  backdrop-filter: blur(12px);

  z-index: 999;              /* above everything */
}


.mobile-menu a{
  display: block;
  padding: 14px 20px;
  color: var(--muted);
}

.mobile-menu a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.mobile-menu .mobile-book{
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}

.mobile-menu .mobile-book:hover{
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}

/* Open state */
.mobile-menu.open{
  display: block;
}


/* Animate hamburger to X when open */
.hamburger.open span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2){
  opacity: 0;
}
.hamburger.open span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}


/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:14px;
  font-weight:700;
  transition: 0.3s ease;
  cursor:pointer;
}

.btn-solid{
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
}

.btn-solid:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 224, 255, 0.3);
}

.btn-ghost{
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.12);
  color: var(--text);
}

/* ================= HERO ================= */
/* ================= HERO GRID ================= */
#home{
  scroll-margin-top: var(--navH);
}


.hero-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}


.hero-text{
  max-width: 600px;
}

.hero-image img{
  width: 75%;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
}

.hero{
  min-height: calc(100vh - var(--navH));
  display: flex;
  align-items: center;
  padding: 0;
}



.hero-inner{
  width: 100%;
  padding: 40px 0;
}


.kicker{
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

h1{
  margin: 15px 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.sub{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 55ch;
}

.hero-actions{
  margin-top: 30px;
  display:flex;
  gap:16px;
  flex-wrap: wrap;
}

/* ================= LIVE SECTION ================= */

.live-section{
  padding: 120px 0;
}

.live-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.live-video iframe{
  width: 100%;
  height: 400px;
  border-radius: 20px;
  border-color: black;
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
}

.live-text{
  max-width: 600px;
}

.live-text h2{
  font-size: 40px;
  margin: 15px 0;
}


/* ================= ABOUT BAND SECTION ================= */

.about-band{
  padding: 30px 0 100px;
}

.band-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}


.band-image img{
  width: 70%;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
}

.band-text h1{
  font-size: 56px;
  margin-bottom: 20px;
}

.band-text p{
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
}

/* ================= MEMBER SECTIONS ================= */

.member-section{
  padding: 80px 0;
}

.member-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.member-image img{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
}

.member-text h2{
  font-size: 42px;
  margin-bottom: 10px;
}

.member-text h4{
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.member-text p{
  color: var(--muted);
  font-size: 18px;
}

/* Alternate layout for second member */

.alt-layout .member-grid{
  direction: rtl;
}

.alt-layout .member-text{
  direction: ltr;
}

/* ================= PAGE HERO (re-use) ================= */
.page-hero{
  padding: 20px 0 80px;
  text-align: center;
}

.page-hero h1{
  font-size: 60px;
  margin-bottom: 20px;
}

/* ================= DISCOGRAPHY ================= */

.discography{
  padding: 40px 0 40px;
}

.discography-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.track-card{
  background: rgba(0,0,0,.45);
  border-radius: 22px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
  transition: transform .25s ease;
}

.track-card:hover{
  transform: translateY(-6px);
}

.track-card h3{
  margin-bottom: 6px;
}

.spotify-embed{
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.track-actions{
  margin-top: 20px;
  display: flex;
}

.btn-platform{
  width: 100%;
  text-align: center;
  padding: 12px 18px;
  font-weight: 700;
  border-radius: 14px;

  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: white;

  transition: 0.3s ease;
}

.btn-platform:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168,85,247,.4);
}


/* ================= SERVICES ================= */

.services{
  padding: 40px 0 130px;
}

.services-layout{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.services-content{
  display: flex;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}


.service-card{
  background: rgba(0,0,0,.45);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
  transition: transform .25s ease;
}

.service-card:hover{
  transform: translateY(-6px);
}

.service-list{
  margin: 16px 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.service-list li{
  margin: 8px 0;
}

.services-image img{
  width: 150%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
}


/* ================= BOOK PAGE ================= */

.book{
  padding: 40px 0 140px;
}

.book-simple{
  display: flex;
  justify-content: center;
}

.book-card{
  max-width: 820px;
  width: 100%;
  background: rgba(0,0,0,.45);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
}

/* Contact rows */
.contact-list{
  margin-top: 10px;
}

.contact-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-row:last-child{
  border-bottom: none;
}

.contact-left{
  color: var(--muted);
  font-size: 16px;
}

.contact-left strong{
  color: var(--accent2);
  margin-right: 8px;
  font-weight: 700;
}

.contact-right{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ================= UNIFIED CONTACT BUTTON ================= */

.btn-contact{
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: white;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  min-width: 120px;
  text-align: center;
  transition: 0.3s ease;
}

.btn-contact:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168,85,247,.4);
}



/* ================= FOOTER ================= */

.footer{
  width: 100%;
  background: rgba(0,0,0,.0.1);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 0 0;
  margin-top: 70px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.footer-brand{
  display:flex;
  justify-content:center;
}

.footer-logo{
  height: 55px;
}

.footer-contact h4{
  margin: 0 0 4px;
  color: var(--accent2);
}

.footer-contact p{
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
}

.footer-bottom{
  width: 100%;
  margin-top: 5px;
  padding: 10px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35); /* optional to match */
}


/* ================= HOVER MOTION (IMAGES + CARDS) ================= */

.hero-image img,
.band-image img,
.member-image img,
.services-image img{
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
  transform: translateZ(0); /* smoother */
  will-change: transform;
}

.hero-image img:hover,
.band-image img:hover,
.member-image img:hover,
.services-image img:hover{
  transform: translateY(-10px) scale(1.03);
  filter: brightness(1.05) saturate(1.05);
  box-shadow:
    0 30px 80px rgba(0,0,0,.65),
    0 0 35px rgba(0,224,255,.18),
    0 0 35px rgba(168,85,247,.18);
}

/* Optional: cards hover slightly too */
.track-card,
.service-card{
  transition: transform .25s ease, box-shadow .25s ease;
  will-change: transform;
}

.track-card:hover,
.service-card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 25px 70px rgba(0,0,0,.6),
    0 0 30px rgba(168,85,247,.14);
}

/* ================= TEXT REVEAL ================= */

.reveal{
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .8s ease, transform 2s ease;
}

.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

/* optional smoother typography */
h1, h2, h3{
  will-change: transform;
}


/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap:0px;
    text-align: center;
  }
}

/* ---------- Large tablets / small laptops ---------- */
@media (max-width: 1024px){

  /* HERO */
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text{
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-actions{
    justify-content: center;
  }

  .hero-image{
    display: flex;
    justify-content: center;
  }

  .hero-image img{
    width: 100%;
    max-width: 520px;
  }

  /* LIVE SECTION */
  .live-grid{
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .live-text{
    max-width: 700px;
    margin: 0 auto;
  }

  .live-video iframe{
    height: 340px;
  }

  /* ABOUT PAGE */
  .band-grid{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .band-image{
    display: flex;
    justify-content: center;
  }

  .band-image img{
    width: 100%;
    max-width: 560px;
  }

  .member-grid{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* disable the RTL flip on smaller screens */
  .alt-layout .member-grid{
    direction: ltr;
  }

  /* DISCography */
  .discography-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  /* SERVICES */
  .services-layout{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .services-image{
    display: flex;
    justify-content: center;
  }

  /* your image is 150% wide on desktop, reset it here */
  .services-image img{
    width: 100%;
    max-width: 650px;
  }

  /* PAGE HERO */
  .page-hero h1{
    font-size: 48px;
  }
}


/* ---------- Phones + small tablets ---------- */
@media (max-width: 768px){

  /* NAV (hamburger) */
  .links{ display: none; }
  .hamburger{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
  .brand-name{ display: none; }

  /* IMPORTANT: hide the desktop Book button on mobile
     (only show Book inside the mobile menu) */
  .nav-book{ display: none; }

  /* HERO */
  .hero-inner{
    padding: 30px 0;
  }

  h1{
    font-size: 40px;
  }

  .sub{
    font-size: 16px;
  }

  /* LIVE */
  .live-section{
    padding: 90px 0;
  }

  .live-video iframe{
    height: 260px;
  }

  /* DISCography */
  .discography-grid{
    grid-template-columns: 1fr;
  }

  /* SERVICES */
  .services-grid{
    grid-template-columns: 1fr;
  }

  /* BOOKING */
  .book-card{
    padding: 28px;
  }

  .contact-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .contact-right{
    width: 100%;
  }

  .btn-contact{
    width: 100%;
    min-width: 0;
  }

  /* PAGE HERO */
  .page-hero{
    padding: 20px 0 60px;
  }

  .page-hero h1{
    font-size: 38px;
  }
}


/* ---------- Very small phones ---------- */
@media (max-width: 420px){

  .container{
    padding: 0 14px;
  }

  .logo{
    height: 42px;
  }

  .btn{
    padding: 10px 14px;
    border-radius: 12px;
  }

  .hero-actions{
    gap: 10px;
  }

  .live-video iframe{
    height: 220px;
  }

  .page-hero h1{
    font-size: 32px;
  }
}

/* ================= CURSOR GLOW ================= */

/* hide default cursor on desktop only */
@media (hover: hover) and (pointer: fine){
  body{
    cursor: none;
  }


.cursor-dot,
.cursor-glow{
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0,224,255,0.95);
  box-shadow: 0 0 18px rgba(0,224,255,0.7);
}

.cursor-glow{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: radial-gradient(circle,
    rgba(168,85,247,0.35) 0%,
    rgba(0,224,255,0.18) 35%,
    rgba(0,0,0,0) 70%
  );
  filter: blur(2px);
}

@media (hover: none), (pointer: coarse){
  .cursor-dot,
  .cursor-glow{
    display: none !important;
  }
}


/* stronger glow while hovering interactive items */
body.cursor-hover .cursor-dot{
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 0 28px rgba(168,85,247,0.8);
}

body.cursor-hover .cursor-glow{
  transform: translate(-50%, -50%) scale(1.35);
  opacity: 1;
}

@media (hover: none){
  .hero-image img:hover,
  .band-image img:hover,
  .member-image img:hover,
  .services-image img:hover,
  .track-card:hover,
  .service-card:hover{
    transform: none;
    box-shadow: 0 25px 70px rgba(0,0,0,.5);
    filter: none;
  }
}
}