/* Webradio CMS - Dynamic Styles */

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

html {
    background:
        linear-gradient(rgba(0,0,0,0.23), rgba(0,0,0,0.23)),
        url('../images/background_1778941917.png?v=1784055916') center top / cover no-repeat fixed;
    background-color: rgba(245, 247, 250, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: transparent;
    color: rgba(44, 62, 80, 1);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    min-height: 100vh;
}

/* Header */
header {
        background: transparent;
        color: rgba(255, 255, 255, 1);
    min-height: 120px;
    display: flex;
    align-items: center;
    padding: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}


h1.site-title {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 15px;
    
    min-height: 80px;
    }

.site-logo {
    max-height: 100px;
    width: 100%; max-width: 100%;    object-fit: contain;
}

/* Navigation */
nav {
    background: rgba(10, 219, 101, 0.52);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* nav-container via ticker sectie hieronder */

nav a {
    padding: 15px 20px;
    color: rgba(241, 242, 243, 1);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

nav a:hover {
    color: rgba(251, 138, 9, 1);
    background: rgba(10, 219, 101, 0.52);
    border-bottom-color: rgba(224, 155, 6, 1);
}

/* Nav ticker */
.nav-container {
    display: flex;
    align-items: center;
    gap: 0;
}
.nav-links {
    display: flex;
    flex-shrink: 0;
    gap: 0;
}
.nav-ticker-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    margin-left: 10px;
    gap: 8px;
    overflow: hidden;
}
.nav-ticker-outer {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}
.nav-ticker-inner {
    display: inline-block;
    white-space: nowrap;
    animation: navtick 60s linear infinite;
    font-size: 14px;
    color: #000000;
    opacity: 0.95;
}
.nav-ticker-wrap:hover .nav-ticker-inner { animation-play-state: paused; }
@keyframes navtick {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.nav-ticker-btn {
    flex-shrink: 0;
    padding: 5px 14px;
    background: linear-gradient(135deg, #ed6307 0%, #12fe01 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.1s;
}
.nav-ticker-btn:hover { opacity: 0.85; transform: translateY(-1px); }

@media (max-width: 900px) {
    .nav-ticker-wrap { display: none; }
}


/* 3-Column Layout */
.three-column-layout {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Sidebars */
.sidebar-left, .sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* Widget Cards */
.widget-card {
    background: rgba(0, 0, 0, 0.74);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: all 0.3s;
    border: 1px solid rgba(224, 224, 224, 1);
    backdrop-filter: blur(2px);
}

.widget-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.widget-header {
    background: rgba(102, 126, 234, 0.19);
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    border-bottom: 2px solid rgba(224, 224, 224, 1);
}

.widget-header .icon {
    font-size: 20px;
}

.widget-header h3 {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 1);



}

.widget-content {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 1);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 15px;
}

a {
    color: rgba(102, 126, 234, 1);
    transition: color 0.3s;
}

a:hover {
    color: rgba(247, 135, 8, 1);
}

/* Buttons */
.btn, .btn-submit, .play-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 1) 0%, rgba(43, 255, 0, 0.91) 100%);
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover, .btn-submit:hover, .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.play-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

/* Forms */
input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(224, 224, 224, 1);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.74);
    color: rgba(44, 62, 80, 1);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 1);
}

/* Responsive */

/* Dropdown submenu */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}
.nav-dropdown .nav-drop-toggle {
    display: flex;
    align-items: center;
}
.nav-drop-toggle {
    cursor: pointer;
    user-select: none;
}
.nav-drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(10, 219, 101, 0.52);
    border: 1px solid rgba(224, 224, 224, 1);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 200;
    overflow: hidden;
}
.nav-dropdown:hover .nav-drop-menu {
    display: block;
}
.nav-drop-menu a {
    display: block;
    padding: 10px 16px;
    color: rgba(241, 242, 243, 1);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    transition: background 0.15s;
}
.nav-drop-menu a:last-child { border-bottom: none; }
.nav-drop-menu a:hover {
    background: rgba(251, 138, 9, 1)22;
    color: rgba(251, 138, 9, 1);
}

@media (max-width: 1200px) {
    .three-column-layout {
        grid-template-columns: 240px 1fr 240px;
    }
}

@media (max-width: 900px) {
    .three-column-layout {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .sidebar-right {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .three-column-layout {
        grid-template-columns: 1fr;
        margin: 10px 0;
        padding: 0 10px;
        gap: 10px;
    }
    .sidebar-left { order: 1; }
    .main-content  { order: 2; }
    .sidebar-right { order: 3; grid-column: auto; }

    nav a {
        font-size: 13px;
        padding: 10px 10px;
    }
    h1.site-title {
        font-size: 22px;
        min-height: 50px;
    }
}

/* Utilities */
.text-light {
    color: rgba(255, 255, 255, 1);
}

/* Widget header met achtergrond afbeelding support */
.widget-header.has-bg {
    background-color: rgba(102, 126, 234, 0.19);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Afbeelding laag met opacity */
.widget-header.has-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
}

/* Zwarte overlay voor leesbaarheid */
.widget-header.has-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.66);
    z-index: 1;
}

.widget-header.has-bg * {
    position: relative;
    z-index: 2;
}

/* LIVE DJ Widget Pulse Animation */
@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); 
    }
    50% { 
        box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0); 
    }
}

/* ============================================
   CUSTOM CSS (from Admin → Instellingen)
   ============================================ */

#artiesten-strip { display:flex; gap:12px; width:max-content; animation: artscroll 20s linear infinite; }
#artiesten-strip:hover { animation-play-state: paused; }
@keyframes artscroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

.mnu { list-style:none; margin:0; padding:0; }
.mnu li { border-bottom: 0.5px solid rgba(255,255,255,0.12); }
.mnu li:last-child { border-bottom: none; }
.mnu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  color: #e8e8e8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  border-radius: 6px;
}
.mnu a:hover { background: rgba(255,255,255,0.10); color: #ffffff; padding-left: 20px; }
.mnu a i { font-size: 16px; opacity: 0.7; flex-shrink: 0; }

.tunein-wrap { padding: 8px 0; }
.tunein-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #1a8a3c;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #147830;
  letter-spacing: 0.03em;
  transition: background 0.15s, transform 0.1s;
}
.tunein-btn:hover { background: #157a34; transform: translateY(-1px); }
.tunein-btn:active { transform: scale(0.97); }
.tunein-btn i { font-size: 17px; }
.player1-icons { 
  display: flex; 
  gap: 6px; 
  flex-wrap: wrap; 
  padding: 4px 0; 
  justify-content: center;  /* ← dit toevoegen */
}
.player1-icons a {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.player1-icons a:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.player1-icons a:active { transform: scale(0.93); }
.player1-icons img { width:22px; height:22px; object-fit:contain; display:block; }
.dj-wrap {
  display: inline-block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4);
}
.dj-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 14px 4px 4px;
  pointer-events: none;
  text-transform: uppercase;
}
/* Minimale Floating Icon Menu - Alleen iconen, geen achtergrond */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Floating Menu Container */
.floating-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

/* Geen achtergrond container - alleen iconen */
.menu-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0;
}

/* Menu items - alleen het icoon */
.menu-item {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-item:hover {
    transform: scale(1.15);
}

.menu-item:active {
    transform: scale(1.05);
}

/* Iconen */
.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.menu-item:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(2, 248, 19, 0.15));
}

/* Tooltip (optioneel) */
.menu-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 15px);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.menu-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Pijltje voor tooltip */
.menu-item::before {
    content: '';
    position: absolute;
    right: calc(100% + 7px);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(0, 0, 0, 0.85);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover::before {
    opacity: 1;
}

/* Smooth entrance animatie */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item {
    animation: fadeInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

/* VERBERGEN OP TABLET EN MOBIEL */
@media (max-width: 1024px) {
    .floating-menu {
        display: none !important;
    }
}

/* Extra zeker voor tablets */
@media (max-width: 768px) {
    .floating-menu {
        display: none !important;
    }
}

/* En voor mobiel */
@media (max-width: 480px) {
    .floating-menu {
        display: none !important;
    }
}
/* ============================================
   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;
}
/* ===== VBFM FOOTER PLAYER ===== */
#vbfm-footer-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10, 10, 20, 0.92);
    border-top: 1px solid rgba(255,255,255,0.12);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 24px;
    height: 62px;
    gap: 12px;
    z-index: 9999;
}
.vbfm-footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vbfm-station {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
}
.vbfm-live {
    font-size: 11px;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 5px;
}
.vbfm-live::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
}
.vbfm-footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.vbfm-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.vbfm-song {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}
.vbfm-listeners {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}
body { padding-bottom: 70px; }
/* ============================= */


.req-wrap { border-radius:12px; overflow:hidden; border:1px solid rgba(255,255,255,0.15); box-shadow:0 8px 32px rgba(0,0,0,0.4); background:#0d0d1a; }
.req-header { background:linear-gradient(135deg,#1a6b1a 0%,#2d9e2d 100%); padding:12px 20px; display:flex; align-items:center; gap:10px; }
.req-header span { color:#fff; font-family:Arial,sans-serif; font-size:14px; font-weight:700; letter-spacing:0.04em; }
.req-dots { display:flex; gap:6px; }
.req-dot  { width:10px; height:10px; border-radius:50%; }
.req-iframe { display:block; width:100%; border:none; }
.inklapbaar-btn {
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.social-btn-wrap{
    display:flex;
    gap:10px;
    align-items:center;
}

/* Facebook */
.myfb-round-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#1877f2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:0.2s ease;
    box-shadow:0 2px 6px rgba(0,0,0,0.18);
}

.myfb-round-btn:hover{
    background:#1664d9;
    transform:scale(1.08);
}

/* WhatsApp */
.mywa-round-btn{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#25D366;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    transition:0.2s ease;
    box-shadow:0 2px 6px rgba(0,0,0,0.18);
}

.mywa-round-btn:hover{
    background:#1ebe5d;
    transform:scale(1.08);
}

.myfb-round-btn i,
.mywa-round-btn i{
    line-height:1;
}
@media (max-width: 768px) {
    .three-column-layout { grid-template-columns: 1fr !important; padding: 8px !important; }
    .sidebar-left, .sidebar-right { display: none !important; }
    .main-content { width: 100% !important; padding: 0 !important; }
    .main-nav { overflow-x: auto !important; flex-wrap: nowrap !important; padding-right: 55px !important; }
    .main-nav a { white-space: nowrap !important; font-size: 12px !important; padding: 7px 10px !important; }
    img { max-width: 100% !important; height: auto !important; }
    #mob-menu-btn { display: block !important; }
}
@media (min-width: 769px) {
    #mob-menu-btn { display: none !important; }
}
@media (max-width: 768px) {
    /* Verberg het normale top menu */
    nav.main-nav, .main-nav, nav[class*="nav"], .nav-menu {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .nav-ticker-wrap {
        display: none !important;
    }
}

/* Copyright footer */
#vbfm-copyright {
    text-align: center;
    padding: 14px 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 30px;
    letter-spacing: 0.03em;
}

