/* =========================
   HarderBPM - Base
========================= */

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

:root {
  --background: #070707;
  --surface: #111111;
  --surface-light: #181818;
  --text: #ffffff;
  --muted: #a5a5a5;
  --yellow: #ffd400;
  --border: #252525;
}

html {
  background: var(--background);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 212, 0, 0.08), transparent 28%),
    var(--background);

  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;

  padding-bottom: 110px;
}


/* =========================
   Header
========================= */

.site-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  width: 260px;
  max-width: 42vw;
  height: auto;
}

.tagline {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}


/* =========================
   Main
========================= */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}


/* =========================
   Hero
========================= */

.hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;

  border-bottom: 1px solid var(--border);
}

.hero-content {
  min-height: 340px;

  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 20px;
}

.hero-text-block {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--yellow);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;

  margin-bottom: 16px;
}

.hero h1 {
  max-width: 640px;

  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;

  text-transform: uppercase;
  letter-spacing: -4px;

  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-text {
  color: var(--muted);

  max-width: 520px;

  font-size: 16px;
  line-height: 1.5;
}

.hero-image {
  height: 340px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  overflow: hidden;
}

.hero-image img {
  display: block;

  width: min(440px, 100%);
  height: auto;

  object-fit: contain;

  filter: drop-shadow(0 0 30px rgba(255, 212, 0, 0.12));
}
/* =========================
   Stations
========================= */

.stations {
  padding: 55px 0 80px;
}

.stations h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

#station-list {
  display: grid;

  grid-template-columns:
    repeat(auto-fill, minmax(220px, 1fr));

  gap: 20px;
}


/* =========================
   Player
========================= */

.player {
  position: fixed;

  left: 0;
  right: 0;
  bottom: 0;

  min-height: 90px;

  padding: 18px max(28px, calc((100vw - 1200px) / 2));

  background: rgba(12, 12, 12, 0.96);

  border-top: 2px solid var(--yellow);

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 100;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.player-live-dot {
  width: 10px;
  height: 10px;

  flex-shrink: 0;

  background: var(--yellow);
  border-radius: 50%;

  box-shadow: 0 0 10px rgba(255, 212, 0, 0.5);
}

.player-label {
  color: var(--yellow);

  font-size: 10px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 1.8px;

  margin-bottom: 5px;
}

#player-station-name {
  color: #ffffff;

  font-size: 20px;
  font-weight: 900;

  line-height: 1;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.player-genre {
  color: var(--muted);

  font-size: 11px;
  font-weight: 400;

  margin-top: 5px;
  letter-spacing: 0.3px;
}

.player-button {
  width: 54px;
  height: 54px;

  border-radius: 50%;

  border: 1px solid var(--yellow);

  background: transparent;
  color: var(--yellow);

  font-size: 19px;

  cursor: pointer;
}

/* =========================
   Volume slider
========================= */

.volume-icon {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--yellow);
}

.volume-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-icon {
  font-size: 15px;
}

#volume-slider {
  width: 130px;
  height: 5px;

  appearance: none;
  -webkit-appearance: none;

  background: #333333;
  border-radius: 999px;

  cursor: pointer;
  outline: none;
}

/* Chrome / Edge / Safari */

#volume-slider::-webkit-slider-runnable-track {
  height: 5px;
  background: var(--yellow);
  border-radius: 999px;
}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;

  width: 20px;
  height: 20px;

  margin-top: -7.5px;

  border: 0;
  border-radius: 50%;

  background: var(--yellow);

  cursor: pointer;
}

/* Firefox */

#volume-slider::-moz-range-track {
  height: 5px;
  background: #333333;
  border-radius: 999px;
}

#volume-slider::-moz-range-progress {
  height: 5px;
  background: var(--yellow);
  border-radius: 999px;
}

#volume-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;

  border: 0;
  border-radius: 50%;

  background: var(--yellow);

  cursor: pointer;
}

/* =========================
   Station card
========================= */

.station-card {
  max-width: 420px;
  height: 340px;
  padding: 26px;

  background: linear-gradient(145deg, #151515, #0d0d0d);
  border: 1px solid var(--border);
  border-radius: 14px;

  display: grid;
  grid-template-rows: 30px 1fr 48px;
  gap: 18px;
}


/* bovenste regel */

.station-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.station-badge {
  background: var(--yellow);
  color: #000;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;

  padding: 5px 8px;
  border-radius: 4px;
}

.station-genre {
  color: var(--muted);

  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* midden van de kaart */

.station-card-content {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;

  min-width: 0;
}

.station-icon {
  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: #080808;
  border: 1px solid #292929;

  color: var(--yellow);

  font-size: 30px;
  font-weight: 900;
}

.station-card-content > div:last-child {
  min-width: 0;
}

.station-card h3 {
  font-size: 22px;
  line-height: 1.08;

  margin-bottom: 7px;

  overflow-wrap: break-word;
}

.station-card p {
  color: var(--muted);
  font-size: 14px;
}


/* knop altijd op exact dezelfde plek */

.station-play-button {
  width: 100%;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 0;
  border-radius: 8px;

  background: var(--yellow);
  color: #000;

  font-size: 14px;
  font-weight: 800;

  cursor: pointer;
}

/* =========================
   Mobile
========================= */

@media (max-width: 650px) {

  .site-header {
    padding: 22px 18px;
  }

 .logo img {
    width: 210px;
    max-width: 70vw;
  }
   
  .tagline {
    display: none;
  }

  main {
    padding: 0 18px;
  }

.hero {
  min-height: 300px;
}

.hero-content {
  position: relative;

  min-height: 300px;

  display: block;

  padding: 34px 0 28px;
}

.hero-text-block {
  position: relative;
  z-index: 2;

  width: 72%;
}

.eyebrow {
  font-size: 10px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(34px, 10vw, 44px);
  line-height: 0.95;
  letter-spacing: -2px;

  margin-bottom: 16px;
}

.hero-text {
  font-size: 13px;
  line-height: 1.45;
}

.hero-image {
  position: absolute;

  right: -10px;
  bottom: -10px;

  width: 200px;
  height: 230px;

  z-index: 1;

  opacity: 0.72;
}

.hero-image img {
  width: 100%;
  max-width: none;
}

  .stations {
    padding-top: 38px;
  }

  .player {
    min-height: 78px;
    padding: 12px 18px;
  }

  .player-button {
    width: 48px;
    height: 48px;
  }

}

/* =========================
   Tablet Hero
========================= */

@media (max-width: 900px) and (min-width: 651px) {

  .hero,
  .hero-content {
    min-height: 310px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  }

  .hero h1 {
    font-size: clamp(38px, 6vw, 52px);
    letter-spacing: -3px;
  }

  .hero-image {
    height: 310px;
  }

  .hero-image img {
    width: 340px;
    max-width: 100%;
  }
}
