/* =========================================
   K Dean Radio – Station Styles
   ========================================= */

@import url("./tokens.css");
@import url("./base.css");

.hero-radio {
  padding: 7rem 0 5.5rem;
  text-align: center;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 59, 59, 0.09) 0%,
    transparent 55%
  );
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.3rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
  letter-spacing: -0.03em;
}

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

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.3rem;
  line-height: 1.55;
}

/* On-air style strip */
.on-air-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.on-air-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

/* Simple schedule / feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.feature-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Section title helper */
.section-title {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
}

/* DJ grid */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.dj-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.1rem;
  text-align: center;
  transition: border-color var(--ease);
}

.dj-card:hover {
  border-color: var(--border-strong);
}

.dj-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.dj-slot {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dj-flavor {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.55rem;
  line-height: 1.35;
}
