/*
Theme Name: SantaRadio Theme Modern V9
Theme URI: https://santaradio.nl
Author: SantaRadio
Author URI: https://santaradio.nl
Description: Een speciaal kerstradio thema voor SantaRadio met ingebouwde streaming player
Version: 1.0.0
License: GPL v2 or later
Text Domain: santaradio-theme-modern-v9
*/

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.site-container {
    background: white;
    min-height: 100vh;
}

/* Upper Header with Mini Player */
.upper-header {
    background: #1a365d;
    color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.upper-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-player {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mini-player-controls {
    display: flex;
    gap: 10px;
}

.mini-player-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mini-player-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.mini-player-info {
    font-size: 14px;
}

.now-playing-mini {
    font-weight: bold;
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, #e53e3e 0%, #dd2c2c 100%);
    color: white;
    padding: 40px 0;
    margin-top: 55px;
    position: relative;
    overflow: hidden;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="3" fill="white" opacity="0.15"/><circle cx="10" cy="90" r="2" fill="white" opacity="0.1"/><circle cx="90" cy="10" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    animation: snow 10s linear infinite;
}

@keyframes snow {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.site-branding {
    text-align: center;
    margin-bottom: 30px;
}

.site-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.site-title {
    font-size: 3rem;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Georgia', serif;
}

.site-description {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Main Stream Player */
.main-player {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 30px;
}

.player-display {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.album-art {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #e53e3e, #38a169);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.track-info {
    flex: 1;
}

.now-playing-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.track-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a365d;
    margin: 5px 0;
}

.track-artist {
    font-size: 1.2rem;
    color: #555;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.player-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #dd2c2c 100%);
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.player-btn.play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
}

.player-btn.secondary {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    background: #4a5568;
}

.player-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.player-btn:active {
    transform: translateY(0);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 100px;
    height: 5px;
    background: #e2e8f0;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #e53e3e;
    border-radius: 50%;
    cursor: pointer;
}

/* Navigation */
.main-navigation {
    background: #2d3748;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    background: rgba(255,255,255,0.1);
    color: #fbbf24;
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e53e3e;
}

/* Listen Page Specific */
.listen-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.listen-card {
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.listen-card:hover {
    transform: translateY(-5px);
    border-color: #e53e3e;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.listen-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.listen-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 10px;
}

.listen-link {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.listen-link:hover {
    background: #c53030;
    transform: scale(1.05);
}

/* Full Player */
.full-player {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.full-player-display {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.album-art-large {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e53e3e 0%, #38a169 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.full-track-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.full-track-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 10px;
}

.full-track-artist {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 20px;
}

.track-meta {
    display: flex;
    gap: 30px;
    font-size: 1rem;
    color: #666;
}

.full-player-controls {
    background: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Footer */
.site-footer {
    background: #1a202c;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e53e3e;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .upper-header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .player-display {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .full-player-display {
        grid-template-columns: 1fr;
    }
    
    .album-art-large {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Christmas Decorations */
.christmas-lights {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    height: 35px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 35"><circle cx="10" cy="17" r="8" fill="%23fbbf24"/><circle cx="30" cy="17" r="8" fill="%2338a169"/><circle cx="50" cy="17" r="8" fill="%23e53e3e"/><circle cx="70" cy="17" r="8" fill="%233b82f6"/><circle cx="90" cy="17" r="8" fill="%23fbbf24"/></svg>');
    background-size: 100px 35px;
    z-index: 999;
    pointer-events: none;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Modernized look inspired by Sky Radio --- */
body {
    background: #f5f6f9;
    color: #0f172a;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

.upper-header {
    background: #0b4db6;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mini-player-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mini-player-info .mini-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mini-track-cover {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    background: #fff;
}

.main-header {
    background: radial-gradient(circle at top, #0b74de 0%, #0b4db6 50%, #0a3f92 100%);
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.christmas-lights {
    display: none !important;
}

.player-display .album-art,
.album-art-large {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
}

.player-display .album-art img,
.album-art-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.full-player {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px rgba(11, 77, 182, 0.05);
}

.listen-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.section-title {
    color: #0f172a;
    font-weight: 700;
}

/* buttons */
.player-btn, .mini-player-btn {
    background: #fff;
    color: #0b4db6;
    border-radius: 9999px;
    border: none;
}

/* remove emoji styling */
.listen-icon {
    font-size: 2.5rem;
    color: #0b4db6;
}

/* layout fixes for header player */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.main-player {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.player-display {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.player-display .album-art {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    background: rgba(255,255,255,0.06);
    border-radius: 1rem;
    overflow: hidden;
}

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

.track-info {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.track-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.track-artist {
    color: rgba(255,255,255,0.85);
}

.album-art-large {
    width: 180px;
    height: 180px;
    overflow: hidden;
}

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


/* ========== Clean top bar ========== */
.sr-topbar {
    background: #0b4db6;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(11,77,182,0.15);
}
.sr-topbar-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.sr-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.sr-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
}
.sr-title {
    margin: 0;
    font-size: 1.35rem;
    color: #fff;
}
.sr-tagline {
    margin: .15rem 0 0;
    color: rgba(255,255,255,.8);
}
.sr-content {
    max-width: 1140px;
    margin: 2.5rem auto 5.5rem;
    padding: 0 1.5rem;
}

/* hide any christmas lights or rotating items from old theme */
.christmas-lights,
.main-header::before {
    display: none !important;
    animation: none !important;
}

/* ========== Fixed bottom player ========== */
.sr-bottom-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f172a;
    color: #fff;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: .9rem 1.5rem;
    box-shadow: 0 -10px 30px rgba(15,23,42,0.25);
    z-index: 9999;
}
.sr-bottom-left {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.sr-bottom-cover {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}
.sr-bottom-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sr-bottom-meta {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.sr-bottom-label {
    font-size: .65rem;
    opacity: .7;
}
.sr-bottom-title {
    font-weight: 700;
}
.sr-bottom-artist {
    font-size: .8rem;
    opacity: .8;
}
.sr-bottom-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.sr-bottom-controls .player-btn {
    background: #fff;
    color: #0f172a;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 1.1rem;
    cursor: pointer;
}
.sr-bottom-controls input[type=range] {
    accent-color: #fff;
}

/* footer clean */
.site-footer {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 5rem;
    color: #475569;
}
/* --- iOS / Apple-like hero --- */
.sr-hero {
    position: relative;
    min-height: 62vh;
    overflow: hidden;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}
.sr-hero-slides {
    position: absolute;
    inset: 0;
}
.sr-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .9s ease, transform .9s ease;
    filter: saturate(1.05);
}
.sr-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}
/* extra transitions could be extended */
.sr-hero-overlay {
    position: relative;
    z-index: 10;
    max-width: 1140px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sr-brand-inline {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.sr-hero-logo {
    width: 88px;
    height: auto;
    border-radius: 22px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: .5rem;
}
.sr-hero-title {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.sr-hero-tagline {
    color: rgba(255,255,255,.85);
}

/* glass player */
.sr-glass-player {
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 20px;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.sr-glass-left {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.sr-glass-cover {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(15,23,42,.25);
}
.sr-glass-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sr-glass-meta {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.sr-player-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255,255,255,.85);
}
.sr-player-title {
    font-weight: 700;
    color: #fff;
}
.sr-player-artist {
    color: rgba(255,255,255,.78);
}
.sr-glass-controls {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.sr-glass-controls .player-btn {
    background: #fff;
    color: #0f172a;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
}
.sr-content-empty {
    min-height: 1px;
    padding: 0 1.5rem;
    max-width: 1140px;
    margin: 1.5rem auto 5.5rem;
}

/* bottom player remains from v2 (already added) */

@media (max-width: 768px) {
    .sr-glass-player {
        flex-direction: column;
        align-items: flex-start;
    }
    .sr-hero {
        min-height: 75vh;
    }
}
/* refine hero logo container */
.sr-brand-inline {
    background: radial-gradient(circle at top, rgba(0,0,0,.42) 0%, rgba(0,0,0,.08) 55%, rgba(0,0,0,0) 100%);
    padding: 1.1rem 1.3rem;
    border-radius: 24px;
    backdrop-filter: blur(16px);
    width: fit-content;
}
.sr-hero-logo {
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 16px 45px rgba(0,0,0,.25);
}
/* Full-page player layout */
.sr-hero-player {
    min-height: 100vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.sr-hero-overlay-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sr-glass-player-large {
    width: min(700px, 92vw);
    gap: 1.75rem;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,.12);
}
.sr-glass-cover-large {
    width: 96px;
    height: 96px;
    border-radius: 22px;
}
.sr-player-title {
    font-size: 1.55rem;
}
.sr-player-artist {
    font-size: .9rem;
}
.sr-content-empty {
    min-height: 0;
    margin: 0;
    padding: 0;
}
/* Apple-style refinements */
.sr-glass-player-large {
    width: min(760px, 94vw);
    padding: 1.35rem 1.5rem;
    gap: 2rem;
    background: rgba(248,248,248,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}
.sr-glass-cover-large {
    width: 78px;
    height: 78px;
    border-radius: 18px;
}
.sr-player-title {
    font-size: 1.45rem;
    letter-spacing: -0.01em;
}
.sr-player-artist {
    opacity: .85;
}
.sr-glass-controls .player-btn {
    background: rgba(255,255,255,0.95);
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
}
.sr-glass-controls .play-icon {
    color: #0f172a;
    font-size: 1.1rem;
}
.sr-glass-controls input[type=range] {
    accent-color: #fff;
    background: rgba(255,255,255,0.28);
    border-radius: 999px;
}

/* slider more iOS-like */
.sr-glass-controls input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #0f172a;
    border-radius: 50%;
}
/* Apple-style glass footer */
.sr-glass-footer {
    position: relative;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}
.sr-glass-footer p {
    margin: 0;
    color: rgba(255,255,255,0.85);
}
body {
    background: radial-gradient(circle at 20% 30%, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
}
/* body back to neutral */
body {
    background: #0f172a;
    color: #e2e8f0;
}

/* smaller cover (35% smaller from 78px -> about 50px) */
.sr-glass-cover-large {
    width: 50px;
    height: 50px;
    border-radius: 16px;
}

/* full-width glass footer, bright */
.sr-glass-footer {
    width: 100%;
    background: rgba(255,255,255,0.26);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 -14px 35px rgba(0,0,0,0.12);
    padding: 1.5rem 1.5rem 1.6rem;
    text-align: center;
    color: #0f172a;
    font-weight: 500;
}
.sr-glass-footer p {
    margin: 0;
    color: #0f172a;
}
/* ensure play icon is visible inside white circle */
.sr-glass-controls .player-btn .play-icon,
.player-btn .play-icon {
    color: #0f172a !important;
    display: inline-block;
    line-height: 1;
}
.player-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* overlay-logo zichtbaar maken */
.sr-overlay-logo {
    position: absolute;
    z-index: 200;              /* boven de slideshow én boven de blur */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    width: 14vw;               /* dit wordt overschreven door inline css uit functions.php */
    height: 14vw;              /* <-- deze hadden we nog niet, nu wel */
    max-width: 280px;
    max-height: 280px;
}
@media (max-width: 768px) {
    .sr-overlay-logo {
        width: 26vw;
        height: 26vw;
    }
}
