
:root{
  --bg:#0b0b0b;
  --panel:#121212;
  --text:#e8e8e8;
  --muted:#9a9a9a;
  --accent:#ff3b3b;
  --border:#262626;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Inter,Arial,sans-serif;
  line-height:1.5;
}

.next-gig-bar{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(90deg,#1a1a1a, #1a1a1a);
  border-bottom:1px solid var(--border);
  padding:10px 16px; text-align:center;
  color:var(--text);
}

.nav{
  position:sticky; top:42px; z-index:40;
  backdrop-filter:saturate(120%) blur(6px);
  background:rgba(10,10,10,.8);
  border-bottom:1px solid var(--border);
}

.nav-inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 16px;

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

  position:relative;
}

html{
  scroll-behavior:smooth;
}

.navlinks{
  display:flex;
  gap:28px;
  justify-content:center;
}

.nav-socials{
  position:absolute;
  right:16px;

  display:flex;
  gap:14px;
}

.nav-socials img{
  width:20px;
  height:20px;
  filter:brightness(0) invert(1);
  opacity:.7;
  transition:all .2s ease;
}

.nav-socials img:hover{
  opacity:1;
  transform:scale(1.15);
  filter:brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,0,0,.6));
}

.nav a{
  color:var(--text);
  text-decoration:none;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.8;
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:width .2s ease;
}

.nav a:hover{
  opacity:1;
  color:#fff;
}

.nav a:hover::after{
  width:100%;
}

.hero{
  position:relative;
  min-height:80vh;
  display:grid; place-items:center;
  padding:40px 16px;
}

.hero::before{
  content:""; position:absolute; inset:0;
    background:
      radial-gradient(500px 250px at 50% 35%, rgba(255,40,40,.45), transparent 65%),
      radial-gradient(900px 500px at 50% 70%, rgba(255,0,0,.15), transparent 70%);
  pointer-events:none;
}

.hero-inner{
  max-width:900px; text-align:center;
}

.hero-logo{
  width:100%; max-width:720px;
}

.hero-tag{
  margin:18px 0 8px; color:var(--muted);
}

.countdown{
  margin-top:16px; color:var(--accent); font-weight:600;
}

.hero-monkey{
  position:absolute;
  top:80px;
  left:5%;
  width:320px;
  opacity:1;
  filter:drop-shadow(0 10px 30px rgba(0,0,0,0.6));
  z-index:2;

  transform:rotate(-3deg);  /* ← add this line */
}

.section h2{
  max-width:1100px;
  margin:48px auto 12px;
  padding:0 16px;
  font-size:28px;
  font-weight:600;
}

.gig-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px;

  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gig-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,59,59,.4);
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.gig-date{ color:#fff; font-weight:600; margin-bottom:6px}
.gig-venue{ color:var(--text)}
.gig-city{ color:var(--muted); font-size:14px}

.map-link{
  display:inline-block;
  margin-top:10px;
  font-size:13px;
  color:var(--accent);
  text-decoration:none;
}

.map-link:hover{
  text-decoration:underline;
}

.video-grid iframe{
  width:100%;
  aspect-ratio:16/9;
  height:auto;
  border:0;
  border-radius:10px;
  transition:transform .2s ease, box-shadow .2s ease;
}

.video-grid iframe:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 30px rgba(255,0,0,.25);
}
.gig-cards,
.video-grid,
.gallery-grid{
  max-width:1100px;
  margin:16px auto 0;
  padding:0 16px;
  display:grid;
  gap:16px;
}

.gallery-grid img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  transition:transform .25s ease, filter .25s ease, box-shadow .25s ease;
  filter:brightness(.95);
}

.gallery-grid img:hover{
  transform:translateY(-4px) scale(1.03);
  filter:brightness(1.05);
  box-shadow:0 12px 30px rgba(255,0,0,.2);
}

.lightbox{
  display:none; position:fixed; inset:0; z-index:100;
  background:rgba(0,0,0,.92);
  justify-content:center; align-items:center;
}
.lightbox img{ max-width:92%; max-height:92%; border-radius:10px}
.lightbox-close{
  position:absolute; top:18px; right:28px; font-size:34px; cursor:pointer; color:#fff; opacity:.8;
}
.lightbox-close:hover{opacity:1}

@media (max-width:900px){
  .hero-monkey{ width:200px; right:2%}
}

.email-link,
.phone-link{
  display:block;
  text-align:left;
  margin-top:10px;
}

.email-link{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}

.phone-link{
  color:#aaa;
}

.phone-link:hover{
  opacity:1;
}

@media (max-width:900px){

  .hero{
    padding-top:120px;
  }

  .hero-monkey{
    position:relative;
    top:auto;
    left:auto;
    width:180px;
    margin:20px auto 0;
    display:block;
  }

  .hero-logo{
    max-width:90%;
  }

}

@media (max-width:700px){

  .nav-inner{
    flex-direction:column;
    gap:10px;
  }

  .nav-socials{
    position:static;       /* 👈 removes absolute positioning */
    display:flex;
    justify-content:center;
    margin-top:6px;
  }

}

.socials{
  margin-top:24px;
  display:flex;
  justify-content:flex-start;   /* aligns with text */
  align-items:center;
  gap:20px;
}

.gig-cards{
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

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

.socials{
  margin-top:20px;
  display:flex;
  gap:16px;
}

.socials img{
  width:28px;
  height:28px;
  filter:brightness(0) invert(1);
  opacity:.8;
  transition:transform .2s ease, opacity .2s ease;
}

.socials img:hover{
  opacity:1;
  transform:scale(1.1);
  filter:brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,0,0,.6));
}

.gallery-grid{
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

.section{
  padding:60px 0;
}

.section + .section{
  margin-top:20px;
}

body{
  padding-bottom:120px;
}
