/* DJ J Nas — shared styles for every page.
   Extracted from the original inline <style> blocks so the landing, contact
   and privacy pages (EN + NL) stay visually identical without duplication. */

:root {
  --bg: #070707;
  --card: rgba(255, 255, 255, 0.05);
  --surface: rgba(255, 255, 255, 0.05);
  --text: #ffffff;
  --muted: #d8d8d8;
  --accent: #ff52af;
  --accent-2: #ff8ad4;
  --border: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }

/* ---------------------------------------------------------------- aurora */
/* Drifting gradient blobs behind the page — the Framer-ish look without
   React or a motion library. Animates transform/opacity only, so it stays on
   the compositor and costs no layout work. Purely decorative: aria-hidden,
   and switched off entirely under prefers-reduced-motion. */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg);
}

.aurora span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.9;
  will-change: transform;
}

.aurora .a1 {
  width: 46vmax;
  height: 46vmax;
  top: -14vmax;
  left: -10vmax;
  background: radial-gradient(circle, rgba(255, 82, 175, 0.85), rgba(255, 82, 175, 0) 68%);
  animation: aurora-1 18s ease-in-out infinite;
}

.aurora .a2 {
  width: 40vmax;
  height: 40vmax;
  right: -12vmax;
  bottom: -12vmax;
  background: radial-gradient(circle, rgba(106, 44, 255, 0.8), rgba(106, 44, 255, 0) 68%);
  animation: aurora-2 23s ease-in-out infinite;
}

.aurora .a3 {
  width: 34vmax;
  height: 34vmax;
  top: 32%;
  left: 46%;
  background: radial-gradient(circle, rgba(255, 138, 212, 0.5), rgba(255, 138, 212, 0) 70%);
  animation: aurora-3 28s ease-in-out infinite;
}

@keyframes aurora-1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(26vw, 14vh, 0) scale(1.3); }
  66%      { transform: translate3d(9vw, 32vh, 0) scale(0.85); }
}

@keyframes aurora-2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.05); }
  40%      { transform: translate3d(-28vw, -18vh, 0) scale(0.85); }
  70%      { transform: translate3d(-12vw, -36vh, 0) scale(1.32); }
}

@keyframes aurora-3 {
  0%, 100% { transform: translate3d(-50%, -50%, 0) scale(1); opacity: 0.45; }
  50%      { transform: translate3d(-84%, -18%, 0) scale(1.4); opacity: 0.85; }
}

/* ---------------------------------------------------------------- landing */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at top, rgba(255, 77, 184, 0.05) 0%, rgba(12, 0, 32, 0.28) 45%, rgba(4, 4, 4, 0.52) 100%);
}

.card {
  position: relative;
  width: 100%;
  max-width: 980px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 1000;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-family: inherit;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
}

.lang-btn:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-1px); }

/* Real SVG flags, not emoji: Windows renders regional-indicator pairs
   (🇬🇧 / 🇳🇱) as the bare letters "GB" / "NL", which looks broken. */
.lang-flag {
  display: block;
  width: 21px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
  object-fit: cover;
}

.lang-btn[aria-current="true"] {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
}

.content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  padding: 56px 40px 40px;
  align-items: center;
}

.title { margin: 0; font-size: 3.2rem; line-height: 1.02; }

.subtitle {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.6;
}

.coming {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 26px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.socials { margin-top: 32px; }

.socials-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-links { display: flex; flex-wrap: wrap; gap: 10px; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(255, 82, 175, 0.16);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.contact-page-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--text);
  font-weight: 700;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-page-link:hover, .contact-page-link:focus-visible { color: var(--accent-2); }

.social-logo { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.hero-photo {
  margin: 0;
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.26));
  pointer-events: none;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 38%;
}

.music-section { padding: 0 40px 40px; }

.music-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
  border-top: 1px solid var(--border);
}

.music-eyebrow {
  margin: 0 0 6px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.music-title { margin: 0; font-size: 1.5rem; }

.soundcloud-player {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.footer { text-align: center; padding: 20px 24px 12px; color: #aaa; font-size: 0.95rem; }

/* ---------------------------------------------------------- consent gate */

.consent-gate {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  min-height: 360px;
  padding: 32px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.consent-gate p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; max-width: 60ch; }
.consent-gate .consent-title { color: var(--text); font-weight: 700; font-size: 1.05rem; }

.consent-gate a {
  color: var(--text);
  font-weight: 700;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.consent-gate a:hover, .consent-gate a:focus-visible { color: var(--accent-2); }

.consent-button {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 24px;
}

.consent-button:hover, .consent-button:focus-visible { background: var(--accent-2); }

.consent-secondary {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.consent-secondary:hover { color: var(--accent-2); }

/* ---------------------------------------------------------- legal footer */

.legal-footer {
  text-align: center;
  padding: 0 24px 32px;
  color: #8b8b8b;
  font-size: 0.8rem;
  line-height: 1.7;
}

.legal-footer a { color: #b9b9b9; text-decoration-color: var(--accent); text-underline-offset: 3px; }
.legal-footer a:hover, .legal-footer a:focus-visible { color: var(--accent-2); }
.legal-footer .legal-sep { opacity: 0.45; padding: 0 6px; }

/* ------------------------------------------------- contact + legal pages */

.page-body {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 77, 184, 0.05), rgba(12, 0, 32, 0.30) 45%, rgba(4, 4, 4, 0.55) 100%);
}

.page { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 32px 0 56px; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.topbar-right { display: flex; align-items: center; gap: 18px; }

.brand, .back-link { color: var(--text); font-weight: 700; text-decoration: none; }
.brand { font-size: 1.15rem; }

.back-link {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 5px;
}

.back-link:hover, .back-link:focus-visible { color: var(--accent-2); }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page h1 { margin: 0; font-size: 3.2rem; line-height: 1; }
.intro { margin: 22px 0 0; color: var(--muted); line-height: 1.65; }

.contact-methods { display: grid; gap: 16px; margin-top: 36px; }

.contact-method {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.method-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-link, .method-value { color: var(--text); font-weight: 700; overflow-wrap: anywhere; }
.method-link { text-decoration-color: var(--accent); text-underline-offset: 4px; }
.method-link:hover, .method-link:focus-visible { color: var(--accent-2); }

.form-wrap {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.form-title { margin: 0; font-size: 1.45rem; }
.form-copy { margin: 10px 0 28px; color: var(--muted); line-height: 1.5; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field-wide { grid-column: 1 / -1; }

label { font-size: 0.9rem; font-weight: 700; }

input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
}

textarea { min-height: 138px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--accent); outline: 2px solid rgba(255, 82, 175, 0.22); }

.consent-field { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; }

.consent-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent-field label { font-size: 0.86rem; font-weight: 400; color: var(--muted); line-height: 1.5; }
.consent-field a { color: var(--text); text-decoration-color: var(--accent); text-underline-offset: 3px; }

.submit-button {
  margin-top: 24px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 13px 20px;
}

.submit-button:hover, .submit-button:focus-visible { background: var(--accent-2); outline: none; }
.submit-button:disabled { cursor: wait; opacity: 0.72; }

.form-note { margin: 14px 0 0; color: var(--muted); font-size: 0.84rem; line-height: 1.45; }
.form-note a { color: var(--text); text-decoration-color: var(--accent); text-underline-offset: 3px; }
.form-note a:hover, .form-note a:focus-visible { color: var(--accent-2); }
.form-status { min-height: 1.25rem; margin: 14px 0 0; font-size: 0.9rem; font-weight: 700; }
.form-status.success { color: #a9ffbd; }
.form-status.error { color: #ff9dcf; }
.honeypot { display: none; }

/* ----------------------------------------------------------- legal prose */

.legal-prose { max-width: 78ch; color: var(--muted); line-height: 1.75; }
.legal-prose h2 { color: var(--text); font-size: 1.25rem; margin: 40px 0 12px; }
.legal-prose h3 { color: var(--text); font-size: 1rem; margin: 28px 0 8px; }
.legal-prose p, .legal-prose li { font-size: 0.96rem; }
.legal-prose a { color: var(--text); text-decoration-color: var(--accent); text-underline-offset: 3px; }
.legal-prose a:hover { color: var(--accent-2); }
.legal-prose ul { padding-left: 20px; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.9rem; }
.legal-prose th, .legal-prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-prose th { color: var(--text); }
.legal-updated { color: #8b8b8b; font-size: 0.85rem; }

/* --------------------------------------------------------------- mobile */

@media (max-width: 820px) {
  .content { grid-template-columns: 1fr; padding-top: 70px; }
  .title { font-size: 2.6rem; }
  .hero-photo, .hero-photo img { min-height: 440px; }
  .music-section { padding: 0 24px 24px; }
  .music-heading { padding-top: 24px; }
  .language-switcher { top: 14px; right: 14px; }
  .consent-gate { min-height: 300px; padding: 24px 20px; }
}

@media (max-width: 760px) {
  .page { width: min(100% - 32px, 1120px); padding-top: 24px; }
  .topbar { margin-bottom: 36px; flex-wrap: wrap; gap: 14px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .page h1 { font-size: 2.65rem; }
  .form-wrap { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .lang-btn:hover, .social-link:hover { transform: none; }
  .aurora span { animation: none !important; }
}
