/* Volet Éducatif Styles */
.educatif-hero {
    background: var(--womency-gradient);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Tabs */
.educatif-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.tab-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--womency-gradient);
    color: white;
    border-color: var(--womency-pink);
}
.tab-btn:hover {
    background: var(--womency-gradient);
    color: white;
    border-color: var(--womency-pink);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Séries Grid */
.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.serie-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.serie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.serie-image {
    position: relative;
    height: 200px;
    background: #f8f9fa;
    overflow: hidden;
}

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

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--womency-gradient);
    color: white;
    font-size: 3rem;
}

.badge-free {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.serie-episodes-count {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.serie-content {
    padding: 1.5rem;
}

.serie-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--womency-dark);
}

.serie-expert {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.serie-description {
    color: #495057;
    margin-bottom: 1rem;
}

.btn-view-serie {
    display: inline-flex;
    align-items: center;
    color: var(--womency-pink);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-serie:hover {
    transform: translateX(5px);
}

/* Webinaires */
.webinaire-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--womency-dark);
}

.category-title i {
    color: var(--womency-pink);
    margin-right: 0.5rem;
}

.webinaires-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.webinaire-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.webinaire-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.webinaire-image {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.placeholder-image-small {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.webinaire-info {
    flex: 1;
}

.webinaire-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.expert-info {
    color: var(--womency-pink);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.webinaire-info .description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.duration {
    color: #6c757d;
    font-size: 0.85rem;
}

.webinaire-action {
    flex-shrink: 0;
}

.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--womency-gradient);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .series-grid {
        grid-template-columns: 1fr;
    }
    
    .educatif-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .webinaire-item {
        flex-direction: column;
        text-align: center;
    }
    
    .webinaire-image {
        width: 100%;
        height: 150px;
    }
}
