html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

/* Modern, Ultra-Fast, Zero-Dependency CSS System for stevebanik.com */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  --bg-main: #0b0f17;       /* Deep obsidian slate background */
  --bg-card: #151c2c;       /* Elevated dark card surface */
  --bg-dark: #070a10;       /* Footer / Top bar dark background */
  --bg-dark-card: #1e293b;  /* Secondary dark card surface */
  --bg-subtle: #1e293b;     /* Muted dark slate tags & elements */
  
  --text-main: #f8fafc;     /* Main high-contrast readable text */
  --text-muted: #94a3b8;    /* Soft muted text */
  --text-light: #cbd5e1;    /* Light text */
  --text-white: #ffffff;    /* Pure white */
  
  --primary: #0284c7;       /* Sky Blue primary accent */
  --primary-hover: #38bdf8; /* Hover cyan glow */
  --accent: #e11d48;        /* Crimson secondary accent */
  --accent-hover: #f43f5e;  /* Crimson hover */
  
  --border: #233044;        /* Subtle slate border line */
  --border-dark: #1e293b;   /* Darker divider line */
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
  --shadow-hover: 0 20px 35px -10px rgba(0, 0, 0, 0.7);

  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Top Announcement Bar */
.top-bar {
  background-color: #030712;
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 8px 24px;
  text-align: right;
  border-bottom: 1px solid #1f2937;
}

.top-bar a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  margin-left: 12px;
  transition: color 0.15s ease;
}

.top-bar a:hover {
  color: #ffffff;
}

/* Navigation Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.brand-logo img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Components */
.hero-hub {
  background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0f172a 100%);
  color: var(--text-white);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-hub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(2, 132, 199, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-hub h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-hub p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* Hero DJ Banner */
.hero-dj {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.85)), url('assets/live_on_state.webp') center/cover no-repeat;
  color: var(--text-white);
  padding: 110px 24px 80px;
  text-align: center;
}

.hero-dj h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-dj p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* Layout Grid & Containers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Cards & Elevated UI */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-color: var(--bg-subtle);
}

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* Badges & Tags */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: fit-content;
  margin-bottom: 16px;
}

.badge-tech {
  background-color: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.badge-dj {
  background-color: rgba(225, 29, 72, 0.2);
  color: #fb7185;
  border: 1px solid rgba(251, 113, 133, 0.3);
}

.badge-production {
  background-color: rgba(217, 119, 6, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.btn-accent {
  background-color: var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

.btn-gold {
  background-color: #d97706;
  color: #ffffff;
}

.btn-gold:hover {
  background-color: #b45309;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.card-production {
  border-top: 4px solid #d97706 !important;
  background: var(--bg-card);
}

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

.btn-outline:hover {
  background-color: var(--bg-subtle);
  border-color: #64748b;
  color: #ffffff;
  box-shadow: none;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Testimonial Box */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-wrapper {
  max-width: 620px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.98rem;
  font-family: inherit;
  color: #f8fafc;
  background-color: #1a2336;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 24px 30px;
  font-size: 0.92rem;
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
}

/* Global Media Responsiveness */
img, iframe, video {
  max-width: 100%;
}

/* Mobile & iPhone Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    padding: 24px;
    border-bottom: 1px solid var(--border-dark);
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links.show {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .container {
    padding: 40px 18px;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-hub {
    padding: 60px 16px 50px;
  }

  .hero-dj {
    padding: 70px 16px 50px;
  }

  .hero-hub h1, .hero-dj h1 {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
  }

  .hero-hub p, .hero-dj p {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  /* Full-width touch-friendly buttons on iPhone */
  .hero-hub div[style*="display: flex"],
  div[style*="display: flex; gap: 16px"] {
    flex-direction: column !important;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .container {
    padding: 32px 14px;
  }
}
