/**
 * radio-hero.css
 * Brand-themed hero styling for radio page
 */

/* Hero Container */
#radio-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

/* Background Image Layer */
#hero-bg {
  background: #0e0f12 center/cover no-repeat;
  filter: saturate(105%);
  transition: background-image 240ms ease, filter 240ms ease;
}

/* Gradient Overlay Layer */
#hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.82));
  transition: background 240ms ease;
}

/* Hero Logo */
.hero-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}

/* Hero Badge */
#hero-badge {
  background: rgba(202,168,106,.15);
  border: 1px solid rgba(202,168,106,.35);
  color: var(--uw-accent, #caa86a);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
  #radio-hero {
    min-height: 48vh;
    padding-bottom: 2rem;
  }
  
  .hero-logo {
    width: 40px;
    height: 40px;
  }
  
  #hero-badge {
    font-size: 0.8125rem;
    padding: 0.3rem 0.6rem;
  }
  
  #np-title {
    font-size: 2rem;
  }
  
  #np-blurb {
    font-size: 1rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  #hero-bg,
  #hero-overlay {
    transition: none;
  }
}

/* Utility Classes */
.smallcaps {
  font-variant: small-caps;
  letter-spacing: 0.05em;
}

