/* ============================================================
   NEON SKYLINE — SHARED STYLESHEET
   neonskyline.band
============================================================ */

:root {
  --hot-pink:    #ff2d78;
  --cyan:        #00f5ff;
  --electric:    #7b2fff;
  --gold:        #ffd700;
  --dark-bg:     #06060e;
  --mid-bg:      #0d0d1f;
  --surface:     #111128;
  --surface2:    #1a1a35;
  --text:        #e8e8ff;
  --text-dim:    #8888aa;
  --font-display: 'Orbitron', sans-serif;
  --font-body:    'Rajdhani', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --glow-pink:    0 0 8px var(--hot-pink), 0 0 24px var(--hot-pink), 0 0 60px rgba(255,45,120,0.4);
  --glow-cyan:    0 0 8px var(--cyan), 0 0 24px var(--cyan), 0 0 60px rgba(0,245,255,0.3);
  --glow-purple:  0 0 8px var(--electric), 0 0 24px var(--electric), 0 0 60px rgba(123,47,255,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Scanline overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.07) 2px, rgba(0,0,0,0.07) 4px);
  pointer-events: none;
  z-index: 9999;
}

/* Grid texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0,245,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(0,245,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================ NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: linear-gradient(to bottom, rgba(6,6,14,0.97) 80%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,245,255,0.08);
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0,245,255,0.5)) drop-shadow(0 0 24px rgba(255,45,120,0.3));
  transition: filter 0.3s;
}
.nav-logo img:hover {
  filter: drop-shadow(0 0 14px rgba(0,245,255,0.9)) drop-shadow(0 0 32px rgba(255,45,120,0.6));
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--hot-pink);
  transform: scaleX(0);
  transition: transform 0.3s;
  box-shadow: 0 0 6px var(--hot-pink);
}
.nav-links a:hover, .nav-links a.active { color: var(--hot-pink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-social a {
  color: var(--text-dim);
  transition: color 0.2s, filter 0.2s;
  display: flex;
  align-items: center;
}
.nav-social a:hover { color: var(--cyan); filter: drop-shadow(0 0 5px var(--cyan)); }
.nav-social a.instagram:hover { color: var(--hot-pink); filter: drop-shadow(0 0 5px var(--hot-pink)); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--cyan); transition: all 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,6,14,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--cyan); }
.close-menu {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 2rem;
  color: var(--text-dim);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================ LAYOUT */
section { position: relative; z-index: 10; padding: 100px 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.0;
  margin-bottom: 48px;
}

.title-cyan  { color: var(--cyan);     text-shadow: var(--glow-cyan); }
.title-pink  { color: var(--hot-pink); text-shadow: var(--glow-pink); }
.title-white { color: var(--text); }

.neon-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--hot-pink), transparent);
  box-shadow: 0 0 12px rgba(0,245,255,0.3);
  position: relative;
  z-index: 10;
}

/* ============================================================ BUTTONS */
.btn {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-sm { font-size: 0.6rem; padding: 10px 24px; }

.btn-primary {
  background: var(--hot-pink);
  color: var(--dark-bg);
  box-shadow: var(--glow-pink);
}
.btn-primary:hover {
  background: #ff5599;
  box-shadow: 0 0 20px var(--hot-pink), 0 0 60px rgba(255,45,120,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: var(--glow-cyan);
}
.btn-outline:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: 0 0 20px var(--cyan), 0 0 50px rgba(0,245,255,0.4);
  transform: translateY(-2px);
}

.btn-outline-pink {
  background: transparent;
  color: var(--hot-pink);
  border: 1px solid var(--hot-pink);
  box-shadow: var(--glow-pink);
}
.btn-outline-pink:hover {
  background: rgba(255,45,120,0.1);
  transform: translateY(-2px);
}

/* ============================================================ CORNER ACCENTS */
.corner-tl, .corner-br, .corner-tr, .corner-bl {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.corner-tl { top: -1px; left: -1px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.corner-tr { top: -1px; right: -1px; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--hot-pink); border-right: 2px solid var(--hot-pink); }
.corner-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--hot-pink); border-left: 2px solid var(--hot-pink); }

/* ============================================================ REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================ FOOTER */
footer {
  background: #03030a;
  border-top: 1px solid rgba(0,245,255,0.1);
  padding: 52px 32px 36px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-logo img {
  height: 64px;
  width: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 10px rgba(0,245,255,0.4)) drop-shadow(0 0 20px rgba(255,45,120,0.25));
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

.footer-social {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-social a {
  color: var(--text-dim);
  transition: color 0.2s, filter 0.2s;
  display: flex;
}
.footer-social a:hover { color: var(--cyan); filter: drop-shadow(0 0 5px var(--cyan)); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: rgba(136,136,170,0.35);
}

/* ============================================================ PAGE HERO (inner pages) */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--mid-bg);
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(255,45,120,0.12), transparent);
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.page-hero-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--text-dim);
  margin-top: 16px;
  position: relative;
  z-index: 2;
}
