/* Tales From The Sky Lounge - Custom Podcast Episode Styling */

/* Episode Header Styling */
.episode-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.episode-number {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #87ceeb;
    margin-bottom: 10px;
}

.episode-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.episode-guest {
    font-size: 18px;
    color: #b8e6ff;
    margin: 15px 0;
    font-style: italic;
}

.episode-meta {
    font-size: 14px;
    color: #d1ecf1;
    margin-top: 20px;
    opacity: 0.9;
}

/* Guest Bio Section */
.guest-bio {
    background: #f8f9fa;
    border-left: 5px solid #2a5298;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.guest-bio h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 22px;
}

.guest-bio p {
    line-height: 1.7;
    color: #555;
}

/* Key Topics Section */
.key-topics {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.key-topics h3 {
    color: #2a5298;
    margin-bottom: 20px;
    font-size: 22px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.key-topics ul {
    list-style: none;
    padding: 0;
}

.key-topics li {
    background: #f1f8ff;
    margin: 8px 0;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 4px solid #2a5298;
    transition: transform 0.2s ease;
}

.key-topics li:hover {
    transform: translateX(5px);
    background: #e3f2fd;
}

.key-topics li:before {
    content: "▶";
    color: #2a5298;
    margin-right: 10px;
    font-size: 12px;
}

/* Listen Links Section */
.listen-links {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.listen-links h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.platform-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.platform-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.platform-btn.spotify { border-color: #1db954; }
.platform-btn.apple { border-color: #fa243c; }
.platform-btn.amazon { border-color: #ff9900; }
.platform-btn.youtube { border-color: #ff0000; }

/* Episode Description Enhancement */
.episode-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 30px 0;
}

.episode-description p {
    margin-bottom: 20px;
}

/* Company/Contact Information */
.company-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border-top: 3px solid #2a5298;
}

.company-info h4 {
    color: #2a5298;
    margin-bottom: 10px;
}

.contact-links a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
    margin-right: 15px;
}

.contact-links a:hover {
    text-decoration: underline;
}

/* Episode Navigation */
.episode-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
}

.nav-episode {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.nav-episode a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-episode a:hover {
    color: #1e3c72;
    text-decoration: underline;
}

/* Quote Styling */
.episode-quote {
    background: #fff;
    border-left: 5px solid #2a5298;
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: #555;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Tags/Categories */
.episode-tags {
    margin: 25px 0;
}

.episode-tags .tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin: 5px 5px 5px 0;
    text-decoration: none;
    transition: background 0.3s ease;
}

.episode-tags .tag:hover {
    background: #bbdefb;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .episode-header {
        padding: 25px 20px;
    }
    
    .episode-title {
        font-size: 24px;
    }
    
    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-btn {
        width: 200px;
        text-align: center;
    }
    
    .episode-navigation {
        flex-direction: column;
        gap: 15px;
    }
}

/* Podcast Logo/Branding */
.podcast-branding {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
}

.podcast-branding img {
    max-width: 200px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.podcast-branding h2 {
    color: #2a5298;
    margin: 20px 0 10px 0;
    font-size: 28px;
}

.podcast-branding p {
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Call-to-Action Section */
.cta-section {
    background: #2a5298;
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
}

.cta-section h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.cta-section p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2a5298;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #2a5298;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Audio Player Styling */
.audio-player {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
}

.audio-player audio {
    width: 100%;
    max-width: 500px;
    margin: 10px 0;
}

/* Episode Series Styling */
.episode-series {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.episode-series h4 {
    color: #856404;
    margin-bottom: 10px;
}

.episode-series p {
    color: #856404;
    margin: 0;
}

.podcast-cover-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}