:root {
    --primary-color: #FF3366;
    --secondary-color: #6C63FF;
    --dark-bg: rgba(18, 18, 18, 0.95);
    --dark-surface: rgba(30, 30, 30, 0.8);
    --light-text: #FFFFFF;
    --gray-text: #9CA3AF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-image: url('../images/red-radio-dark-background-close-up-old-retro-things-shooted-with-vintage-style-colors-toned_155003-32074.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--light-text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.main-nav {
    position: fixed;
    width: 100%;
    background: var(--dark-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: -40px;
}

.logo img {
    height: 60px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.logo-name img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo img:hover,
.logo-name img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.4rem;
    padding: 0.5rem 0.2rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Consistent Section Header Styling */
.program-section h2,
.about-section h2,
.social-section h2 {
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 2rem;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

html {
    scroll-behavior: smooth;
}

/* Optioneel: voeg wat padding toe voor betere scroll positie */
#top {
    scroll-margin-top: 70px; /* Aanpassen aan de hoogte van je navbar */
}

/* Zelfde voor andere secties */
#programma,
#over,
#footer {
    scroll-margin-top: 70px;
}

#banner-container {
    width: 100%;
    max-width: 1200px; /* Pas dit aan naar gewenste maximale breedte */
    margin: 20px auto;
    padding: 0 15px;
}

#banner-content {
    width: 100%;
    position: relative;
}

#banner-content img {
    width: 100%;
    height: auto;
    display: block;
}

.music-theme {
    /* Voeg hier eventuele thema-specifieke stijlen toe */
}

#banner-container {
    display: none;  /* Banner wordt verborgen */
    position: absolute;
    top: 120%;
    left: 72%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    z-index: 100;
}

#banner-content {
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

#banner-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Zorg ervoor dat de header een relatieve positie heeft */
.hero {
    position: relative;
    padding-top: 60px; /* Pas dit aan voor meer/minder ruimte boven */
    padding-bottom: 60px; /* Pas dit aan voor meer/minder ruimte onder */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}


/* Logo op pagina */
.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: #FFBF00;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

/* De grote W */
.hero h1 .big-w {
    font-size: 1.5em;
    display: inline-block;
    vertical-align: bottom;
    line-height: 0.7;
    margin-bottom: 0.075em;
}

/* Zorgt ervoor dat elk span op een nieuwe regel komt */
.hero h1 span {
    display: block;
}

/* FM label met radio effect */
.hero h1::after {
    content: "FM";
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    position: absolute;
    top: -10px;      /* Aangepast van 5px naar -10px om het hoger te zetten */
    right: -5px;    /* Aangepast van -30px naar -15px om het meer naar links te zetten */
    color: #FFBF00;
    text-shadow: 0 0 10px #FFBF00;
    animation: radioGlow 2s infinite;
}

/* Radio glow animatie */
@keyframes radioGlow {
    0% {
        opacity: 1;
        text-shadow: 0 0 10px #FFBF00;
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 20px #FFBF00, 0 0 30px #FFBF00;
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 10px #FFBF00;
    }
}


.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.broadcast-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.broadcast-time i {
    color: var(--primary-color);
}

/* Voeg dit toe aan je style.css */
.program-card {
    transition: all 0.3s ease;
    position: relative;
}

.active-program {
    animation: borderGlow 2s infinite;
    border: 2px solid #FFBF00;
}

@keyframes borderGlow {
    0% {
        box-shadow: 0 0 10px #FFBF00;
    }
    50% {
        box-shadow: 0 0 20px #FFBF00;
    }
    100% {
        box-shadow: 0 0 10px #FFBF00;
    }
}

/* Subtiele glow voor de tijd */
.active-program .time {
    color: #FFBF00;
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.5);
}

/* Stijl voor het modale venster */
.modal {
    display: none;          /* Verborgen by default */
    position: fixed;        /* Vast op het scherm */
    z-index: 1000;         /* Bovenop andere content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);  /* Donkere achtergrond */
}

/* Het witte venster zelf */
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
}

/* Container voor de video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sluitknop (X) */
.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Button Styling */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary, 
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover, 
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Spotify-geïnspireerde stijl voor de luister live knop */
#listen-live-btn.btn-primary {
    background: #1DB954 !important;
    background-image: none !important;
    color: white;
    transition: all 0.3s ease;
}

#listen-live-btn.btn-primary:hover {
    background: #1ed760 !important;
    background-image: none !important;
    transform: scale(1.02);
}

#listen-live-btn.btn-primary.playing {
    background: #1ed760 !important;
}

/* Specifieke stijl voor de programma knop */
#show-program-btn {
    background-color: #E50914;
    color: white;
    transition: background-color 0.3s ease;
}

#show-program-btn:hover {
    background-color: #B2070E;
}

/* Algemene button styling */
.btn-primary, 
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


/* Specifieke stijl voor de programma knop */
#show-program-btn {
    background-color: #E50914;
    color: white;
    transition: background-color 0.3s ease;
}

#show-program-btn:hover {
    background-color: #B2070E;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Program Section */
.program-section {
    padding: 4rem 0;
    background: var(--dark-surface);
    backdrop-filter: blur(10px);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-grid div:nth-last-child(-n+2) {
    width: 100%;
    margin: 0 auto;
}

.program-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card .time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.program-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--dark-surface);
    backdrop-filter: blur(10px);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--light-text);
    font-size: 1.1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Algemene spacing tussen alle sections */
section {
    margin: 80px 0;    /* Ruimte boven en onder elke section */
    padding: 40px 0;   /* Interne ruimte binnen elke section */
}

/* Specifieke aanpassingen per section indien nodig */
.hero {
    margin-top: 0;     /* Geen top margin voor de eerste section */
}

.program-section {
    margin: 100px 0;   /* Bijvoorbeeld meer ruimte voor het programma */
}

.about-section {
    margin: 100px 0;   /* Aanpassing voor about section */
}

.social-section {
    margin: 100px 0;   /* Aanpassing voor social section */
}

/* Laatste section voor de footer */
section:last-of-type {
    margin-bottom: 100px;  /* Extra ruimte voor de footer */
}

.social-section {
    padding: 4rem 0;
    background: var(--dark-surface);
    backdrop-filter: blur(10px);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: var(--light-text);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card i {
    font-size: 2rem;
}

.social-card span {
    font-size: 1.2rem;
    font-weight: 600;
}

.social-card.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-card.facebook {
    background: #1877F2;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}


/* Responsive aanpassingen */
@media (max-width: 768px) {
    .social-feeds {
        grid-template-columns: 1fr; /* Één kolom op mobiel */
        max-width: 400px; /* Kleinere maximale breedte op mobiel */
    }

    .instagram-embed,
    .fb-page {
        min-height: 350px; /* Nog kleiner op mobiel */
    }
}


/* Footer */
footer {
    background: var(--dark-bg);
    padding: 4rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-info p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.address-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.address-info p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.4;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-links a {
    display: block;
    color: var(--gray-text);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--gray-text);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Radio Player Styling */
.radio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(40, 40, 40, 0.7); /* Lichter grijs */
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#audio-player {
    height: 30px;
    width: 200px;
    border-radius: 50px;
    background: transparent;
}

#audio-player::-webkit-media-controls-panel {
    background: rgba(50, 50, 50, 0.8); /* Lichter grijs voor de controls */
    color: var(--light-text);
}

#audio-player::-webkit-media-controls-current-time-display,
#audio-player::-webkit-media-controls-time-remaining-display {
    color: var(--light-text);
    opacity: 0.9; /* Verhoogde opacity voor betere zichtbaarheid */
}

#audio-player::-webkit-media-controls-play-button,
#audio-player::-webkit-media-controls-mute-button {
    opacity: 0.9;
    filter: invert(1);
}

#audio-player::-webkit-media-controls-volume-slider {
    opacity: 0.9;
}


/* Live Indicator aangepast */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999; /* Lichter grijs */
    font-size: 0.8rem;
}

.pulse {
    width: 6px;
    height: 6px;
    background: #999; /* Lichter grijs */
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .program-grid,
    .social-feeds {
        grid-template-columns: 1fr;
    }
    
    .logo-container {
        margin-left: -20px;
    }

    .logo img,
    .logo-name img {
        height: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, 
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .program-section h2,
    .about-section h2,
    .social-section h2 {
        font-size: 1.75rem;
        padding-left: 15px;
    }
}
