/* ==========================================================================
   VEXXEK — style.css
   Cyber Symphonic Industrial Rock — hand-written replacement for the
   Nicepage-generated stylesheet. One file, no framework, no jQuery.
   ========================================================================== */

:root {
  /* -- Color tokens -- */
  --bg: #0a0b0d;
  --surface: #15181d;
  --surface-2: #1c2027;
  --border: #2b3038;
  --text: #e8eaed;
  --text-muted: #8b93a1;
  --accent-hot: #ff5500;   /* industrial / circuit orange */
  --accent-cool: #7c6cff;  /* symphonic violet */

  /* -- Type -- */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -- Focus visibility (accessibility floor) -- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-hot);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span { color: var(--accent-hot); }

.site-nav { display: flex; gap: 28px; }

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--text); }

/* -- Hamburger toggle (mobile only, pure CSS, no JS) -- */
.nav-toggle { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

@media (max-width: 640px) {
  .nav-burger { display: flex; }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
  }

  .nav-toggle:checked ~ .site-nav {
    max-height: 260px;
  }

  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -- Image banner: logo + tagline over cyberpunk cityscape -- */
.hero-banner {
  background-image:
    linear-gradient(to right, rgba(10,11,13,0.94) 0%, rgba(10,11,13,0.75) 30%, rgba(10,11,13,0.35) 65%, rgba(10,11,13,0.15) 100%),
    url("images/vexbg_aug2026.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.hero-banner-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 24px;
  min-height: 280px;
}

.hero-logo {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--accent-cool);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 12px 32px rgba(0,0,0,0.55);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-copy { text-align: left; max-width: 640px; }

.hero-banner-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1rem, 2.1vw, 1.3rem);
  line-height: 1.5;
  color: #f4f5f7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  margin: 0 0 12px;
}

.hero-hashtags {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent-cool);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  margin: 0;
}

@media (max-width: 640px) {
  .hero-banner-inner { flex-direction: column; text-align: center; padding: 32px 20px; }
  .hero-logo { width: 140px; height: 140px; }
  .hero-banner-copy { text-align: center; }
}

/* -- Tags / pulse / platform links strip below the banner -- */
.hero-actions { padding: 40px 0 56px; }

.eyebrow-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-cool);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.hero-tagline {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* -- Signature element: an equalizer / signal pulse -- */
.pulse-bar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 44px;
  margin: 0 auto 40px;
}

.pulse-bar span {
  width: 5px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--accent-hot), var(--accent-cool));
  animation: pulse 1.4s ease-in-out infinite;
}

.pulse-bar span:nth-child(1) { height: 30%; animation-delay: -1.2s; }
.pulse-bar span:nth-child(2) { height: 70%; animation-delay: -0.9s; }
.pulse-bar span:nth-child(3) { height: 100%; animation-delay: -0.6s; }
.pulse-bar span:nth-child(4) { height: 55%; animation-delay: -0.3s; }
.pulse-bar span:nth-child(5) { height: 85%; animation-delay: -1.05s; }
.pulse-bar span:nth-child(6) { height: 40%; animation-delay: -0.15s; }
.pulse-bar span:nth-child(7) { height: 65%; animation-delay: -0.75s; }

@keyframes pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* -- Platform links -- */
.platform-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.platform-links a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 18px;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.platform-links a:hover {
  border-color: var(--accent-hot);
  color: var(--accent-hot);
  transform: translateY(-2px);
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */

section { padding: 64px 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin: 0 0 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
}

/* ==========================================================================
   Listen (SoundCloud embed)
   ========================================================================== */

.listen {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.listen-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.listen-embed iframe {
  width: 90%;
  margin: 0 auto;      /* center */	  
  height: 400px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Watch (Youtube embed)
   ========================================================================== */
   
   
.watch-embed {
  width: 90%; /* about 20% smaller */
  max-width: 600px;	
  margin: 0 auto;      /* center */	
	
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.watch-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.xxwatch-embed {
width: 80%; /* about 20% smaller */
max-width: 900px;
margin: 0 auto;
aspect-ratio: 16 / 9;
}
 
.xxxwatch-embed iframe {
width: 100%;
height: 100%;
border: 0;
}
 
@XXmedia (max-width: 768px) {
.watch-embed {
width: 100%;
}
}

/* ==========================================================================
   Album gallery
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption,
.gallery-item .gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 8px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover figcaption,
.gallery-item:hover .gallery-caption,
.gallery-item:focus-within figcaption,
.gallery-item:focus .gallery-caption { opacity: 1; }

/* -- Lightbox: pure CSS, no JS. Each thumbnail links to a hidden
   full-screen overlay by id; :target reveals it; clicking anywhere
   (background or image) re-links to "#" and closes it. -- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(6, 7, 9, 0.94);
  cursor: zoom-out;
}

.lightbox:target { display: flex; }

.lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 88vh;
  width: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface-2);
}

.about-card p { margin: 0; color: var(--text-muted); }

.about-card .mark { color: var(--accent-hot); font-family: var(--font-mono); }

@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 48px 0;
  text-align: center;
}

.footer-tags {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.footer-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.footer-credit a {
  color: var(--accent-cool);
  border-bottom: 1px solid transparent;
}

.footer-credit a:hover { border-bottom-color: var(--accent-cool); }

.contact-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent-hot);
  border-radius: 999px;
  padding: 12px 26px;
  transition: opacity 0.2s ease;
}

.contact-btn:hover { opacity: 0.85; }
