/* Base Styles */
:root {
  --primary: #004aad;       /* Royal Blue */
  --primary-dark: #002a63;  /* Darker Blue for hover */
  --accent: #ff4d00;        /* Orange-Red */
  --accent-light: #ff6a1a;  /* Lighter gradient */
  --secondary: #ffcc00;     /* Gold */
  --background: #ffffff;    /* White */
  --text: #222222;          /* Main text */
  --text-light: #f9f9f9;    /* Light text */
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--text);
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffcc00;
    color: var(--secondary);
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    color: var(--text); /* Changed from --secondary to --text (dark gray) */
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent); /* Keeps the accent color underline */
    margin: 15px auto 0;
}

/* Top Bar */
.top-bar {
    background-color: #1657a2;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    margin-left: 15px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

.top-links a {
    margin-left: 20px;
    color: white;
    transition: color 0.3s;
}

.top-links a:hover {
    color: var(--accent);
}

/* Header */
.header {
    background-color: var(--bg-darker);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: 100px;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;

}

.main-nav li {
    margin: 0 10px;
}

.main-nav a {
    padding: 8px 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-weight: bold;
}

.main-nav a:hover, 
.main-nav a.active {
    color: var(--accent);
}

.player-controls {
    display: flex;
    align-items: center;
}

.play-btn {
    background-color: var(--accent);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-right: 15px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.play-btn:hover {
    background-color: var(--accent-dark);
}

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

.volume-control i {
    margin-right: 8px;
    color: var(--accent);
}

.volume-control input[type="range"] {
    width: 80px;
    -webkit-appearance: none;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    outline: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero {
    position: relative;
    text-align: center;
}
.hero-img {
    width: 100%;
    height: auto;
    display: block;
}


.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Change from 'cover' to 'contain' */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
    background-color: #000; /* Add fallback background color */
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    position: absolute;
    bottom: 100px;
    left: 100px;
    max-width: 600px;
    padding: 40px;
    font-size: large;
    border-left: 5px solid white;
    --text: #white!;          /* Dark gray (primary text) */
    --text-secondary: #white!;/* Medium gray (secondary text) */
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.slider-prev, 
.slider-next {
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 15px;
    transition: color 0.3s;
    z-index: 10;
}

/* Current Show Section */
.current-show {
    background-color: var(--bg-darker);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.current-show-container {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.show-image {
    position: relative;
    flex: 0 0 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.show-info {
    flex: 1;
    padding: 10px;
}

.on-air {
    display: inline-block;
    background-color: rgba(255, 51, 102, 0.2);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.show-title {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.show-time {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1rem;
}

.show-time i {
    margin-right: 8px;
}

.show-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.host-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.host-image {
    width: 40px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent);
}

.host-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.listen-btn {
    background-color: var(--accent);
    color: var(--secondary);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.listen-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

/* Upcoming Show Container */
.upcoming-show-info {
  background: #f9f9f9; /* light background */
  border: 2px solid #dddddd;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 500px;
  margin: 0 auto;
  transition: transform 0.2s ease;
}

.upcoming-show-info:hover {
  transform: translateY(-3px);
}

/* Title */
.upcoming-title {
  font-size: 18px;
  font-weight: 600;
  color: orangered; /* red highlight */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Host Image */
.upcoming-host-info {
  flex-shrink: 0;
}

.next-host-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid orangered; /* red border */
}

/* Show Details */
.upcoming-details {
  flex: 1;
}

.upcoming-show-name {
  font-size: 20px;
  font-weight: 600;
  margin: 5px 0;
  color: #222;
}

.upcoming-show-time {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

.upcoming-show-presenter {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .current-show-container {
        flex-direction: column;
    }
    
    .show-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
    
    .show-title {
        font-size: 1.5rem;
    }
}

/* Shows Section */
.shows-section {
    padding: 80px 0;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.show-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.show-card:hover {
    transform: translateY(-10px);
}

.show-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.show-info {
    padding: 20px;
}

.show-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.show-time {
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 10px;
}

.show-desc {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.view-all {
    text-align: center;
}

/* Presenters Section */
.presenters-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
}

.presenters-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
}

.presenter-card {
    scroll-snap-align: start;
    flex: 0 0 250px;
    text-align: center;
}

.presenter-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--accent);
}

.presenter-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.show-name {
    color: var(--accent);
    font-size: 0.9rem;
}

/* News Section */
.news-section {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 20px;
}

.news-category {
    display: inline-block;
    background-color: var(--accent);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-excerpt {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.read-more {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.read-more:hover::after {
    margin-left: 10px;
}

/* News Section - Four in a row */
.news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-section .news-card {
    width: 100%;
    margin-bottom: 0;
}

.news-section .news-image {
    height: 150px; /* Reduced image height */
}

.news-section .news-content h3 {
    font-size: 16px; /* Smaller heading */
    margin: 8px 0;
}

.news-section .news-excerpt {
    font-size: 14px; /* Smaller text */
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-section .news-category {
    font-size: 12px;
    padding: 4px 8px;
}

.news-section .read-more {
    font-size: 13px;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background-color: var(--accent);
    color: var(--secondary);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info {
    padding: 15px;
    flex-grow: 1;
}

.event-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.event-location, 
.event-time {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.event-location i, 
.event-time i {
    margin-right: 8px;
    color: var(--accent);
}

.event-info .btn {
    margin-top: 10px;
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* App Section */
.app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, orange 100%);
}

.app-section .container {
    display: flex;
    align-items: center;
}

.app-content {
    flex: 1;
    padding-right: 50px;
}

.app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.app-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 10px 15px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.app-btn:hover {
    transform: translateY(-5px);
}

.app-btn i {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--accent);
}

.app-btn span {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.app-btn span strong {
    font-size: 1.1rem;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-logo {
    height: 120px;
    margin-bottom: 15px;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--accent);
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

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

.contact-info i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .player-controls {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .slide-content {
        left: 50px;
        max-width: 500px;
    }
    
    .app-section .container {
        flex-direction: column;
    }
    
    .app-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
    }
    
    .social-links {
        margin-bottom: 10px;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
        bottom: 50px;
        max-width: none;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .now-playing-info {
        flex-direction: column;
        text-align: center;
    }
    
    .album-art {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 70vh;
    }
    
    .slide-content {
        padding: 20px;
        bottom: 30px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
}

/* Player Controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    background-color: var(--accent);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

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

.volume-control input[type="range"] {
    width: 80px;
    -webkit-appearance: none;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    outline: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--accent-dark);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Current Show Listen Button */
.listen-btn {
    background-color: var(--accent);
    color: var(--secondary);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-top: 20px;
}

.listen-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
}

/* Sync button states */
.audio-playing .listen-btn i,
.audio-playing .play-btn i {
    animation: pulse 1.5s infinite;
}

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

/* Podcast Section */
.podcast-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.podcast-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.podcast-card:hover {
    transform: translateY(-10px);
}

.podcast-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.podcast-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.9);
    color: var(--accent);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 5px rgba(108, 92, 231, 0.3);
}

.podcast-image .play-btn:hover {
    background-color: var(--accent);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.podcast-info {
    padding: 20px;
}

.episode-number {
    display: inline-block;
    background-color: var(--accent-light);
    color: var(--text);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.podcast-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text);
}

.podcast-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.podcast-date i {
    margin-right: 5px;
    color: var(--accent);
}

.podcast-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.duration i {
    margin-right: 5px;
    color: var(--accent);
}

.download-btn {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.download-btn:hover {
    color: var(--accent-dark);
}

.download-btn i {
    margin-right: 5px;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* Audio Player State */
.playing .play-btn i {
    animation: pulse 1.5s infinite;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Active nav link styling */
.main-nav a.active {
    color: var(--accent);
    position: relative;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-darker);
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-darker);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav {
    padding: 80px 20px 20px;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: var(--text);
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent);
}

.mobile-player-controls {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    color: var(--text);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Show mobile menu button on smaller screens */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .player-controls {
        display: none;
    }
}

body.no-scroll {
    overflow: hidden;
}



.shows-section {
    padding: 40px 0;
    background: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
}

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

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shows-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.shows-track {
    display: inline-flex;
    gap: 25px;
    animation: scroll 40s linear infinite;
    padding: 10px 0;
}

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

.show-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.show-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.show-card.current-show {
    border: 3px solid #FF5722;
    transform: scale(1.03);
}

.show-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF5722;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.show-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.show-info {
    padding: 20px;
}

.show-info h3 {
    margin: 0 0 8px 0;
    color: #222;
    font-size: 1.3rem;
}

.show-time {
    color: #FF5722;
    font-weight: 600;
    margin: 8px 0;
    font-size: 0.9rem;
}

.show-desc {
    color: #555;
    font-size: 0.95rem;
    margin: 12px 0 18px;
    line-height: 1.4;
}

.btn {
    display: inline-block;
    padding: 8px 18px;
    background: #FF5722;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

.event-card {
    color: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 20px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.event-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.event-date {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 10px;
    width: 60px;
    text-align: center;
    align-self: flex-start;
}
.event-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}
.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}
.btn {
    background: #FF5722;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
}
.btn:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

/* News bulletin Section */

.news-bulletin {
  padding: 60px 20px;
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #222;
}

.news-audio-list {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-audio-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.news-audio-item:hover {
  transform: translateY(-4px);
}

.news-meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 8px;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 8px 0 12px;
  color: #333;
}

/* Audio Player */
.news-audio-item audio {
  width: 100%;
  outline: none;
  border-radius: 6px;
}


