/* ===== RADIO PAGE STYLES ===== */

/* Page Header */
.radio-page-header {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/radio/radio-header.jpg') center/cover;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.radio-page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
}

.radio-page-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 1rem;
    font-size: 1rem;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Featured Show Section */
.featured-show {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(197,165,114,0.2);
}

.featured-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 50%, rgba(26,26,26,0.9) 100%);
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.featured-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.featured-host {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.featured-time {
    color: #888;
    margin-bottom: 1.5rem;
}

.featured-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.featured-actions {
    display: flex;
    gap: 1rem;
}

.btn-featured {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-featured:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197,165,114,0.3);
}

.btn-schedule {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-schedule:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
}

/* All Shows Section */
.all-shows {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

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

.section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #aaa;
    font-size: 1.1rem;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.show-card {
    background: rgba(40, 40, 40, 0.95);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(197,165,114,0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.show-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(197,165,114,0.15);
}

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

.show-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.show-listeners {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.show-listeners i {
    color: var(--primary-color);
}

.show-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.show-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.show-host {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.show-time {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.show-description {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.show-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: auto;
}

.show-link:hover {
    gap: 0.8rem;
    color: var(--accent-color);
}

/* Schedule Section */
.schedule-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
}

.schedule-day {
    background: rgba(40,40,40,0.95);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(197,165,114,0.2);
}

.schedule-day h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.schedule-day p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.schedule-day small {
    color: #888;
    font-size: 0.8rem;
}

/* Listen Live CTA */
.listen-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .featured-image::after {
        background: linear-gradient(0deg, rgba(26,26,26,0.9), transparent);
    }
    
    .shows-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .radio-page-title {
        font-size: 2.5rem;
    }
    
    .featured-content h2 {
        font-size: 2rem;
    }
    
    .featured-actions {
        flex-direction: column;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}