/* ============================================================
   DJ Dub Daze — v0.1 Prototype
   Mobile-first, dark theme, system fonts
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --bg-card: #1a1a1a;
  --text: #f5f5f5;
  --text-soft: #999;
  --text-muted: #666;
  --accent: #ff3366;
  --accent-hover: #ff5577;
  --accent-soft: rgba(255, 51, 102, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --max-w: 1100px;
  --shadow-glow: 0 8px 32px rgba(255, 51, 102, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
}

/* ===== Skip link (a11y) ===== */
.skip {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  z-index: 100;
  transition: top 0.2s;
}
.skip:focus {
  top: 8px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  z-index: 50;
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.logo img {
  width: 44px;
  height: 44px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img,
.logo:focus-visible img {
  transform: rotate(15deg);
  filter: drop-shadow(0 4px 12px rgba(255, 153, 51, 0.45));
}

@media (max-width: 600px) {
  .logo img { width: 38px; height: 38px; }
}

.site-header nav ul {
  display: flex;
  list-style: none;
  gap: 18px;
}

.site-header nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 6px 0;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--accent);
}

@media (max-width: 600px) {
  .site-header { padding: 8px 14px; }
  .site-header nav ul { gap: 14px; }
  .site-header nav a { font-size: 0.78rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100dvh - 60px);
  display: flex;
  align-items: center;
  padding: 60px 20px 80px;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: -10%;
  z-index: 0;
  filter: blur(60px) saturate(120%);
  opacity: 0.85;
  pointer-events: none;
}
.hero-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3rem, 14vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-tag {
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--text-soft);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: 2px solid var(--accent);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s;
}
.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.cta-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.cta-ghost:hover,
.cta-ghost:focus-visible {
  background: var(--bg-soft);
  border-color: var(--text);
  color: var(--text);
  box-shadow: none;
}

/* ===== Sections ===== */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 20px;
  border-top: 1px solid var(--border);
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
}

.section p {
  max-width: 65ch;
  font-size: 1.02rem;
  color: var(--text-soft);
}

/* ===== Sound — Links ===== */
.links {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.links a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 16px;
  text-decoration: none;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.links a:hover,
.links a:focus-visible {
  border-color: var(--accent);
  background: var(--bg-soft);
  transform: translateX(4px);
}
.link-label {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  grid-column: 1;
}
.link-detail {
  display: block;
  font-size: 0.85rem;
  color: var(--text-soft);
  grid-column: 1;
}
.link-arrow {
  grid-row: span 2;
  grid-column: 2;
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.2s;
}
.links a:hover .link-arrow {
  transform: translateX(4px);
}

/* ===== Live — Gigs ===== */
.gigs {
  list-style: none;
  margin-top: 24px;
  margin-bottom: 32px;
}
.gigs li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.gigs li:last-child {
  border-bottom: none;
}
.gigs .when {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 110px;
  font-size: 0.95rem;
}
.gigs .what {
  color: var(--text);
  flex: 1;
  font-size: 1rem;
}

.cta-line {
  margin-top: 12px;
}
.cta-line a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
}
.cta-line a:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ===== Booking ===== */
.booking .lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 60ch;
}
.emails {
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 600px;
}
.emails li {
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.emails li:hover {
  border-color: var(--border-strong);
}
.emails strong {
  display: block;
  color: var(--text-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  font-weight: 700;
}
.emails a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  word-break: break-all;
}
.emails a:hover {
  color: var(--accent);
}
.emails .discreet {
  opacity: 0.55;
}
.emails .discreet:hover {
  opacity: 0.85;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 20px;
  text-align: center;
  margin-top: 60px;
  color: var(--text-soft);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
footer small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.env-tag {
  margin-top: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0.5;
}

/* ===== Reveal animations on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Print ===== */
@media print {
  body { background: white; color: black; }
  .site-header, .hero-art, footer .env-tag { display: none; }
  .section { page-break-inside: avoid; }
}
