:root {
  --bg: #080808;
  --bg-soft: #121212;
  --card: #181818;
  --text: #f8f8f8;
  --muted: #b7b7b7;
  --accent: #ffcc00;
  --accent-2: #ff3b30;
  --border: rgba(255,255,255,0.12);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 5%;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

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

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.section {
  padding: 5rem 5%;
}

.alt {
  background: var(--bg-soft);
}

.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(255,204,0,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,59,48,0.17), transparent 35%),
    linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.9)),
    url('dj-kingpin-hero.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.9;
  margin: 0.6rem 0 1rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  margin: 0.4rem 0 1rem;
}

h3 {
  margin-top: 0;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  background: var(--accent);
  color: #111;
}

.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p {
  color: var(--muted);
}

.embed-card,
.calendar-wrap,
.card,
.video-card,
.booking-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mix-grid,
.social-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 1.4rem;
}

.card p {
  color: var(--muted);
}

.card a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.video-card {
  aspect-ratio: 16 / 9;
}

.video-card iframe,
.calendar-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.calendar-wrap {
  height: 650px;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.booking-copy p {
  color: var(--muted);
}

.booking-list {
  padding-left: 1.2rem;
  color: var(--text);
}

.booking-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0f0f0f;
  color: var(--text);
  padding: 0.95rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 5%;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 800px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .mix-grid,
  .social-grid,
  .video-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .calendar-wrap {
    height: 520px;
  }

  .hero {
    min-height: 72vh;
    background-position: 40% center;
    padding: 3rem 5rem 4rem;
  }

  nav {
    gap: 0.7rem;
  }
}
.hidden-field {
  display: none;
}
