/* Coachs Page - Blog Editorial Styles */

.editorial-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.editorial-header {
    text-align: center;
    margin-bottom: 60px;
}

.editorial-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.editorial-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section Enhancements */
.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.badge-nouveau {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.badge-primeur {
    background: linear-gradient(45deg, #3498db, #9b59b6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); }
    to { box-shadow: 0 6px 25px rgba(52, 152, 219, 0.6); }
}

/* Launch Announcement */
.launch-announcement {
    text-align: center;
    margin-bottom: 30px;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
    animation: fadeInUp 1s ease-out;
}

.launch-badge i {
    font-size: 1.2rem;
    animation: rocket 2s ease-in-out infinite;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Filter Buttons */
.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #ddd;
    background: white;
    color: #666;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    border-color: #34495e;
    box-shadow: 0 6px 15px rgba(52, 73, 94, 0.3);
}

.newsletter-btn:hover, .newsletter-btn.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #3498db;
    color: white;
}

.news-btn:hover, .news-btn.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-color: #e74c3c;
    color: white;
}

.drills-btn:hover, .drills-btn.active {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-color: #f39c12;
    color: white;
}

/* Facebook Style Ad */
.content-categories {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.ads-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.facebook-style-ad {
    width: 280px;
    background: white;
    border: 1px solid #dddfe2;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.facebook-style-ad:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced Exclusive Ads */
.exclusive-ad {
    border: 2px solid #f39c12;
    background: linear-gradient(135deg, #fff, #fefcf8);
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { box-shadow: 0 2px 8px rgba(243, 156, 18, 0.2); }
    50% { box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4); }
}

.ad-header {
    padding: 10px 15px;
    border-bottom: 1px solid #dddfe2;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sponsored {
    font-size: 0.75rem;
    color: #8a8d91;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4px 8px;
    background: #e74c3c;
    color: white;
    border-radius: 12px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulseIndicator 1.5s infinite;
}

@keyframes pulseIndicator {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.ad-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ad-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin: 0 auto;
    animation: iconFloat 2s ease-in-out infinite;
}

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

.energy-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.ad-text {
    text-align: center;
}

.coaching-brand {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-style: italic;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ad-text h5 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1c1e21;
    line-height: 1.3;
}

.ad-text p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    color: #65676b;
    line-height: 1.4;
}

.enhanced-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enhanced-btn:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
}

.enhanced-btn i {
    transition: transform 0.3s ease;
}

.enhanced-btn:hover i {
    transform: translateX(3px);
}

.exclusive-overlay {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 4px 12px;
    border-radius: 0 10px 0 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.coming-soon {
    animation: comingSoonGlow 2s ease-in-out infinite alternate;
}

@keyframes comingSoonGlow {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

/* Newsletter Signup Ad Styles */
.newsletter-signup-ad {
    border: 2px solid #3498db;
    background: linear-gradient(135deg, #f8fcff, #e3f2fd);
    animation: newsletterGlow 3s ease-in-out infinite;
}

@keyframes newsletterGlow {
    0%, 100% { box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2); }
    50% { box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4); }
}

.newsletter-signup-ad .sponsored {
    background: #3498db;
    color: white;
}

.newsletter-signup-ad .pulse-indicator {
    background: #3498db;
}

.newsletter-signup-ad .coaching-brand {
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-signup-ad .exclusive-overlay {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.notification-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.mini-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.mini-newsletter-form input[type="email"] {
    padding: 8px 12px;
    border: 1px solid #bdd9f2;
    border-radius: 15px;
    font-size: 0.8rem;
    background: #f8fcff;
    transition: border-color 0.3s ease;
}

.mini-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.newsletter-signup-ad .enhanced-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.newsletter-signup-ad .enhanced-btn:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

.mini-btn {
    padding: 8px 15px;
    font-size: 0.75rem;
    border-radius: 15px;
}

.mini-btn span {
    font-size: 0.75rem;
}

/* Dynamic Info Box */
.dynamic-info-box {
    margin-top: 30px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dynamic-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c, #f39c12, #2ecc71);
    border-radius: 12px 12px 0 0;
}

.info-content {
    display: none;
    animation: fadeInContent 0.5s ease-in-out;
}

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

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.info-header i {
    font-size: 1.2rem;
    color: #3498db;
    padding: 8px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
}

.info-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.info-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
}

/* Info content specific colors */
.info-content[data-info="newsletter"] .info-header i {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.info-content[data-info="news"] .info-header i {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.info-content[data-info="drills"] .info-header i {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.info-content[data-info="all"] .info-header i {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.category-filter {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Compact Newsletter */
.compact-newsletter {
    margin-top: 30px;
    max-width: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.compact-newsletter-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.compact-newsletter-content p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.compact-newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.compact-newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.compact-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.compact-newsletter-form button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.compact-newsletter-form button:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-1px);
}

/* Fix category filter layout */

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-categories {
        flex-direction: column;
        gap: 20px;
    }
    
    .facebook-style-ad {
        width: 100%;
        max-width: 100%;
    }
    
    .category-filter {
        justify-content: center;
    }
}

/* Enhanced Filter Buttons */

/* Page Hero Content */
.publication-schedule {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.schedule-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.3);
    max-width: 400px;
}

.schedule-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.schedule-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.schedule-card p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.schedule-card p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Content Categories Filter */
.content-categories {
    margin-bottom: 50px;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-medium);
    background: transparent;
    color: var(--primary-medium);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-medium);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(18, 57, 90, 0.3);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-badge.newsletter {
    background: #3498db;
    color: white;
}

.article-badge.news {
    background: #e74c3c;
    color: white;
}

.article-badge.drills {
    background: #f39c12;
    color: white;
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-meta .date {
    font-weight: 600;
    color: var(--primary-medium);
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-status.upcoming {
    color: var(--primary-medium);
    background: rgba(18, 57, 90, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(18, 57, 90, 0.2);
}

/* Blog Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, var(--bg-secondary), #e8f4f8);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(18, 57, 90, 0.1);
}

.newsletter-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
}

.blog-newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.blog-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-medium);
}

.blog-newsletter-form button {
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.blog-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 57, 90, 0.4);
}

.blog-newsletter-form button i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .editorial-section {
        padding: 60px 0;
    }
    
    .editorial-header h2 {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .category-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .blog-newsletter {
        padding: 30px 20px;
    }
    
    .blog-newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .newsletter-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .schedule-card {
        margin: 0 20px;
        padding: 25px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .category-filter {
        padding: 0 10px;
    }
}
