/* ============================================================
   Da Bus Music Stop — style.css
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0D0D0D;
  color: #DDDDDD;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.8;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: #0D0D0D;
  border-bottom: 1px solid #C0392B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-wordmark {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 12px;
  color: #AAAAAA;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #C0392B; }

/* === PAGE BODY OFFSET === */
main { padding-top: 56px; }

/* === HERO === */
.hero {
  background: #0D0D0D;
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-vinyl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  pointer-events: none;
}
.hero-vinyl-left  { left: -120px; }
.hero-vinyl-right { right: -120px; }

.hero-sublabel {
  font-size: 11px;
  color: #C0392B;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-size: 14px;
  color: #888888;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === BUTTONS === */
.btn-primary {
  background: #C0392B;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: #a93226; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #444;
  padding: 10px 24px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: #C0392B; color: #C0392B; }

/* === SHARED SECTION === */
.section { padding: 2.5rem 2rem; }
.section-divider { border-bottom: 1px solid #1A1A1A; }

.section-label {
  font-size: 10px;
  color: #C0392B;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

/* === VIDEO GRID === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.video-card {
  background: #111111;
  border: 1px solid #1E1E1E;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  display: block;
  color: inherit;
}
.video-card:hover { border-color: #C0392B; }

.video-thumb {
  position: relative;
  height: 90px;
  overflow: hidden;
  background: #1A1A1A;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.2s;
}
.video-card:hover .play-overlay { opacity: 1; }

.video-info { padding: 8px 10px; }
.video-title {
  font-size: 12px;
  font-weight: 500;
  color: #DDDDDD;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-artist { font-size: 11px; color: #888888; margin-bottom: 2px; }
.video-meta   { font-size: 10px; color: #555555; }

/* === SOCIAL GRID (home 2-col) === */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.social-card {
  background: #111111;
  border: 1px solid #1E1E1E;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s;
  color: inherit;
}
.social-card:hover { border-color: #C0392B; }

.social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.yt-icon { background: #C0392B; color: #fff; }
.ig-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.tt-icon { background: #010101; border: 1px solid #333; color: #fff; font-size: 13px; }
.x-icon  { background: #000; border: 1px solid #333; color: #fff; font-family: 'Arial Black', Arial; }
.fb-icon { background: #1877f2; color: #fff; }

.social-name   { font-size: 13px; font-weight: 600; color: #FFFFFF; margin-bottom: 2px; }
.social-handle { font-size: 11px; color: #666666; }
.social-arrow  { margin-left: auto; color: #444; font-size: 16px; }

/* === ABOUT SNIPPET (home) === */
.about-snippet {
  background: #111111;
  border: 1px solid #1E1E1E;
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.about-snippet-text { flex: 1; }
.about-snippet-text p { font-size: 13px; color: #888888; line-height: 1.8; }

.genre-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.75rem; }
.genre-tag {
  font-size: 10px;
  color: #C0392B;
  border: 1px solid #C0392B;
  padding: 2px 8px;
  text-transform: uppercase;
  border-radius: 2px;
  letter-spacing: 1px;
}

/* === PAGE HEADER === */
.page-header {
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 1px solid #1A1A1A;
}
.page-header h1 {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -1px;
  margin-bottom: 0.25rem;
}
.page-subtitle { font-size: 13px; color: #888888; }

/* === FILTER BAR === */
.filter-bar {
  padding: 1.25rem 2rem;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid #1A1A1A;
}
.filter-btn {
  background: transparent;
  color: #888888;
  border: 1px solid #333;
  padding: 5px 14px;
  font-size: 11px;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn:hover  { color: #DDDDDD; border-color: #666; }
.filter-btn.active { color: #C0392B; border-color: #C0392B; }

/* === GENRE SECTION (music page) === */
.genre-section {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid #1A1A1A;
}
.genre-section:last-of-type { border-bottom: none; }
.genre-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.genre-section-header .section-label { margin-bottom: 0; }
.genre-count { font-size: 11px; color: #444; }

/* === ORIGINALS TEASER === */
.originals-teaser {
  margin: 2rem;
  border: 1px solid #C0392B;
  border-radius: 4px;
  padding: 2.5rem;
  text-align: center;
}
.originals-teaser .coming-label {
  font-size: 10px;
  color: #C0392B;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.originals-teaser h2 {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.originals-teaser p { font-size: 13px; color: #666; }

/* === ABOUT PAGE === */
.artist-block {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2rem;
}
.artist-bio { flex: 1; }
.artist-bio p {
  font-size: 13px;
  color: #888888;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ai-avatar-section {
  padding: 2rem;
  border-top: 1px solid #1A1A1A;
}
.avatar-placeholder {
  background: #111111;
  border: 1px dashed #333;
  border-radius: 4px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* === CONNECT PAGE === */
.social-list {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
}
.social-card-large {
  background: #111111;
  border: 1px solid #1E1E1E;
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.2s;
  color: inherit;
}
.social-card-large:hover { border-color: #C0392B; }

.social-icon-large {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

/* === FOOTER === */
footer {
  border-top: 1px solid #1A1A1A;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-wordmark {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #444;
  letter-spacing: -0.5px;
}
.footer-copy { font-size: 11px; color: #444444; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .video-grid          { grid-template-columns: repeat(2, 1fr); }
  .social-grid         { grid-template-columns: 1fr; }
  .hero h1             { font-size: 38px; }
  .artist-block        { flex-direction: column; }
  .hero-vinyl          { display: none; }
}
@media (max-width: 480px) {
  .video-grid    { grid-template-columns: 1fr; }
  nav            { padding: 0 1rem; }
  .nav-links     { gap: 1rem; }
  .hero h1       { font-size: 30px; }
  .hero-actions  { flex-direction: column; align-items: center; }
  .section       { padding: 2rem 1rem; }
  .page-header   { padding: 2rem 1rem 1.25rem; }
}
