/*
Theme Name: Meeuwbeemd Radio
Theme URI: https://meeuwbeemdradio.nl
Author: Meeuwbeemd Radio
Author URI: https://meeuwbeemdradio.nl
Description: Professioneel WordPress thema voor Meeuwbeemd Radio in retro Hilversum 3 stijl.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: meeuwbeemd-radio
*/

:root {
  --mr-navy: #103a5b;
  --mr-navy-soft: #2b4f69;
  --mr-gold: #d1a24b;
  --mr-gold-dark: #a67a2f;
  --mr-cream: #f2ebd8;
  --mr-cream-soft: #f7f1e3;
  --mr-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--mr-cream);
  color: var(--mr-navy);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.mr-container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.mr-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 58, 91, 0.96);
  border-bottom: 1px solid rgba(209, 162, 75, 0.4);
  backdrop-filter: blur(6px);
}

.mr-header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mr-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--mr-cream);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.mr-brand img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(209, 162, 75, 0.7);
  object-fit: cover;
}

.mr-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--mr-cream);
  font-weight: 600;
  font-size: 0.95rem;
}

.mr-nav a:hover,
.mr-nav .current-menu-item > a {
  color: var(--mr-gold);
}

.mr-main {
  padding: 2.75rem 0 4rem;
}

.mr-hero {
  border: 1px solid rgba(209, 162, 75, 0.35);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #153f61 0%, #103a5b 55%, #0d314d 100%);
  color: var(--mr-cream);
}

.mr-hero-inner {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2.5rem 1.25rem;
}

.mr-logo-xl {
  width: clamp(180px, 28vw, 280px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 4px solid rgba(209, 162, 75, 0.75);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.mr-eyebrow {
  margin-top: 1.25rem;
  color: var(--mr-gold);
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.9rem;
}

.mr-title {
  margin: 0.75rem auto 0;
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

.mr-lead {
  margin: 1rem auto 0;
  max-width: 65ch;
  color: #e9dbc0;
}

.mr-cta-row {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mr-btn {
  display: inline-block;
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.mr-btn:hover {
  transform: translateY(-1px);
}

.mr-btn-primary {
  background: var(--mr-gold);
  color: var(--mr-navy);
}

.mr-btn-secondary {
  border: 2px solid var(--mr-gold);
  color: var(--mr-cream);
}

.mr-section {
  margin-top: 2.5rem;
}

.mr-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.mr-muted {
  color: var(--mr-navy-soft);
}

.mr-split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mr-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.mr-item {
  border: 1px solid rgba(209, 162, 75, 0.36);
  border-radius: 12px;
  background: var(--mr-cream-soft);
  padding: 0.9rem 1rem;
}

.mr-item-time {
  color: var(--mr-gold-dark);
  font-weight: 700;
}

.mr-song {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.mr-song img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}

.mr-footer {
  background: var(--mr-navy);
  color: var(--mr-cream);
  padding: 2.6rem 0;
  text-align: center;
}

.mr-footer img {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  border: 2px solid rgba(209, 162, 75, 0.8);
  object-fit: cover;
}

.mr-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.mr-form label {
  font-weight: 700;
}

.mr-form input,
.mr-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(209, 162, 75, 0.45);
  font: inherit;
}

.mr-audio {
  margin-top: 1rem;
  border-radius: 12px;
  padding: 1rem;
  background: #0b2d45;
}

.mr-audio audio {
  width: 100%;
}

@media (max-width: 900px) {
  .mr-split {
    grid-template-columns: 1fr;
  }
}
