/* ============================================
   WEBRADIO CMS - RESPONSIVE STYLESHEET
   Mobile-First Approach
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color, #f5f5f5);
    color: var(--text-color, #333);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}
.bg-fixed {
  position: fixed;
  inset: 0;
  background: url("https://vb.mjsweb.nl/img/1.png") center / cover no-repeat;
  z-index: -1;
   background-position: center 25px;
}
img {
    max-width: 100%;
    height: auto;
}
/* Center wrapper */
.tunein-wrap{
  display:flex;
  justify-content:center;
  margin: 20px 0;
}

/* TuneIn button */
.tunein-btn{
  min-width: 180px;     /* kleiner */
  height: 42px;
  padding: 0 22px;

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

  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #0b2f14;

  background: linear-gradient(
    to right,
    #b9f6c7 0%,
    #6eea8a 45%,
    #2bdc3a 75%
   
  );

  transition: all .25s ease;
}


/* Hover effect (zoals je afbeelding) */
.tunein-btn:hover{
  background: linear-gradient(
    to right,
    #a6f2ba 0%,
    #4eea70 60%,
    #22c837 100%
  );
  color: #06210f;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
/* ============================================
   CUSTOM CONTEXT MENU (LI + LINKS)
   ============================================ */

#customMenu{
  position: fixed;
  display: none;
  min-width: 180px;
  padding: 6px 0;
  margin: 0;

  list-style: none;
  background: rgba(15,15,15,.95);
  backdrop-filter: blur(8px);

  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.6);
  z-index: 99999;
  font-size: 13px;
}

/* LI basis */
#customMenu li{
  padding: 0;
  margin: 0;
}

/* Klikbare items */
#customMenu li a{
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;

  transition: background .2s ease, color .2s ease;
}

/* Hover effect */
#customMenu li a:hover{
  background: rgba(255,255,255,.08);
  color: #6eea8a; /* groen accent */
}

/* Disabled / tekst-only item */
#customMenu li.disabled{
  padding: 10px 16px;
  color: rgba(255,255,255,.45);
  cursor: default;
  pointer-events: none;
}

/* Scheidingslijn (optioneel) */
#customMenu li + li{
  border-top: 1px solid rgba(255,255,255,.08);
}

#customMenu li a.mjs{
    text-align: center;
  font-weight: 600;
  color: #6eea8a;
}


/* ============================================
   HEADER - DESKTOP FIRST
   ============================================ */
.header {
  
    background: var(--header-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: var(--header-text, white);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.header-image-only {
    width: 100%;
    text-align: center;
    height: 250px;
}

.header-image-only img {
    max-width: 100%;
    height: auto !important;
      margin-top: 40px;
}

.logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.header-logo-img {
    max-height: 60px;
    height: auto !important;
    width: auto !important;
}

.logo {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.station-info h1 {
    font-size: 28px;
    margin: 0;
    line-height: 1.2;
}

.station-info p {
    font-size: 16px;
    margin: 5px 0 0 0;
    opacity: 0.9;
    line-height: 1.2;
}

/* ============================================
   NAVIGATION - DESKTOP FIRST
   ============================================ */
.nav-menu {
    background: var(--nav-bg, #34495e);

    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: fixed;
}

.mobile-menu-toggle {
    display: none;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-menu li {
    flex: 0 0 auto;
}

.nav-menu li a {
    display: block;
    padding: 15px 25px;
    color: var(--nav-text, white);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    font-weight: 500;
}

.nav-menu li a:hover {
    background: var(--nav-hover, rgba(255,255,255,0.1));
    border-bottom-color: var(--nav-active, #3498db);
}

.nav-menu li a.active {
    background: var(--nav-hover, rgba(255,255,255,0.1));
    border-bottom-color: var(--nav-active, #3498db);
}

/* ============================================
   NAVIGATION - MOBILE FIRST
   ============================================ */
.nav-menu {
    background: var(--nav-bg, #2c3e50);
    position: relative;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 15px 20px;
    background: none;
    border: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--nav-text, white);
    border-radius: 3px;
    transition: all 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--nav-bg, #2c3e50);
}

.nav-menu ul.active {
    max-height: 500px;
}

.nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--nav-text, white);
    text-decoration: none;
    transition: background 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--nav-hover, rgba(255,255,255,0.1));
}

/* ============================================
   CONTAINER & LAYOUT - MOBILE FIRST
   ============================================ */
.container {
    
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Main content eerst op mobiel */
.main-content {
    order: 1;
     
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-content h2 {
    color: var(--primary-color, #667eea);
    margin-bottom: 15px;
    font-size: 22px;
}

.main-content p {
    margin-bottom: 15px;
    font-size: 15px;
}

/* Sidebars onder main content */
.sidebar-left {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-right {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ============================================
   WIDGETS
   ============================================ */
.widget {
    background: var(--widget-bg, white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.widget-header {
    background: var(--widget-header-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: var(--widget-header-text, white);
    padding: 12px 15px;
    font-weight: 600;
    font-size: 16px;
}

.widget-content {
    padding: 15px;
    font-size: 14px;
}

/* ============================================
   RADIO PLAYER
   ============================================ */
.radio-player {
    text-align: center;
    padding: 20px;
}

.album-art {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.now-playing-info h3 {
    font-size: 18px;
    margin: 10px 0 5px;
    color: var(--primary-color, #667eea);
}

.now-playing-info p {
    font-size: 14px;
    color: #666;
}

.play-button {
    background: var(--button-color, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.05);
}

.play-button.playing {
    background: #e74c3c;
}

/* ============================================
   DJ SCHEDULE
   ============================================ */
.show-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 15px;
    align-items: center;
}

.show-item:last-child {
    border-bottom: none;
}

.show-time {
    font-weight: 600;
    color: var(--primary-color, #667eea);
    font-size: 14px;
    min-width: 80px;
}

.show-name {
    font-weight: 600;
    font-size: 15px;
}

.dj-name {
    color: #666;
    font-size: 13px;
}

/* ============================================
   FORMS
   ============================================ */
.request-form input,
.request-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px; /* Prevent zoom on iOS */
}

.request-form textarea {
    min-height: 80px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--button-color, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   REQUEST ITEMS
   ============================================ */
.request-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.request-item:last-child {
    border-bottom: none;
}

.song-info {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.request-by {
    color: #666;
    font-size: 13px;
}

/* ============================================
   SOCIAL MEDIA
   ============================================ */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #667eea);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* ============================================
   NEWS
   ============================================ */
.news-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h4 {
    color: var(--primary-color, #667eea);
    margin-bottom: 10px;
    font-size: 16px;
}

.news-item p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.news-item small {
    color: #999;
    font-size: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--footer-bg, #2c3e50);
    color: var(--footer-text, white);
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 14px;
}


/* ============================================
   TABLET STYLES (768px+)
   ============================================ */
@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .logo-section {
        flex-direction: row;
    }
    
    .logo {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .station-info h1 {
        font-size: 28px;
    }
    
    .station-info p {
        font-size: 16px;
    }
    
    /* Hide hamburger, show normal nav */
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu ul {
        max-height: none;
        overflow: visible;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .nav-menu li {
        width: auto;
        border-bottom: none;
    }
    
    .nav-menu li a {
        padding: 15px 0;
    }
    
    .nav-menu li a.active {
        border-bottom: 3px solid var(--nav-active, #667eea);
    }
    
    /* 2-column layout: main + right sidebar */
    .container {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 1200px;
        padding: 20px;
        gap: 20px;
    }
    
    .main-content {
        flex: 1 1 60%;
        min-width: 0;
        padding: 20px;
    }
    
    .sidebar-left {
        display: none; /* Hide left sidebar on tablets */
    }
    
    .sidebar-right {
        flex: 1 1 300px;
        order: 3;
    }
    
    .album-art {
        width: 150px;
        height: 150px;
        font-size: 60px;
    }
    
    .play-button {
        width: auto;
    }
}

/* ============================================
   DESKTOP STYLES (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .container {
        display: grid;
        grid-template-columns: var(--sidebar-left-width, 250px) 1fr var(--sidebar-right-width, 350px);
        max-width: var(--max-container-width, 1400px);
        gap: 30px;
        padding: 30px 20px;
    }
    
    .main-content {
          background: var(--main-bg1, white);
        order: 2;
        padding: 30px;
    }
    
    .main-content h2 {
        font-size: 28px;
    }
    
    .sidebar-left {
        display: flex;
        order: 1;
    }
    
    .sidebar-right {
        order: 3;
    }
    
    .nav-menu ul {
        gap: 30px;
    }
    
    .album-art {
        width: 180px;
        height: 180px;
        font-size: 72px;
    }
}

/* ============================================
   LARGE DESKTOP (1400px+)
   ============================================ */
@media (min-width: 1400px) {
    .header-content,
    .nav-menu ul {
        max-width: 1600px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
}

/* Touch optimization */
button, .button, a {
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
}

button, .button {
    -webkit-user-select: none;
    user-select: none;
}

/* ============================================
   MOBILE RESPONSIVE - HEADER & NAV
   ============================================ */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .station-info h1 {
        font-size: 22px;
    }
    
    .station-info p {
        font-size: 14px;
    }
    
    .header-logo-img {
        max-height: 50px;
    }
    
    /* Hamburger menu */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 15px 20px;
        background: none;
        border: none;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--nav-text, white);
        border-radius: 3px;
        transition: all 0.3s;
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-menu ul {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .nav-menu ul.active {
        max-height: 500px;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        text-align: left;
        border-bottom: none !important;
    }
    
    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: rgba(255,255,255,0.15);
        border-bottom: none !important;
    }
}

/* ============================================
   NAVIGATION HEIGHT CONTROL
   ============================================ */
.nav-menu {
    min-height: var(--nav-height, 50px);
}

.nav-menu li a {
    height: var(--nav-height, 50px);
    display: flex;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
}

@media (max-width: 768px) {
    .nav-menu li a {
        height: auto;
        min-height: 50px;
        padding: 15px 20px;
    }
}

/* ============================================
   WIDGET HEADER HEIGHT CONTROL
   ============================================ */
.widget-header {
    min-height: var(--widget-header-height, 45px);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

/* ============================================
   NOW PLAYING WIDGET - ENHANCED
   ============================================ */
.album-cover {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.album-cover:hover {
    transform: scale(1.05);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color, #667eea);
    margin-bottom: 5px;
    text-align: center;
}

.track-artist {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    text-align: center;
}

.track-album {
    font-size: 14px;
    color: #999;
    font-style: italic;
    text-align: center;
    margin-bottom: 15px;
}

.stream-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.stream-icons a {
    display: inline-block;
    transition: transform 0.3s;
}

.stream-icons a:hover {
    transform: scale(1.2);
}

.stream-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s;
    cursor: pointer;
}

.stream-icon:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .album-cover {
        width: 150px;
        height: 150px;
    }
    
    .track-title {
        font-size: 16px;
    }
    
    .track-artist {
        font-size: 14px;
    }
    
    .stream-icon {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   TICKER MODE STYLING
   ============================================ */
.ticker-mode {
    overflow: hidden;
    width: 100%;
    margin: 15px 0;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, 
        var(--widget-bg, #fff) 0%, 
        transparent 5%, 
        transparent 95%, 
        var(--widget-bg, #fff) 100%);
    padding: 10px 0;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 15s linear infinite;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color, #667eea);
     padding-left: 100%;
}

.ticker-content span {
    display: inline-block;
}



@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pauzeer ticker bij hover */
.ticker-content:hover {
    animation-play-state: paused;
}

/* Mobile ticker sneller */
@media (max-width: 768px) {
    .ticker-content {
        font-size: 14px;
        animation-duration: 15s;
    }
}

/* ============================================
   ALBUM COVER FALLBACK
   ============================================ */
.album-cover img[src=""],
.album-cover img:not([src]) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-cover img[src=""]:after,
.album-cover img:not([src]):after {
    content: '♪';
    font-size: 80px;
    color: white;
}

/* ============================================
   CUSTOM PAGES & PAGE MENU
   ============================================ */
.page-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-menu-list li {
    margin-bottom: 10px;
}

.page-menu-list a {
    display: block;
    padding: 12px 15px;
    background: linear-gradient(135deg, var(--main-bg1, #667eea) 0%, var(--main-bg1, #764ba2) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.page-menu-list a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Page content styling */
.page-content {
  
    background: #f9f7f7;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-content h1 {
    color: var(--primary-color, #667eea);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color, #667eea);
}

.page-body {
    line-height: 1.8;
    color: #333;
}

.page-body h2 {
    color: var(--secondary-color, #764ba2);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-body p {
    margin-bottom: 15px;
}

.page-body ul, .page-body ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.page-meta {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
}

.player1-icons a{
  display:inline-flex;
  padding:6px;
  border-radius:10px;
  transition: 
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.player1-icons img{
  width:20px;
  height:20px;
  object-fit:contain;
  transition: transform .25s ease, filter .25s ease;
}

/* Hover effect */
.player1-icons a:hover{
  background: rgba(255,255,255,.08);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  transform: translateY(-4px) scale(1.05);
}

/* Icoon iets feller */
.player1-icons a:hover img{
  filter: drop-shadow(0 0 6px rgba(255,255,255,.6));
  transform: scale(1.08);
}
/* Container links */
.footer-controls{
  position: absolute;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}
.footer-toggle{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg,#00e5ff,#2979ff);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;

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

  box-shadow: 0 0 6px rgba(0,229,255,.6);
}
.footer-toggle:hover{
  filter: brightness(1.2);
}
.footer-scroller{
  width: 70px;
  height: 4px;
  appearance: none;
  background: rgba(255,255,255,.25);
  border-radius: 10px;
  cursor: pointer;
}

/* Chrome / Edge */
.footer-scroller::-webkit-slider-thumb{
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00e5ff;
  box-shadow: 0 0 6px rgba(0,229,255,.8);
}
/* Firefox */
.footer-scroller::-moz-range-thumb{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00e5ff;
  border: none;
}
  /* Footer Media Player Styles */
.footer-media-player{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;
  height: 30px;

  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  z-index: 999;
   transition: height .35s ease;
}
.footer-media-player.minimized{
  height: 6px;
}
.footer-media-player.minimized .footer-player-content,
.footer-media-player.minimized .footer-player-text{
  opacity: 0;
  pointer-events: none;
}
.footer-media-player.minimized .footer-scroller{
  opacity: .5;
}
body.footer-minimized{
  padding-bottom: 6px !important;
}
   
   
    
        .footer-player-sticky {
            position: fixed;
              bottom: 0;
            left: 0;
            right: 0;
  background: rgba(0,0,0,.3) !important;
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-player-content{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

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

  pointer-events: auto; /* laat kliks door */
}

.footer-player-content embed,
.footer-player-content object 
/* echte player mag wél kliks */
.footer-player-content iframe,
.footer-player-content audio,
.footer-player-content button{
  pointer-events: auto;
}
.footer-player-text{
  margin-left: auto;
  padding-right: 16px;

  font-size: 12px;
  color: rgba(255,255,255,.7);
  white-space: nowrap;

  display: flex;
  align-items: center;
  gap: 6px;

  position: relative;
  z-index: 5;

  pointer-events: auto;
}
.footer-player-textr{
  margin-right: auto;
  padding-right: 16px;

  font-size: 12px;
  color: rgba(255,255,255,.7);
  white-space: nowrap;

  display: flex;
  align-items: center;
  gap: 6px;

  position: relative;
  z-index: 5;

  pointer-events: auto;
}

.mjs-brand{
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 999px;

  background: linear-gradient(135deg,#00e5ff,#2979ff);
  color: #fff;
  font-size: 11px;

  pointer-events: auto;
}




        .footer-player-content iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Add padding to body when sticky footer is active */
                body {
            padding-bottom: 30px !important;
        }
                
@media (max-width: 768px){
  .footer-media-player{
    height: auto;
    flex-direction: column;
    padding: 8px 0;
  }

  .footer-player-content{
    position: relative;
    left: auto;
    transform: none;
  }

  .footer-player-text{
    margin: 6px 0 0;
    padding: 0;
    justify-content: center;
    font-size: 11px;
  }
}

                    /* ============================================
   FIX: STICKY NAVIGATION (DESKTOP + TABLET + MOBILE)
   ============================================ */

:root {
  --nav-height: 50px;
}

/* Nav vastzetten */
.nav-menu {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
}

/* Nav inhoud netjes centreren */
.nav-menu ul {
  align-items: center;
}

/* Ruimte maken onder vaste nav */
body {
  padding-top: var(--nav-height);
}
@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  .nav-menu {
    height: auto;
    min-height: var(--nav-height);
  }

  body {
    padding-top: var(--nav-height);
  }
}

