/* Dario.fm — modern hitradio */

:root {
  --bg: #faf6f1;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --text: #0c0c0e;
  --text-muted: #656059;
  --line: rgba(120, 53, 15, 0.08);
  --line-strong: rgba(120, 53, 15, 0.14);
  --orange: #ea580c;
  --orange-bright: #f97316;
  --amber: #f59e0b;
  --amber-soft: #fbbf24;
  --accent-a: var(--orange);
  --accent-b: var(--amber);
  --accent-c: var(--orange-bright);
  --font: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  --page-pad: clamp(1.1rem, 4vw, 2rem);
  --shadow-sm: 0 1px 2px rgba(15, 15, 20, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 15, 20, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 15, 20, 0.08);
  --blur-blob: 80px;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: var(--bg);
  background-image:
    radial-gradient(at 0% 0%, rgba(234, 88, 12, 0.14) 0px, transparent 52%),
    radial-gradient(at 100% 0%, rgba(251, 146, 60, 0.12) 0px, transparent 48%),
    radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.11) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(251, 113, 133, 0.08) 0px, transparent 48%);
}

.blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(var(--blur-blob));
  opacity: 0.45;
  animation: drift 20s ease-in-out infinite;
}

.blob-a {
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.5), rgba(234, 88, 12, 0.35));
  top: -25%;
  right: -15%;
  animation-delay: -4s;
}

.blob-b {
  width: min(60vw, 380px);
  height: min(60vw, 380px);
  background: linear-gradient(315deg, rgba(245, 158, 11, 0.42), rgba(251, 146, 60, 0.28));
  bottom: -20%;
  left: -20%;
  animation-delay: -10s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 16px) scale(1.03);
  }
}

/* Header */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: var(--page-pad);
  margin-bottom: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.logo-dot {
  font-weight: 600;
  background: linear-gradient(120deg, var(--orange-bright), var(--amber) 55%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7c2d12;
  background: rgba(255, 237, 213, 0.85);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: var(--radius-full);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.28);
  animation: pulse-soft 2.2s ease-in-out infinite;
}

@keyframes pulse-soft {
  50% {
    opacity: 0.75;
    transform: scale(0.92);
  }
}

.region {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Main */

.main {
  flex: 1;
  padding: 0 var(--page-pad) 2.5rem;
  max-width: 40rem;
}

@media (min-width: 900px) {
  .main {
    max-width: 56rem;
  }
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a3412;
}

.eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  opacity: 0.85;
}

.eq span {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--amber-soft), var(--orange-bright) 40%, var(--orange));
  animation: eq 0.85s ease-in-out infinite alternate;
}

.eq span:nth-child(1) {
  height: 35%;
  animation-delay: 0s;
}
.eq span:nth-child(2) {
  height: 65%;
  animation-delay: 0.12s;
}
.eq span:nth-child(3) {
  height: 100%;
  animation-delay: 0.24s;
}
.eq span:nth-child(4) {
  height: 50%;
  animation-delay: 0.18s;
}
.eq span:nth-child(5) {
  height: 78%;
  animation-delay: 0.06s;
}

@keyframes eq {
  from {
    transform: scaleY(0.4);
  }
  to {
    transform: scaleY(1);
  }
}

.hero {
  padding-bottom: 2rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 7vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.headline-accent {
  display: inline;
  background: linear-gradient(
    110deg,
    var(--orange) 0%,
    var(--orange-bright) 35%,
    var(--amber) 70%,
    var(--amber-soft) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 36em;
}

.lead strong {
  color: var(--text);
  font-weight: 700;
}

.lead-wink {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.45;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

@media (max-width: 520px) {
  .hero-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-listen {
    width: 100%;
    justify-content: center;
  }
}

/* DJ card */

.dj-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0.85rem 1.15rem;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dj-card:hover {
  border-color: rgba(234, 88, 12, 0.22);
  box-shadow: var(--shadow-md), 0 12px 40px rgba(234, 88, 12, 0.06);
  transform: translateY(-2px);
}

.dj-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}

.dj-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.dj-card__now {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.dj-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.dj-card__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 45%, var(--amber) 100%);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.3);
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dj-card:hover .dj-card__play {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.dj-card__play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5em 0 0.5em 0.85em;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
  transition: all 0.2s ease;
}

.dj-card.is-playing .dj-card__play {
  background: linear-gradient(135deg, #1f1f24 0%, #2a2a30 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.dj-card.is-playing .dj-card__play-icon {
  border-style: double;
  border-width: 0 0 0 0.85em;
  height: 1em;
}

.dj-card__status {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Stem / identiteit — rustig, typografisch */

.voice-quote {
  margin: 0 0 2rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.voice-quote blockquote {
  margin: 0;
  padding: 0;
  max-width: 34em;
}

.voice-quote p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.65;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.voice-quote__attr {
  margin: 0.65rem 0 0;
  max-width: 34em;
  font-size: 0.8125rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text);
  letter-spacing: 0.02em;
}

.voice-quote__attr cite {
  font-style: normal;
}

.voice-quote__attr cite::before {
  content: "— ";
  color: var(--text-muted);
  font-weight: 400;
}

/* Programma-maker — hoge contrast, duidelijke actie */

.cta-program {
  margin: 0 0 2rem;
}

.btn-program {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 1.15rem 1.35rem;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  color: #fafafa;
  background: var(--text);
  border: none;
  border-radius: var(--radius);
  box-shadow:
    var(--shadow-sm),
    0 16px 40px rgba(12, 12, 14, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-program:hover {
  background: #1f1f24;
  transform: translateY(-3px);
  box-shadow:
    var(--shadow-sm),
    0 22px 50px rgba(12, 12, 14, 0.28),
    0 0 0 1px rgba(234, 88, 12, 0.35);
}

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

.btn-program:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.btn-program__question {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.btn-program__action {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--amber-soft);
  line-height: 1.2;
}

.btn-program__action::after {
  content: " →";
  font-weight: 800;
}

@media (min-width: 480px) {
  .btn-program {
    padding: 1.25rem 1.5rem;
    gap: 0.45rem;
  }

  .btn-program__question {
    font-size: 1.125rem;
  }

  .btn-program__action {
    font-size: 1.35rem;
  }
}

/* CTA luisteren */

.btn-listen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 45%, var(--amber) 100%);
  border: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow:
    var(--shadow-sm),
    0 12px 36px rgba(234, 88, 12, 0.35);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-listen:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-sm),
    0 18px 44px rgba(249, 115, 22, 0.38);
}

.btn-listen:active {
  transform: translateY(0);
}

.btn-listen__play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.38em 0 0.38em 0.62em;
  border-color: transparent transparent transparent #fff;
  margin-left: 1px;
  transition: all 0.2s ease;
}

.btn-listen.is-playing {
  background: linear-gradient(135deg, #1f1f24 0%, #2a2a30 100%);
  box-shadow: var(--shadow-sm), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-listen.is-playing:hover {
  box-shadow: var(--shadow-sm), 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-listen.is-playing .btn-listen__play {
  border-style: double;
  border-width: 0 0 0 0.62em;
  border-color: transparent transparent transparent #fff;
  height: 0.76em;
}

/* Stations */

.stations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.station {
  padding: 0.35rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
}

.station-joe {
  background: rgba(234, 88, 12, 0.18);
  color: #7c2d12;
  border-color: rgba(234, 88, 12, 0.28);
}

.station-q {
  background: rgba(251, 113, 133, 0.14);
  color: #9f1239;
  border-color: rgba(251, 113, 133, 0.28);
}

.station-willy {
  background: rgba(245, 158, 11, 0.16);
  color: #92400e;
  border-color: rgba(245, 158, 11, 0.3);
}

/* Facts */

.facts {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

@media (min-width: 720px) {
  .facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.fact-card {
  padding: 1.15rem 1.2rem;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.fact-card:hover {
  border-color: rgba(234, 88, 12, 0.22);
  box-shadow:
    var(--shadow-md),
    0 12px 40px rgba(234, 88, 12, 0.06);
  transform: translateY(-2px);
}

.fact-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 0.65rem;
  color: var(--orange);
}

.fact-title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.fact-card p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Feedback */

.feedback {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.35rem;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.feedback__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feedback__icon {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}

.feedback__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.feedback__body {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}

.btn-feedback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-feedback:hover {
  background: rgba(234, 88, 12, 0.14);
  border-color: rgba(234, 88, 12, 0.35);
  transform: translateY(-1px);
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding: 1.25rem var(--page-pad) 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.5;
}

.site-footer p:last-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
