/* ===================================================================
   SECTION PODCAST "ORANGE IS THE NEW TALK" + BANNIÈRE FLOTTANTE
   Design premium, cohérent avec la charte dorée #d8b553
   =================================================================== */

/* ===================================================================
   1. SECTION PODCAST HOMEPAGE (après preuve sociale)
   =================================================================== */

.section-podcast {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.section-podcast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(216, 181, 83, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(216, 181, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.podcast-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.podcast-header {
    text-align: center;
    margin-bottom: 50px;
}

.podcast-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d8b553 0%, #c9a943 100%);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: pulseGold 2.5s ease-in-out infinite;
}

.podcast-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.podcast-title .icon-podcast {
    color: #d8b553;
    margin-right: 10px;
}

.podcast-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 20px;
}

.podcast-description {
    font-size: 1rem;
    color: #b8b8b8;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.podcast-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.podcast-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(216, 181, 83, 0.3);
}

.podcast-thumbnail-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.podcast-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.podcast-play-overlay {
    position: absolute;
    top: 20%; /* Position haute pour ne pas cacher le pot */
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.3s ease;
    opacity: 0.95;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.podcast-badge-overlay {
    background: rgba(26, 26, 26, 0.9);
    color: #d8b553;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Bouton play en bas, sur le pot orange pour attirer l'œil */
.podcast-play-overlay svg {
    margin-top: 80px; /* Descend le bouton play vers le pot */
}

.podcast-video:hover .podcast-play-overlay {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.03);
}

.podcast-video iframe {
    width: 100%;
    height: 315px;
    border: none;
    display: block;
}

.podcast-details {
    padding: 20px;
}

.podcast-episode-title {
    font-size: 1.6rem;
    color: #d8b553;
    margin-bottom: 25px;
    line-height: 1.3;
}

.podcast-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.podcast-topics li {
    font-size: 1rem;
    color: #e0e0e0;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(216, 181, 83, 0.15);
}

.podcast-topics li:last-child {
    border-bottom: none;
}

.podcast-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d8b553;
    font-weight: bold;
    font-size: 1.2rem;
}

.podcast-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d8b553 0%, #c9a943 100%);
    color: #1a1a1a;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 181, 83, 0.3);
}

.podcast-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(216, 181, 83, 0.5);
    background: linear-gradient(135deg, #e0c060 0%, #d8b553 100%);
}

.podcast-cta .icon {
    font-size: 1.2rem;
}

/* ===================================================================
   2. BANNIÈRE FLOTTANTE "NOUVEAU PODCAST" (toutes pages)
   =================================================================== */

.podcast-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #d8b553 0%, #c9a943 50%, #d8b553 100%);
    background-size: 200% 100%;
    color: #1a1a1a;
    padding: 12px 20px;
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    animation: gradientSlide 4s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.podcast-banner.hidden {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.podcast-banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.podcast-banner-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.podcast-banner-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.podcast-banner-text strong {
    font-weight: 700;
}

.podcast-banner-btn {
    background: #1a1a1a;
    color: #d8b553;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.podcast-banner-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: scale(1.05);
}

.podcast-banner-close {
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
    line-height: 1;
}

.podcast-banner-close:hover {
    color: #000000;
    transform: rotate(90deg);
}

/* Décalage du contenu pour la bannière */
body.podcast-banner-visible {
    padding-top: 50px;
}

/* ===================================================================
   3. RESPONSIVE MOBILE
   =================================================================== */

/* Tablettes (≤768px) */
@media (max-width: 768px) {
    .section-podcast {
        padding: 60px 20px;
    }
    
    .podcast-title {
        font-size: 2rem;
    }
    
    .podcast-subtitle {
        font-size: 1.1rem;
    }
    
    .podcast-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .podcast-video iframe {
        height: 280px;
    }
    
    .podcast-episode-title {
        font-size: 1.4rem;
    }
    
    .podcast-banner-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .podcast-banner-text {
        font-size: 0.85rem;
    }
}

/* Mobiles (≤480px) */
@media (max-width: 480px) {
    .section-podcast {
        padding: 50px 15px;
    }
    
    .podcast-title {
        font-size: 1.6rem;
    }
    
    .podcast-subtitle {
        font-size: 1rem;
    }
    
    .podcast-description {
        font-size: 0.95rem;
    }
    
    .podcast-video iframe {
        height: 220px;
    }
    
    .podcast-episode-title {
        font-size: 1.2rem;
    }
    
    .podcast-topics li {
        font-size: 0.95rem;
        padding: 10px 0 10px 25px;
    }
    
    .podcast-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* Badge et bouton play mobiles - ne pas cacher le pot */
    .podcast-badge-overlay {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .podcast-play-overlay svg {
        width: 60px;
        height: 60px;
        margin-top: 50px; /* Ajusté pour mobile */
    }
    
    .podcast-banner {
        padding: 10px 15px;
    }
    
    .podcast-banner-content {
        gap: 8px;
    }
    
    .podcast-banner-icon {
        font-size: 1.2rem;
    }
    
    .podcast-banner-text {
        font-size: 0.8rem;
        text-align: center;
        flex: 1;
    }
    
    .podcast-banner-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    body.podcast-banner-visible {
        padding-top: 70px;
    }
}

/* Animation pulse pour le badge */
@keyframes pulseGold {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(216, 181, 83, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(216, 181, 83, 0);
    }
}
