:root {
  --bg: #0b0b1c;
  --bg2: #0f1230;
  --text: #eef1ff;
  --muted: #cfd3ff;
  --brand: #a78bfa;
  --brand-strong: #7c5dfa;
  --accent: #22d3ee;
  --border: rgba(255,255,255,0.08);
  --maxw: 1100px;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(10,10,25,0.9);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}
.logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-links {
  display: flex;
  gap: 26px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--brand);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 40px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 16px;
}
.lead {
  color: var(--muted);
  margin: 0 0 22px;
}
.cta-row {
  display: flex;
  gap: 12px;
}
.btn {
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06); /* subtil baggrund i stedet for helt gennemsigtig */
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.12); /* lidt tydeligere ved hover */
}

.btn.primary {
  background: linear-gradient(180deg, var(--brand-strong), #5b3eea);
  border: none;
  font-weight: 700;
  color: #fff;
}


/* Cover-boks med billede */
.hero-cover {
  display: flex;
  justify-content: center;
}
.cover-card {
  width: clamp(220px, 32vw, 360px); /* min, fluid, max */
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  background: #0c0f2a; /* fallback */
}
.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lyt nu */
.platforms {
  list-style: none;
  padding: 0;
}
.platforms li {
  margin: 8px 0;
}
.platforms a {
  color: var(--brand);
  text-decoration: none;
}

/* Kontakt */
form {
  display: grid;
  gap: 12px;
  max-width: 500px;
}
input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0f1133;
  color: var(--text);
}
textarea {
  min-height: 120px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 40px;
  text-align: center;
  color: var(--muted);
}
.credits {
  font-size: 14px;
}

.credits a {
  color: var(--brand);          /* lilla nuance */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.credits a:hover,
.credits a:focus {
  color: var(--accent);         /* skifter til turkis ved hover/fokus */
  text-decoration: underline;
}

.credits a:visited {
  color: var(--brand);          /* forbliver lilla også efter klik */
}



/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center; /* centrér teksten */
  }

  .hero .cta-row {
    justify-content: center; /* centrér knapperne */
  }

  .hero-cover {
    justify-content: center;
  }
}

.form-status {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* Email-link styling */
a[href^="mailto:"] {
  color: #ec4899;          /* pink (Tailwind pink-500) */
  font-weight: 600;
  text-decoration: none;
}

a[href^="mailto:"]:hover {
  color: #f472b6;          /* lysere pink ved hover */
  text-decoration: underline;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  margin-bottom: 32px;
}

/* Giv lidt ekstra luft fra headeren til første card */
main .card:first-of-type {
  margin-top: 32px;
}

/* Episodes / player */
.episode audio {
  width: 100%;
  margin: 12px 0 6px;
}

.episode .episode-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
}

.episode .episode-meta a {
  color: var(--brand);
  text-decoration: none;
}
.episode .episode-meta a:hover { text-decoration: underline; }

/* Plyr farveaccent (brug din brand-farve) */
:root {
  --plyr-color-main: var(--brand-strong);
}

.platform-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease;
}

.platform svg {
  width: 18px;
  height: 18px;
}

.platform.spotify {
  background: #1DB954;
}
.platform.spotify:hover {
  background: #1ed760;
}

.platform.apple {
  background: #555; /* mørkegrå */
}
.platform.apple:hover {
  background: #333;
}

.platform.podimo {
  background: #f45d22; /* Podimo orange */
}
.platform.podimo:hover {
  background: #d94c18;
}

