html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size:18px;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
  min-height: 100vh; 
  padding-bottom:70px
}

a {
  color: #000;
  text-decoration: none;
}

/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background: #000;
    box-shadow: 1px 1px 4px rgba(0,0,0,.1);
    z-index: 100;
    display: flex;
    justify-content: center;  
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 15px;
}

/* LOGO */

.header .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header .logo img {
  height: 40px; /* vaste hoogte = geen layout issues */
  width: auto;
  display: block;
}

/* MENU (MOBILE DEFAULT) */

.header .menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  margin:0;
  padding:0;
  list-style: none;  
}

.header .menu li {
  list-style: none;
  border-top: 1px solid #f0f0f0;
}

.header .menu li a {
  display: block;
  padding: 12px 15px;
  font-size:16px;
  color:#fff;
}

.header .menu li a:hover {
  background: orange;
  color:#000!important;
}

/* HAMBURGER */

.header .menu-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;  
  margin-right:20px;
}

.header .navicon {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: .2s;
}

.header .navicon::before,
.header .navicon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: .2s;
}

.header .navicon::before {
  top: 6px;
}

.header .navicon::after {
  top: -6px;
}

.menu a.active,
nav a.active {
    color: orange!important;
    font-weight: bold;
}

/* TOGGLE */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 300px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon::before {
  transform: rotate(45deg);
  top: 0;
}

.header .menu-btn:checked ~ .menu-icon .navicon::after {
  transform: rotate(-45deg);
  top: 0;
}


/* ================= DESKTOP ================= */

@media (min-width: 768px) {

  .header {
    padding: 0 25px;
  }

  .header .menu {
    position: static;
    display: flex;
    align-items: center;
    max-height: none;
    width: auto;
    background: none;
  }

  .header .menu li {
    border: none;
  }

  .header .menu li a {
    padding: 0 15px;
    line-height: 55px;
  }

  .header .menu-icon {
    display: none;
  }
}

/* ================= CONTENT ================= */

main#app {
  max-width: 1200px;
  margin: 0 auto;      
  padding: 75px 20px 0px;
}

main#app > *:first-child {
  margin-top: 0;
}
 

/* ================= IMAGES ================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
}


figure {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  margin: 0;
}

figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

figcaption {
  font-size:small;
  margin-top:10px;
} 


 


/* ================= PLAYER ================= */
/* FULL WIDTH BACKGROUND */
#mpr-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #111;
    color: #fff;
    z-index: 999999;
}

/* CENTER CONTENT */
.playerwrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;

    display: flex;
    align-items: center;
    gap: 10px;
}

/* PLAY BUTTON */
#playButton {
    width: 40px;
    height: 40px;
    background: orange;
    border: none;
    cursor: pointer;
}

/* INFO TAKES MIDDLE SPACE */
#playerinfo {
    flex: 1;
    font-size: 16px;
    min-width: 0;
}

#playerinfo div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* SLEEVE RIGHT */
#sleeve {
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: center;
    margin-left: auto;
}

/* ================= BUTTONS ================= */

#listenButton.loading {
    opacity: 0.7;
    cursor: wait;
}

.button {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 8px 18px;
    background: #2B6CB0;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    margin-bottom:20px;
    margin-right:10px;
    text-align:center;
}

.button:hover {
  background:#1F4E85;
  color:#fff;
}

#listenButton {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background: darkorange !important;
  color: #000 !important;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 18px 36px;
  cursor: pointer;
  text-align: center;
}

.copy-btn {
  cursor:pointer;
}

#listenButton:hover {
  background-color:#E67A00!important;
}
 
#listenButton .icon {
  font-size:1.1em;
  color:#000;
  margin-right:10px;
} 

@media (max-width: 360px) {
  .col .button, #listenButton.button {
    width: 100%;
    display: block;
  }
}

/* ================= COLUMNS ================= */

.columns {
    display: grid;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.columns.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


.columns.three {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    overflow-x: hidden;
}

.columns.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.col {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 20px;
    padding-top: 0;    
    border-radius: 10px;
    min-width: 0;
}

.three .col {
  padding-top:0!important
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align:center;
}
   
.columns.three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.columns.three .col {
    display: flex;
    flex-direction: column;
}

.columns.three .button {
    margin-top: auto;
}

@media (max-width: 768px) {
    .columns.two,    
    .columns.three,
    .columns.four {
        grid-template-columns: 1fr;
    }  
}

@media (max-width: 360px) {
  .col {
    padding-right: 0;
  }
}


/* ================= SLEEVE  ================= */

#home-sleeve {
    margin: 0 auto;
    display: block;
    margin-bottom:20px;
    min-width: 200px;
    max-width: 200px;
    aspect-ratio: 1 / 1;    
}

@media (max-width: 360px) {
  #home-sleeve {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
  }
}

/* ================= HEADING ================= */

h1 {
  font-size: clamp(22px, 4vw, 32px);
}

h2 {
  font-size: clamp(18px, 3.2vw, 26px);
}

h3 {
  font-size: clamp(16px, 2.8vw, 21px);
}
 
.h1home {
  margin-top:-5px;
  text-align:center;
}
 
.h1home span {
  display:block;
  line-height:1.3;
}

.h1home .line1 {
  font-weight:600; 
  font-size:1.6rem;
}

.h1home .line2 {
  font-weight:700;
  font-size:1.6rem;  
}

.h1home .line3 {
  font-weight:500;
  font-size:1.3rem;
  display:inline-flex;
}

.live-dot {
  margin-left:10px;
  font-size:0.75rem;
  font-weight:700;
  color:darkorange;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-top:5px;
  display:inline-flex;    
  align-items:center;
  white-space:nowrap; 
}

.live-dot::before {
  content:"●";
  animation:pulse 2s infinite;
  margin-right:2px;
}

@keyframes pulse {
  0%, 100% { opacity:0.4; transform:scale(0.9); }
  50% { opacity:1; transform:scale(1.2); }
}
 

/* ================= TAGS ================= */

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    background: #1F4E85;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;    
}

.tags span a {
  color: #fff!important;
  text-decoration:none;
}

.tags span:hover {
  background:#2B6CB0;
}

/* =================HERO IMAGE ================= */

 
.hero {
    width: 100%;
    height: 400px;
    background-image: url("/img/recordplayer.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; 
    text-align: center;
    box-sizing: border-box;
    padding-bottom: 30px;  
    margin-bottom:40px;
    padding-left:10px;
    padding-right:10px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero h1 {
    position: relative;
    color: #fff;
    margin: 0;
    z-index: 1;
}


/* ================= GOAL BOX (DONATIONS) ================= */

.goal-box {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 40px;
  color:#fff
}

.goal-amount {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 10px;
}

.progress-bar {
  background: #2a2a2a;
  border-radius: 50px;
  overflow: hidden;
  height: 18px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  width: 0%;  /
  transition: width 0.6s ease;
}
    
.donation-table-wrapper {
  width: 100%;
  overflow-x: auto; /* belangrijk voor mobiel */
}

.donation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.donation-table th,
.donation-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

/* bedragen altijd netjes rechts */
.donation-table td:last-child,
.donation-table th:last-child {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums; /* zorgt voor nette cijfer-uitlijning */
}

/* header styling */
.donation-table thead th {
  font-weight: bold;
  border-bottom: 2px solid #ccc;
}

/* mobiel: compacter */
@media (max-width: 600px) {
  .donation-table {
    font-size: 14px;
  }

  .donation-table th,
  .donation-table td {
    padding: 8px 6px;
  }
}


/* ================= CONTACT FORM ================= */


.contact-section {
  max-width: 700px;
  padding: 0 15px;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 18px;
  font-family: inherit;
  outline: none;
  transition: 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: orange;
  box-shadow: 0 0 0 2px rgba(255,165,0,0.2);
}
 
.contact-form button {
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contact-section {
    padding: 25px 10px;
  }

  .contact-form button {
    width: 100%;
  }
}


/* ========================= DATABASE ========================= */
.music-header {margin-top:-20px}

.music-db {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    padding-left: 20px;    
    padding-right: 20px;        
}
 
.music-db form {
    display: flex;
    width: 100%;
    gap: 8px;
    margin-bottom:10px;
}

.music-db input[type="search"] {
    flex: 1;
    padding: 10px;
    border-radius: 10px;    
}

.music-db form button {
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    background: #2B6CB0;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
     
}
 
.music-db  .alphabet,
.music-db .genres {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding: 8px 0;
}

.music-db .alphabet a,
.music-db .genres a {
    margin-right: 0.6rem;
    margin-bottom: 0.4rem;
    text-decoration: none;
    color: #3182CE;
    border: solid 2px #3182CE;
    font-weight: bold;
    padding: 0.3rem 0.5rem;
    display: inline-block;
    border-radius: 5px;
    font-size: small;
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 4px;
}

.music-db .alphabet a.active,
.music-db .genres a.active {
    background: #3182CE;
    color: #fff;
    border-color: #3182CE;
}
 
.music-db .tracklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.music-db .tracklist li {
    padding: 0.8rem 0;
    border-bottom: 1px dotted #c0c0c0;
    text-transform: capitalize;
}

.scroll-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.scroll-content {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  flex: 1;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.scroll-left,
.scroll-right {
  background: none;
  border: 0;
  font-size: 32px;   
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  color: #333;
}
 
@media (max-width: 600px) {
    .music-db form {
        flex-direction: column;
        gap: 12px;
    }

    .music-db input[type="search"],
    .music-db form button {
        width: 100%;
    }
}

/* ================= VIDEO ================= */

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; 
    margin-bottom:60px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 1200px) {
    .video-container {
        max-width: 800px;
    }
} 

/* ================= META FOOTER ================= */

/* FULL WIDTH BACKGROUND */
.footer-meta {
  width: 100%;
  background: #bbb;
  border-top: solid 1px #000;
}

/* CENTER CONTENT */
.footer-meta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding:10px;  
  text-align: center;
  font-size: 12px;
  color: #000;
}

/* LINKS */
.footer-meta a {
  text-decoration: underline !important;
  font-weight: normal !important;
  color: inherit !important;
}

.footer-meta a:hover {
  color: blue !important;
}

/* ================= QUICK SUMMERY ================= */
 
.quick-summary {
  background: #f5f7fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.quick-summary h2 {
  margin-bottom: 10px;
}

.quick-summary ul {
  padding-left: 20px;
}

.quick-summary li {
  margin-bottom: 8px;
}

.quick-summary-cta {
  margin-top: 15px;
  font-weight: bold;
}

/* ================= FOLLOW US ================= */

.follow-mixperfect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 18px 10px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-icons svg {
    width: 28px;
    height: 28px;
    fill: white;
    transition: all 0.25s ease;    
}

.facebook:hover svg {
    fill: #1877F2;
    transform: scale(1.12);
}

.youtube:hover svg {
    fill: #FF0000;
    transform: scale(1.12);
}



/* ================= WEEKLY REPORTS ================= */

.daily-breakdown {
    margin-top: 40px;
}

.daily-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.day-card {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    padding: 20px;
    color: #111111;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    
  display: flex;
  flex-direction: column;
  height: 100%;    
}

.day-card h3 {
    margin: 0;
    font-size: 1.3rem;
}

.day-date {
    color: #666;
    margin-top: 4px;
    margin-bottom: 20px;
}

.day-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.day-stats div {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 12px;
}

.day-stats span,
.top-track span,
.top-genres span {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 6px;
    margin-top: 10px;
}

.day-stats strong {
    display: block;
}

.genre-tag {
    font-weight: bold;
    color: #000;
}

.top-track {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

#weeklyreport > section {
    margin-bottom: 60px;
}

.day-summary {
    margin: 12px 0 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.day-summary em {
    font-style: italic;
}




.year-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px;
}
.year-title {
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    padding: 5px;
    user-select: none;
}
.weekly-report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    padding-top: 15px;
}
.report-link {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}
.report-link:hover {
    border-color: #007bff;
    background: #f1f7ff;
}
.week-num { font-weight: bold; font-size: 1.1rem; }
.week-date { font-size: 0.85rem; color: #6c757d; }
/* ================= PLAYLIST PREVIEW ================= */

.playlist-preview {
    margin-top: 14px;
    margin-bottom: 14px;

    padding: 12px 14px;

    background: #f7f7f7;
    border: 1px solid #e3e3e3;
    border-radius: 10px;

    font-size: 0.92rem;
    line-height: 1.5;
}

.playlist-preview-title {
    display: block;
    margin-bottom: 8px;

    font-weight: 600;
    color: #111;
}

.playlist-preview ul {
    margin: 0;
    padding-left: 18px;
}

.playlist-preview li {
    margin-bottom: 4px;
    color: #444;
}

.playlist-download {
  font-size:0.9em;
  margin-top: auto;
}


/* playlist */
 
.playlist-page {
    max-width:1200px;
    margin: 0 auto;
}

.meta {
    margin-bottom: 30px;
    color: #666;
}
 
.playlist-table {
    width: 100%;
    border-collapse: collapse;
}

.playlist-table th,
.playlist-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
}

.playlist-table th {
    background: #f7f7f7;
}

.track-time {
    white-space: nowrap;
    color: #666;
}

.track-title {
    font-weight: bold;
}
 
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
 
/* ================= INHOUDSOPGAVE ================= */
.toc ul {
  margin-left: 0;
}

.toc ul ul {
    padding-left: 35px;
}
 
.toc-title {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.toc li {
    margin: 6px 0;
}

.toc li a {
    color: #1F4E85!important;
    font-weight:normal;
}

.toc li a:hover {
    color: #2B6CB0!important;
}
 
.toc-target,
h2[id],h3[id],h4[id] {
    scroll-margin-top:120px;
}

/* Op mobiel: verberg geneste lijsten in de TOC */
@media (max-width: 1023px) {
    .toc ul ul {
        display: none;
    }
} 

/* ================= VARIOUS ================= */

main a {
  color: #1F4E85;
  text-decoration: underline;
}

main a:hover {
  color: #2B6CB0;
}

section {
  margin-top:0;
  margin-bottom:30px; 
}
 

.lastSection {
  border:none!important;
}

 

canvas {
  max-width: 100%;
  display: block;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.25);
  padding:10px;
  border-radius:15px;
}

.signature {
  text-align: left;
}

.photo-wrap {
  width: 200px;       
}

.photo-wrap img {
  display: block;
  margin: 10px auto 0 auto;  /* centreert binnen wrapper */
}

.martin {
  margin-top:20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border:solid 3px #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.a2a_kit {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

#streamLoader {
		position:fixed;
		bottom:80px;
		left:50%;
		transform:translateX(-50%);
		background:rgba(0,0,0,0.75);
		color:white;
		padding:10px 16px;
		border-radius:8px;
		font-size:14px;
		display:none;
		z-index:9999;
}
 
.middle {
  margin:0 auto!important;
  text-align:center!important;
}


.fullwidth {
  width:100%;
  height:auto;
}

.thumb { 
  max-width:300px!important;
  float:right;
  margin-right:20px;
  height: auto;
}

.left {
  float:left!important
}  

.extrainfo {
  margin-top:8px;
  font-size:13px;
  opacity:0.85;
  line-height:1.4;
}

.track-meta, .track-meta a {
  font-size:14px;
  color:#777;
}

.nosignalcontainer {
  text-align:center;
}

.nosignal {
    display: block;
    height: 200px;
    width: auto;
    margin: 0 auto;
    margin-bottom:40px
}
 
.weekangle {
  font-weight:bold;
  font-style:italic;
  font-size:1.1em;
  border-bottom:dotted 1px #000;
  padding-bottom:20px;
  margin-bottom:20px;
}

@media (max-width: 600px) {
  .thumb {
    float:none;
    display:block;
    width:100%;
    margin:0;
  }
  
  .left {
    float:none!important;
  }    
}


.image-crop {
    width: 100%;
    height: 300px;  
    overflow: hidden;
}

.image-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
     -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
}

@media (max-width: 768px) {
    .image-crop { 
      height:200px!important
    }
}
 

#radioplatforms img {
    max-height: 60px;
    width: auto;
    display: block;
}

@media (max-width: 360px) {
  #radioplatforms img {
    margin:0 auto;
    display: block;
  }
}
