/* ─────────────────────────────────────────────
   DJ AOBlaze – Main Stylesheet
   Theme: Dark neon / EDM / Electric blue + fire
   ───────────────────────────────────────────── */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:      #00aaff;
  --blue-dim:  #0066cc;
  --cyan:      #00e5ff;
  --orange:    #ff6600;
  --purple:    #8800ff;
  --bg:        #05050f;
  --bg2:       #0a0a1a;
  --surface:   rgba(0, 170, 255, 0.06);
  --border:    rgba(0, 170, 255, 0.2);
  --text:      #e8eaf6;
  --muted:     #7986cb;
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --glow-blue: 0 0 12px #00aaff, 0 0 30px #0066cc;
  --glow-orange: 0 0 12px #ff6600, 0 0 30px #cc4400;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 3px; }

/* ── UTILITY ── */
.glow-text {
  text-shadow: var(--glow-blue);
  color: var(--cyan);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 170, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 170, 255, 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  box-shadow: inset 0 0 0 0 var(--cyan);
}
.btn-outline:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(5, 5, 15, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}
.nav-logo span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cyan);
  transition: width var(--transition);
  box-shadow: var(--glow-blue);
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cyan);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  background: rgba(5, 5, 15, 0.95);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--cyan); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../DJAoblaze_Background.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.4);
  transform: scale(1.05);
  z-index: 0;
}

#particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Dark vignette overlay */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5,5,15,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 6px rgba(0,170,255,0.1), 0 0 40px rgba(0,170,255,0.5), 0 0 80px rgba(0,100,200,0.3);
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(0,170,255,0.1), 0 0 40px rgba(0,170,255,0.5), 0 0 80px rgba(0,100,200,0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(0,170,255,0.15), 0 0 60px rgba(0,170,255,0.7), 0 0 100px rgba(0,100,200,0.4); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.title-dj {
  color: var(--muted);
  font-size: 0.45em;
  display: block;
  letter-spacing: 0.4em;
  margin-bottom: 0.1em;
  text-shadow: 0 0 8px rgba(121,134,203,0.5);
}

.title-ao {
  color: var(--cyan);
  text-shadow: 0 0 15px var(--cyan), 0 0 40px var(--blue);
  animation: glowPulse 2.5s ease-in-out infinite alternate;
}

.title-blaze {
  color: var(--orange);
  text-shadow: 0 0 15px var(--orange), 0 0 40px #cc4400;
  animation: glowPulse2 2.5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { text-shadow: 0 0 15px var(--cyan), 0 0 40px var(--blue); }
  to   { text-shadow: 0 0 25px var(--cyan), 0 0 70px var(--blue), 0 0 100px var(--purple); }
}

@keyframes glowPulse2 {
  from { text-shadow: 0 0 15px var(--orange), 0 0 40px #cc4400; }
  to   { text-shadow: 0 0 25px var(--orange), 0 0 70px #cc4400, 0 0 100px #ff9900; }
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(0,170,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ── SECTIONS COMMON ── */
section:not(#hero) {
  padding: 6rem 1.5rem;
  position: relative;
}

#music   { background: var(--bg); }
#connect { background: var(--bg2); }

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ── MUSIC ── */
.track-grid {
  width: 100%;
  margin-top: 1.5rem;
}

.track-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.track-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(0,170,255,0.15);
}

.track-embed {
  width: 100%;
  background: #000;
}
.track-embed iframe {
  width: 100%;
  height: 252px;
  border: none;
  display: block;
}

.track-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.track-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.track-info h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.track-link {
  font-size: 0.85rem;
  color: var(--blue);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.track-link:hover { color: var(--cyan); }

.audiomack-cta {
  margin-top: 2.5rem;
}

/* ── CONNECT ── */
.social-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.social-card:hover {
  transform: translateY(-4px);
}

.social-card.instagram:hover {
  border-color: #e1306c;
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.25);
}
.social-card.tiktok:hover {
  border-color: #69c9d0;
  box-shadow: 0 8px 30px rgba(105, 201, 208, 0.25);
}
.social-card.audiomack:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.25);
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-icon svg { width: 26px; height: 26px; }

.instagram .social-icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.tiktok .social-icon {
  background: #010101;
  color: #69c9d0;
  border: 1px solid #69c9d0;
}
.audiomack .social-icon {
  background: rgba(255,102,0,0.15);
  color: var(--orange);
  border: 1px solid var(--orange);
}

.social-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.social-platform {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.social-handle {
  font-size: 0.85rem;
  color: var(--muted);
}

.social-arrow {
  font-size: 1.2rem;
  color: var(--border);
  transition: color var(--transition), transform var(--transition);
}
.social-card:hover .social-arrow {
  color: var(--cyan);
  transform: translateX(4px);
}

/* ── FOOTER ── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-dim);
  opacity: 0.8;
}
.footer-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .hero-avatar { width: 140px; height: 140px; }
  .hero-cta { flex-direction: column; align-items: center; }

  .btn { font-size: 0.72rem; padding: 0.7rem 1.4rem; }

  section:not(#hero) { padding: 4rem 1.25rem; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0.9rem 1.25rem; }
  .nav-logo span { font-size: 0.85rem; }
  .social-grid { grid-template-columns: 1fr; }
}
