/* ================================================
   RADIO SANGAM - PODCASTS PAGE STYLES
   ================================================ */

/* === VARIABLES (same as main site) === */
:root {
    --primary-dark: #1a1a2e;
    --primary-medium: #16213e;
    --primary-light: #0f3460;
    --accent-gold: #e94560;
    --accent-gold-hover: #c13651;
    --accent-secondary: #f47068;
    --bg-main: #f8f9fa;
    --bg-secondary: #e9ecef;
    --bg-dark: #212529;
    --bg-card: #ffffff;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: #adb5bd;
    --text-white: #ffffff;
    --border-color: #dee2e6;
    --shadow-color: rgba(0,0,0,0.1);
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-display: 'Sora', sans-serif;
    --shadow-sm: 0 2px 4px var(--shadow-color);
    --shadow-md: 0 4px 12px var(--shadow-color);
    --shadow-lg: 0 8px 24px var(--shadow-color);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.15);
}

/* === GENERAL === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === PODCAST HERO === */
.podcast-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 60px;
    overflow: hidden;
}

.podcast-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 50%, var(--primary-light) 100%);
    z-index: 1;
}

.podcast-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.podcast-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.podcast-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.podcast-hero-title span {
    display: block;
}

.podcast-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* === LIVE NOW SECTION === */
.live-now-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

.live-now-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.live-now-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-secondary));
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.live-now-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.live-now-image {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.live-now-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-now-info {
    flex: 1;
}

.live-now-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.live-now-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.live-progress-container {
    max-width: 400px;
}

.live-progress-bar {
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.live-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-secondary));
    border-radius: 10px;
    width: 0%;
    transition: width 1s linear;
}

.live-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.live-now-action {
    text-align: center;
}

.listen-live-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.listen-live-btn:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

/* Up Next */
.up-next-container {
    margin-top: 2rem;
}

.up-next-container h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.up-next-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
}

.up-next-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    min-width: 280px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.up-next-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.up-next-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.up-next-item .up-next-info h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.up-next-item .up-next-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* === INTERVIEWS SECTION === */
.interviews-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.interview-player {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.interview-artwork {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.artwork-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interview-artwork:hover .artwork-overlay {
    opacity: 1;
}

.big-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
}

.interview-player-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.interview-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.interview-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.interview-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.interview-controls {
    margin-top: auto;
}

.progress-container {
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.progress-bar {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-secondary));
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
}

.time-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.control-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.05);
}

.control-btn.play-btn {
    width: 65px;
    height: 65px;
    background: var(--accent-gold);
    color: white;
    font-size: 1.25rem;
}

.control-btn.play-btn:hover {
    background: var(--accent-gold-hover);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

/* Interview List */
.interview-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.interview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.interview-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.interview-item.active {
    border: 2px solid var(--accent-gold);
}

.interview-item-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.interview-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-item-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.interview-item-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.interview-item-play {
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* === RJ PODCASTS SECTION === */
.rj-podcasts-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

.rj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.rj-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rj-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.rj-card.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.rj-card.coming-soon:hover {
    transform: none;
}

.rj-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.rj-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rj-card:hover .rj-card-image img {
    transform: scale(1.1);
}

.rj-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.rj-card-overlay h3 {
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.rj-card-info {
    padding: 1.5rem;
}

.rj-card-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.rj-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--accent-gold);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rj-card-btn:hover {
    background: var(--accent-gold-hover);
}

.rj-card-btn.disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

/* === PODCAST MODAL === */
.podcast-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.podcast-modal.active {
    opacity: 1;
    visibility: visible;
}

.podcast-modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-gold);
    color: white;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
}

.modal-header img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.modal-rj-info h3 {
    color: white;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-rj-info p {
    color: rgba(255, 255, 255, 0.7);
}

.modal-episodes {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.episode-item:hover {
    background: var(--bg-secondary);
}

.episode-item.active {
    background: rgba(233, 69, 96, 0.1);
    border-left: 3px solid var(--accent-gold);
}

.episode-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
}

.episode-item.active .episode-number {
    background: var(--accent-gold);
    color: white;
}

.episode-info {
    flex: 1;
    min-width: 0;
}

.episode-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.episode-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.episode-play {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Modal Player */
.modal-player {
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.modal-player-info {
    text-align: center;
    margin-bottom: 1rem;
}

.modal-player-info span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.modal-player-controls .control-buttons {
    justify-content: center;
}

/* === SCHEDULE SECTION === */
.schedule-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
}

.schedule-section .section-title {
    color: white;
}

.schedule-section .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.schedule-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.schedule-tab.active {
    background: var(--accent-gold);
    color: white;
}

.schedule-content {
    display: grid;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.schedule-item.current {
    background: rgba(233, 69, 96, 0.2);
    border: 1px solid var(--accent-gold);
}

.schedule-time {
    min-width: 120px;
    text-align: center;
}

.schedule-time span {
    display: block;
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 700;
}

.schedule-time small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.schedule-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.schedule-info {
    flex: 1;
}

.schedule-info h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.schedule-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.schedule-status {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-status.live {
    background: var(--accent-gold);
    color: white;
}

.schedule-status.upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.schedule-status.passed {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
}

.schedule-item.passed {
    opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .podcast-hero {
        min-height: 40vh;
        padding: 100px 1.5rem 40px;
    }
    
    .live-now-content {
        flex-direction: column;
        text-align: center;
    }
    
    .live-now-image {
        width: 120px;
        height: 120px;
    }
    
    .live-progress-container {
        max-width: 100%;
    }
    
    .interview-player {
        grid-template-columns: 1fr;
    }
    
    .interview-artwork {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .interview-player-right {
        text-align: center;
    }
    
    .interview-info h3 {
        font-size: 1.5rem;
    }
    
    .interview-list {
        grid-template-columns: 1fr;
    }
    
    .rj-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .rj-card-image {
        height: 150px;
    }
    
    .rj-card-overlay h3 {
        font-size: 1.2rem;
    }
    
    .rj-card-info {
        padding: 1rem;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .modal-header img {
        width: 80px;
        height: 80px;
    }
    
    .schedule-item {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .schedule-time {
        min-width: auto;
        text-align: left;
    }
    
    .schedule-tabs {
        gap: 0.25rem;
    }
    
    .schedule-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .up-next-list {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .rj-grid {
        grid-template-columns: 1fr;
    }
    
    .control-buttons {
        gap: 1rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
    
    .control-btn.play-btn {
        width: 55px;
        height: 55px;
    }
}

/* === NAV ACTIVE STATE === */
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link.active::after {
    width: 100%;
}