/*
Theme Name: Formasound Blog - Dark Theme
Theme URI: https://www.formasound.fr
Author: Formasound
Description: Thème personnalisé pour le blog Formasound, en cohérence avec l'identité visuelle du site principal - Version thème sombre avec couleurs dorées.
Version: 2.0
Text Domain: formasound-blog
*/

/* Importer CSS de base de WordPress */
/* @import url('wp-includes/css/dist/block-library/style.min.css');

/* ==================== VARIABLES - ADAPTATION THÈME SOMBRE ==================== */
:root {
    --gold: #F5A623;
    --gold-dark: #e6a11e;
    --burgundy: #1a1a1a;
    --burgundy-light: #2d2d2d;
    --burgundy-original: #8A193D;
    --accent-blue: #00A8E8;
    --accent-blue-dark: #0095d1;
    --white: #ffffff;
    --gray-light: rgba(255, 255, 255, 0.1);
    --gray-medium: rgba(255, 255, 255, 0.3);
    --gray-dark: rgba(255, 255, 255, 0.7);
    --dark-gray: #333333;
    --light-gray: rgba(255, 255, 255, 0.05);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
    min-height: 100vh;
}

/* ==================== SUPPRESSION ABSOLUE DE TOUS LES EFFETS DE GLOW ==================== */
*,
*::before,
*::after {
    box-shadow: none !important;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

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

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.animated {
    animation: fadeInUp 0.8s ease forwards;
}

/* Animation d'apparition au scroll */
[data-animation] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animation].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Décalage des animations */
[data-animation="fade-up"]:nth-child(2) { transition-delay: 0.1s; }
[data-animation="fade-up"]:nth-child(3) { transition-delay: 0.2s; }
[data-animation="fade-up"]:nth-child(4) { transition-delay: 0.3s; }

 /* ==================== NAVIGATION AVEC HOVER ==================== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.95) !important;
    border-bottom: 1px solid var(--gray-light);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    color: var(--white) !important;
}

.navbar-brand .text-gold {
    color: var(--gold) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
    transform: translateY(-1px);
}

/* SEULEMENT pour les liens normaux, PAS pour le dropdown */
.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: 80%;
}

/* ==================== DROPDOWN HOVER CORRIGÉ ==================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--gold);
    color: var(--burgundy) !important;
}

.dropdown-toggle::after {
    display: none;
}

/* DESKTOP : Hover */
@media (min-width: 992px) {
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
        z-index: 999;
    }
    
    .dropdown-toggle::before {
        content: '\f0d7';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-right: 0.5rem;
        color: var(--gold);
        font-size: 0.7rem;
    }
}

@media (max-width: 991px) {
  .dropdown-menu.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
}
/* ==================== LOGO STYLES ==================== */
.logo-container {
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo-container img {
    height: 100% !important;
    width: auto !important;
    max-height: 40px !important;
    max-width: 40px !important;
    object-fit: contain !important;
    transition: transform 0.3s ease;
    display: block;
    filter: brightness(1.2) !important;
}

.navbar-brand:hover .logo-container {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    margin-left: 5px;
    letter-spacing: 0.5px;
    color: var(--white) !important;
}

.logo-text .text-gold {
    color: var(--gold) !important;
    font-weight: 700;
}

/* ==================== NAVBAR TOGGLER ==================== */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 166, 35, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==================== CLASSES BOOTSTRAP ==================== */
.ms-auto {
    margin-left: auto !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ==================== BOUTONS (SANS GLOW) ==================== */
.btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.btn:hover::after {
    animation: ripple 1s ease-out;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
}

/* Boutons dorés */
.btn-burgundy,
.btn-gold {
    background-color: var(--gold);
    color: var(--burgundy);
    border: none;
}

.btn-burgundy:hover,
.btn-gold:hover {
    background-color: var(--gold-dark);
    color: var(--burgundy);
}

/* Boutons outline dorés */
.btn-outline-burgundy {
    color: var(--gold);
    border: 2px solid var(--gold);
    background-color: transparent;
}

.btn-outline-burgundy:hover {
    background-color: var(--gold);
    color: var(--burgundy);
    border-color: var(--gold);
}

.btn-outline-light {
    color: var(--white);
    border: 2px solid var(--gray-medium);
    background: var(--gray-light);
}

/* Bouton CTA principal - BLEU */
.btn-cta-alt {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark)) !important;
    color: var(--white) !important;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-alt:hover {
    transform: translateY(-3px);
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue)) !important;
    text-decoration: none;
}

/* Animation pour le bouton CTA */
.btn-cta-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-cta-alt:hover::before {
    left: 100%;
}

/* ==================== BLOG PAGE STYLES - THÈME SOMBRE ==================== */

/* Blog Hero Banner */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/blog-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 168, 232, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.blog-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

/* Blog Post Card */
.blog-post-card {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border: 1px solid var(--gray-light);
    color: var(--white);
}

.blog-post-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.blog-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.blog-post-meta .author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.blog-post-meta .author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid var(--gold);
}

.blog-post-meta .date {
    display: flex;
    align-items: center;
}

.blog-post-meta i {
    margin-right: 5px;
    color: var(--gold);
}

.blog-post-card h2 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.blog-post-card h2 a {
    color: var(--white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card h2 a:hover {
    color: var(--gold) !important;
}

.blog-post-excerpt {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-light);
    padding-top: 20px;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-post-tags a {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.blog-post-tags a:hover {
    background-color: var(--gold);
    color: var(--burgundy) !important;
    border-color: var(--gold);
}

/* Featured Post (First Post) */
.featured-post {
    margin-bottom: 50px;
}

.featured-post .blog-post-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.featured-post .blog-post-image {
    height: 100%;
}

.featured-post .blog-post-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.featured-post .featured-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .featured-post .blog-post-card {
        grid-template-columns: 1fr;
    }
    
    .featured-post .blog-post-image {
        height: 250px;
    }
}

/* ==================== SIDEBAR - THÈME SOMBRE ==================== */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--gray-light);
    color: var(--white);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white) !important;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

/* Search Widget */
.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--gray-light);
    border-radius: 50px 0 0 50px;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.search-form input::placeholder {
    color: var(--gray-dark);
}

.search-form input:focus {
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.search-form button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.search-form button:hover {
    transform: translateY(-1px);
}

/* Categories Widget */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list a {
    color: var(--gray-dark) !important;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.categories-list a:hover {
    color: var(--gold) !important;
}

.categories-list .count {
    background-color: rgba(255, 255, 255, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    color: var(--gray-dark);
    border: 1px solid var(--gray-light);
}

.categories-list a:hover .count {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    border-color: var(--gold);
}

/* Popular Posts Widget */
.popular-posts-list {
    list-style: none;
}

.popular-post-item {
    display: flex;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-light);
}

.popular-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 15px;
}

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

.popular-post-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
    color: var(--white) !important;
}

.popular-post-content h4 a {
    color: var(--white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-content h4 a:hover {
    color: var(--gold) !important;
}

.popular-post-content .date {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-cloud a {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.tags-cloud a:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy) !important;
    border-color: var(--gold);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--burgundy-light) 0%, var(--burgundy) 100%);
    position: relative;
}

.newsletter-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

footer .container {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

footer .border-top {
    border-color: var(--gray-light) !important;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-logo .fs-5 {
    font-weight: 700;
    color: var(--white) !important;
}

footer h5 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
}

footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

footer .title-underline {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
}

footer .title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-link {
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--gold) !important;
    text-decoration: none;
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    color: var(--gray-dark) !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--gray-light);
    border: 1px solid var(--gray-light);
}

.social-icons a:hover {
    color: var(--gold) !important;
    background-color: rgba(245, 166, 35, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
}

footer p,
footer li {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Classes spécifiques pour les icônes footer */
footer .text-burgundy {
    color: var(--gold) !important;
}

/* Correction pour le logo dans le footer */
footer .logo-text {
    font-weight: 700;
    color: var(--white) !important;
}

footer .logo-text .text-gold {
    color: var(--gold) !important;
    font-weight: 700;
}

/* ==================== RESPONSIVE MOBILE ==================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 1rem;
        border: 1px solid var(--gray-light);
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(0);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--gray-light);
        margin-left: 1rem;
        margin-top: 0.5rem;
        transform: none;
        opacity: 1;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .dropdown::before {
        display: none;
    }
    
    .btn-cta-alt {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .logo-container {
        width: 35px !important;
        height: 35px !important;
    }
    
    .logo-container img {
        max-height: 35px !important;
        max-width: 35px !important;
    }
}

@media (max-width: 992px) {
    .single-post-title {
        font-size: 2rem;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .blog-post-card h2 {
        font-size: 1.3rem;
    }
    
    .single-post-title {
        font-size: 1.8rem;
    }
    
    .single-post-content {
        font-size: 1rem;
        padding: 25px;
    }
    
    .single-post-header {
        padding: 25px;
    }
    
    .single-post-footer {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .single-post-share {
        justify-content: center;
    }
    
    .comment-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .comment-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .children {
        margin-left: 20px;
    }
    
    .comment-form {
        grid-template-columns: 1fr;
    }
    
    .comment-form-comment,
    .form-submit {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-post-meta .author {
        margin-right: 0;
    }
    
    .single-post-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .single-post-meta .author,
    .single-post-meta .date,
    .single-post-meta .comments {
        margin-right: 0;
    }
    
    .error-404 h1 {
        font-size: 6rem;
    }
    
    .error-404 h2 {
        font-size: 1.5rem;
    }
    
    .single-post-content {
        padding: 20px;
    }
    
    .single-post-header {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .logo-container {
        width: 30px !important;
        height: 30px !important;
    }
    
    .logo-container img {
        max-height: 30px !important;
        max-width: 30px !important;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
        margin-right: 1rem;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
    }
    
    .blog-container {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .blog-hero {
        background: white !important;
        color: black !important;
    }
    
    .blog-post-card,
    .sidebar-widget,
    .single-post-content,
    .comment-body {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd !important;
    }
    
    .navbar,
    .social-icons,
    .comment-reply {
        display: none !important;
    }
}

/* ==================== SUPPORT MOUVEMENT RÉDUIT ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==================== FIXES SUPPLÉMENTAIRES ==================== */

/* Correction pour les contenus WordPress */
.entry-content,
.post-content,
.page-content {
    color: rgba(255, 255, 255, 0.9) !important;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--white) !important;
}

/* Correction pour les listes WordPress */
.entry-content ul,
.entry-content ol,
.post-content ul,
.post-content ol {
    color: rgba(255, 255, 255, 0.9) !important;
    padding-left: 2rem;
}

.entry-content li,
.post-content li {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.5rem;
}

/* Correction pour les images WordPress */
.wp-post-image,
.attachment-post-thumbnail {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Correction pour les widgets WordPress */
.widget {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--gray-light);
    color: var(--white);
}

.widget h3,
.widget h4,
.widget h5 {
    color: var(--white) !important;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.widget h3::after,
.widget h4::after,
.widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

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

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.widget a {
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: var(--gold) !important;
}

/* Correction pour les formulaires WordPress */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-bottom: 15px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: var(--gray-dark);
}

.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
}

/* Correction pour les menus WordPress */
.menu ul {
    list-style: none;
    padding: 0;
}

.menu li {
    padding: 8px 0;
}

.menu a {
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--gold) !important;
}

/* Correction pour les archives WordPress */
.wp-block-archives ul,
.wp-block-categories ul {
    list-style: none;
    padding: 0;
}

.wp-block-archives li,
.wp-block-categories li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

.wp-block-archives li:last-child,
.wp-block-categories li:last-child {
    border-bottom: none;
}

/* Correction pour les derniers commentaires */
.wp-block-latest-comments {
    list-style: none;
    padding: 0;
}

.wp-block-latest-comments li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}

.wp-block-latest-comments li:last-child {
    border-bottom: none;
}

/* Correction pour les derniers articles */
.wp-block-latest-posts {
    list-style: none;
    padding: 0;
}

.wp-block-latest-posts li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}

.wp-block-latest-posts li:last-child {
    border-bottom: none;
}

/* Correction pour les couleurs des blocs Gutenberg */
.wp-block-group,
.wp-block-column,
.wp-block-columns {
    color: rgba(255, 255, 255, 0.9) !important;
}

.wp-block-heading {
    color: var(--white) !important;
}

.wp-block-paragraph {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Correction pour les liens dans le contenu */
.entry-content a,
.post-content a,
.page-content a {
    color: var(--gold) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted var(--gold);
}

.entry-content a:hover,
.post-content a:hover,
.page-content a:hover {
    color: var(--gold-dark) !important;
    border-bottom-color: var(--gold-dark);
}

/* Correction pour les citations WordPress */
.wp-block-quote cite {
    color: var(--gray-dark) !important;
    font-style: italic;
    margin-top: 1rem;
    display: block;
}

.wp-block-quote cite::before {
    content: '— ';
}

/* Correction pour les codes WordPress */
.wp-block-code,
code,
pre {
    background: rgba(0, 0, 0, 0.3) !important;
    color: var(--white) !important;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    border: 1px solid var(--gray-light);
}

.wp-block-code code {
    background: transparent !important;
    padding: 0;
    border: none;
}

/* Correction pour les galeries WordPress */
.wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.wp-block-gallery .wp-block-image {
    margin: 0;
}

.wp-block-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.wp-block-gallery img:hover {
    transform: scale(1.05);
}

/* Correction pour les vidéos WordPress */
.wp-block-video video,
.wp-block-embed iframe {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Correction pour les séparateurs WordPress */
.wp-block-separator {
    border: none;
    border-top: 2px solid var(--gray-light);
    margin: 2rem 0;
}

.wp-block-separator.is-style-wide {
    border-top: 4px solid var(--gold);
    opacity: 0.6;
}

/* Correction pour les espacements WordPress */
.wp-block-spacer {
    background: transparent !important;
}

/* Correction finale pour tous les titres */
h1, h2, h3, h4, h5, h6 {
    color: var(--white) !important;
}

/* Correction finale pour tous les paragraphes */
p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Correction finale pour toutes les listes */
ul, ol {
    color: rgba(255, 255, 255, 0.9) !important;
}

li {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ==================== FIN DU FICHIER CSS ==================== */;
    border-radius: 20px 20px 0 0;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    margin-bottom: 15px;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--gray-dark);
}

.newsletter-form input:focus {
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* ==================== PAGINATION - THÈME SOMBRE ==================== */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.page-numbers {
    display: flex;
    list-style: none;
    gap: 8px;
}

.page-numbers li a,
.page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-numbers li a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gray-dark);
    border: 1px solid var(--gray-light);
}

.page-numbers li a:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    border-color: var(--gold);
}

.page-numbers li span.current {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: var(--white);
    border: 1px solid var(--accent-blue);
}

.page-numbers li a.prev,
.page-numbers li a.next {
    width: auto;
    padding: 0 18px;
    border-radius: 50px;
}

/* ==================== SINGLE POST PAGE - THÈME SOMBRE ==================== */
.single-post-header {
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
}

.single-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white) !important;
}

.single-post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.single-post-meta .author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.single-post-meta .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid var(--gold);
}

.single-post-meta .date,
.single-post-meta .comments {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.single-post-meta i {
    margin-right: 5px;
    color: var(--gold);
}

.single-post-featured-image {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
}

.single-post-content {
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9) !important;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
}

.single-post-content p,
.single-post-content ul,
.single-post-content ol,
.single-post-content blockquote {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9) !important;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white) !important;
}

.single-post-content h2 {
    font-size: 1.8rem;
    color: var(--gold) !important;
}

.single-post-content h3 {
    font-size: 1.5rem;
}

.single-post-content h4 {
    font-size: 1.3rem;
}

.single-post-content blockquote {
    padding: 25px 35px;
    background: rgba(245, 166, 35, 0.1);
    border-left: 5px solid var(--gold);
    font-style: italic;
    position: relative;
    border-radius: 0 15px 15px 0;
}

.single-post-content blockquote::before {
    content: '"';
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 60px;
    color: rgba(245, 166, 35, 0.3);
    line-height: 1;
}

.single-post-content a {
    color: var(--gold) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dotted var(--gold);
}

.single-post-content a:hover {
    color: var(--gold-dark) !important;
    border-bottom-color: var(--gold-dark);
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 12px;
}

.single-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 30px;
    border-top: 1px solid var(--gray-light);
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 20px;
    border: 1px solid var(--gray-light);
}

.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.single-post-tags a {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.single-post-tags a:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy) !important;
    border-color: var(--gold);
}

.single-post-share {
    display: flex;
    gap: 10px;
}

.single-post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.single-post-share a.facebook {
    background-color: #3b5998;
}

.single-post-share a.twitter {
    background-color: #1da1f2;
}

.single-post-share a.linkedin {
    background-color: #0077b5;
}

.single-post-share a:hover {
    transform: translateY(-3px);
}

/* ==================== AUTHOR BOX - THÈME SOMBRE ==================== */
.author-box {
    display: flex;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    border: 1px solid var(--gray-light);
    color: var(--white);
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    border: 3px solid var(--gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white) !important;
}

.author-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8) !important;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gray-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.author-social a:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ==================== RELATED POSTS - THÈME SOMBRE ==================== */
.related-posts {
    margin-bottom: 50px;
}

.related-posts h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white) !important;
}

.related-posts h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

.related-post-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border: 1px solid var(--gray-light);
    color: var(--white);
}

.related-post-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.related-post-image {
    height: 180px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.related-post-content {
    padding: 20px;
}

.related-post-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--white) !important;
}

.related-post-content h4 a {
    color: var(--white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: var(--gold) !important;
}

.related-post-content .date {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

/* ==================== COMMENTS SECTION - THÈME SOMBRE ==================== */
.comments-section {
    margin-bottom: 80px;
}

.comments-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white) !important;
}

.comments-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 30px;
}

.comment-body {
    display: flex;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--gray-light);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid var(--gold);
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white) !important;
}

.comment-metadata {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.comment-text {
    margin-bottom: 10px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
}

.comment-reply {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.comment-reply:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy) !important;
    border-color: var(--gold);
}

.children {
    margin-left: 50px;
    margin-top: 30px;
    list-style: none;
}

/* ==================== COMMENT FORM - THÈME SOMBRE ==================== */
.comment-respond {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--gray-light);
    color: var(--white);
}

.comment-reply-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white) !important;
}

.comment-reply-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.comment-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.comment-form-comment,
.form-submit {
    grid-column: span 2;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: var(--gray-dark);
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.comment-form textarea {
    height: 150px;
    resize: vertical;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white) !important;
}

.form-submit {
    text-align: right;
}

.submit {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit:hover {
    transform: translateY(-2px);
}

/* ==================== 404 PAGE - THÈME SOMBRE ==================== */
.error-404 {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    margin: 40px 0;
}

.error-404 h1 {
    font-size: 8rem;
    font-weight: 700;
    color: var(--gold) !important;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--white) !important;
}

.error-404 p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ==================== ARCHIVE PAGE - THÈME SOMBRE ==================== */
.archive-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    padding: 50px 0;
    margin-bottom: 60px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    position: relative;
}

.archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
    border-radius: 20px 20px 0 0;
}

.archive-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white) !important;
}

.archive-description {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ==================== WORDPRESS BLOCKS SUPPORT - THÈME SOMBRE ==================== */
.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.wp-block-cover {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.wp-block-button__link {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy) !important;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    color: var(--burgundy) !important;
}

.wp-block-quote {
    padding: 25px 35px;
    background: rgba(245, 166, 35, 0.1);
    border-left: 5px solid var(--gold);
    font-style: italic;
    position: relative;
    margin-bottom: 20px;
    border-radius: 0 15px 15px 0;
    color: rgba(255, 255, 255, 0.9) !important;
}

.wp-block-quote::before {
    content: '"';
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 60px;
    color: rgba(245, 166, 35, 0.3);
    line-height: 1;
}

.wp-block-pullquote {
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    margin: 20px 0;
    padding: 20px 0;
    background: rgba(245, 166, 35, 0.05);
    border-radius: 8px;
    color: var(--white) !important;
}

.wp-block-pullquote blockquote {
    margin: 0;
    border-left: none;
    padding: 0;
    background-color: transparent;
    color: var(--white) !important;
}

.wp-block-pullquote cite {
    font-style: italic;
    color: var(--gray-dark);
}

.wp-block-table {
    margin-bottom: 20px;
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.wp-block-table th {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    padding: 15px;
    font-weight: 600;
    border: 1px solid var(--gold);
}

.wp-block-table td {
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    color: var(--white);
}

.wp-block-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.wp-block-search__button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--burgundy);
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.wp-block-search__button:hover {
    transform: translateY(-1px);
}

.wp-block-search__input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--gray-light);
    border-radius: 50px 0 0 50px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.wp-block-search__input::placeholder {
    color: var(--gray-dark);
}

/* ==================== LIENS GLOBAUX - THÈME SOMBRE ==================== */
a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-dark);
    text-decoration: none;
}

/* Liens de la sidebar */
.sidebar-widget a {
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget a:hover {
    color: var(--gold) !important;
    text-decoration: none;
}

/* Liens des widgets */
.sidebar-widget .wp-block-latest-comments a, 
.sidebar-widget .wp-block-latest-posts a,
.sidebar-widget .widget_recent_comments a,
.sidebar-widget .widget_recent_entries a,
.sidebar-widget .widget_archive a,
.sidebar-widget .widget_categories a {
    color: var(--gray-dark) !important;
    text-decoration: none;
}

.sidebar-widget .wp-block-latest-comments a:hover, 
.sidebar-widget .wp-block-latest-posts a:hover,
.sidebar-widget .widget_recent_comments a:hover,
.sidebar-widget .widget_recent_entries a:hover,
.sidebar-widget .widget_archive a:hover,
.sidebar-widget .widget_categories a:hover {
    color: var(--gold) !important;
}

/* Liens de navigation */
.navigation a,
.wp-block-query-pagination a,
.page-numbers a {
    color: var(--gray-dark) !important;
    text-decoration: none;
}

.navigation a:hover,
.wp-block-query-pagination a:hover,
.page-numbers a:hover {
    color: var(--gold) !important;
}

/* Liens de commentaires */
.comment-meta a,
.comment-reply-link,
.comment-edit-link {
    color: var(--gray-dark) !important;
    text-decoration: none;
}

.comment-meta a:hover,
.comment-reply-link:hover,
.comment-edit-link:hover {
    color: var(--gold) !important;
}

/* ==================== UTILITAIRES - THÈME SOMBRE ==================== */
.text-gold {
    color: var(--gold) !important;
}

.text-burgundy {
    color: var(--burgundy-original) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-warning {
    color: var(--gold) !important;
}

.text-muted {
    color: var(--gray-dark) !important;
}

/* ==================== WORDPRESS CLASSES - THÈME SOMBRE ==================== */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.wp-caption {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gray-light);
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
    border-radius: 8px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
    border-radius: 6px;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
    color: var(--gray-dark);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--burgundy);
    clip: auto !important;
    clip-path: none;
    color: var(--white);
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ==================== FOOTER - IDENTIQUE AU SITE PRINCIPAL ==================== */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--burgundy) 100%) !important;
    position: relative;
    color: var(--white);
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box;
    margin-top: auto !important;
    flex-shrink: 0;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

footer .container {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

footer .border-top {
    border-color: var(--gray-light) !important;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-logo .fs-5 {
    font-weight: 700;
    color: var(--white) !important;
}

footer h5 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
}

footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

footer .title-underline {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
}

footer .title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-link {
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--gold) !important;
    text-decoration: none;
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    color: var(--gray-dark) !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--gray-light);
    border: 1px solid var(--gray-light);
}

.social-icons a:hover {
    color: var(--gold) !important;
    background-color: rgba(245, 166, 35, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
}

footer p,
footer li {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Classes spécifiques pour les icônes footer */
footer .text-burgundy {
    color: var(--gold) !important;
}

/* Correction pour le logo dans le footer */
footer .logo-text {
    font-weight: 700;
    color: var(--white) !important;
}

footer .logo-text .text-gold {
    color: var(--gold) !important;
    font-weight: 700;
}

/* ==================== RESPONSIVE MOBILE ==================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 1rem;
        border: 1px solid var(--gray-light);
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(0);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--gray-light);
        margin-left: 1rem;
        margin-top: 0.5rem;
        transform: none;
        opacity: 1;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .dropdown::before {
        display: none;
    }
    
    .btn-cta-alt {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .logo-container {
        width: 35px !important;
        height: 35px !important;
    }
    
    .logo-container img {
        max-height: 35px !important;
        max-width: 35px !important;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo-container {
        width: 35px !important;
        height: 35px !important;
    }
    
    .logo-container img {
        max-height: 35px !important;
        max-width: 35px !important;
    }
    
    .blog-post-card h2 {
        font-size: 1.3rem;
    }
    
    .single-post-title {
        font-size: 1.8rem;
    }
    
    .single-post-content {
        font-size: 1rem;
        padding: 25px;
    }
    
    .single-post-header {
        padding: 25px;
    }
    
    .single-post-footer {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .single-post-share {
        justify-content: center;
    }
    
    .comment-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .comment-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .children {
        margin-left: 20px;
    }
    
    .comment-form {
        grid-template-columns: 1fr;
    }
    
    .comment-form-comment,
    .form-submit {
        grid-column: span 1;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .logo-container {
        width: 30px !important;
        height: 30px !important;
    }
    
    .logo-container img {
        max-height: 30px !important;
        max-width: 30px !important;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-post-meta .author {
        margin-right: 0;
    }
    
    .single-post-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .single-post-meta .author,
    .single-post-meta .date,
    .single-post-meta .comments {
        margin-right: 0;
    }
    
    .error-404 h1 {
        font-size: 6rem;
    }
    
    .error-404 h2 {
        font-size: 1.5rem;
    }
    
    .single-post-content {
        padding: 20px;
    }
    
    .single-post-header {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
    }
    
    .blog-container {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .blog-hero {
        background: white !important;
        color: black !important;
    }
    
    .blog-post-card,
    .sidebar-widget,
    .single-post-content,
    .comment-body {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd !important;
    }
    
    .navbar,
    .social-icons,
    .comment-reply {
        display: none !important;
    }
}

/* ==================== SUPPORT MOUVEMENT RÉDUIT ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==================== SUPPORT ANCIENS NAVIGATEURS ==================== */
@supports not (display: grid) {
    .blog-layout {
        display: flex;
        flex-direction: column;
    }
    
    .related-posts-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .related-posts-grid .related-post-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 280px;
    }
}

@supports not (display: flex) {
    .navbar-nav {
        display: block;
    }
    
    .nav-item {
        display: inline-block;
        margin: 0 10px;
    }
    
    .blog-post-meta {
        display: block;
    }
    
    .blog-post-meta .author {
        margin-bottom: 10px;
    }
}

/* ==================== DARK MODE SPÉCIFIQUE ==================== */
@media (prefers-color-scheme: dark) {
    .wp-block-search__input,
    .search-form input,
    .comment-form input,
    .comment-form textarea,
    .newsletter-form input {
        background-color: var(--gray-light) !important;
        color: var(--white) !important;
    }
    
    .dropdown-menu {
        background-color: var(--burgundy) !important;
    }
    
    .modal-content {
        background-color: var(--burgundy) !important;
    }
}

/* ==================== ACCESSIBILITÉ ==================== */
a:focus, 
button:focus, 
input:focus, 
textarea:focus, 
select:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: absolute;
    left: 6px;
    top: 7px;
    width: auto;
    height: auto;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--burgundy);
    text-decoration: none;
    z-index: 999999;
    border-radius: 4px;
}

/* ==================== PERFORMANCE ==================== */
.btn,
.card,
.nav-link,
.blog-post-card,
.related-post-card {
    will-change: transform;
}

.blog-post-image img,
.related-post-image img {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ==================== AMÉLIORATIONS VISUELLES ==================== */
::selection {
    background: var(--gold);
    color: var(--burgundy);
}

::-moz-selection {
    background: var(--gold);
    color: var(--burgundy);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--burgundy);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ==================== ANIMATIONS SUPPLÉMENTAIRES ==================== */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ==================== ÉTAT LOADING ==================== */
.blog-post-card.loading,
.sidebar-widget.loading {
    background: linear-gradient(90deg, 
        var(--burgundy) 25%, 
        var(--burgundy-light) 50%, 
        var(--burgundy) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ==================== ÉTATS HOVER AVANCÉS ==================== */
.blog-post-card:hover .blog-post-category {
    transform: scale(1.05);
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 166, 35, 0.3);
}

.comment-reply:hover {
    transform: translateY(-1px);
}

/* ==================== RESPONSIVE AVANCÉ ==================== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .blog-post-content {
        padding: 15px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
    
    .single-post-content {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .comment-form {
        padding: 15px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .blog-post-category {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .single-post-title {
        font-size: 1.5rem;
    }
}

/* ==================== COMPATIBILITÉ NAVIGATEURS ==================== */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

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

/* ==================== UTILITAIRES FINAUX ==================== */
.visually-hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
    width: 1px;
    word-wrap: normal !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ==================== FIL D'ARIANE FORMASOUND ==================== */
.formasound-breadcrumb {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 25px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.formasound-breadcrumb a {
    color: var(--gray-dark) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.formasound-breadcrumb a:hover {
    color: var(--gold) !important;
    text-decoration: none;
}

.formasound-breadcrumb .breadcrumb-home {
    font-weight: 600;
}

.formasound-breadcrumb .breadcrumb-home i {
    color: var(--gold);
    font-size: 0.8rem;
}

.formasound-breadcrumb .breadcrumb-category {
    background-color: rgba(245, 166, 35, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(245, 166, 35, 0.3);
    font-weight: 500;
}

.formasound-breadcrumb .breadcrumb-category:hover {
    background-color: rgba(245, 166, 35, 0.2);
    border-color: var(--gold);
}

.formasound-breadcrumb .breadcrumb-current {
    color: var(--white) !important;
    font-weight: 600;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.formasound-breadcrumb i.fa-chevron-right {
    color: var(--gold);
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Responsive pour le fil d'ariane */
@media (max-width: 768px) {
    .formasound-breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .formasound-breadcrumb .breadcrumb-current {
        max-width: 200px;
    }
    
    .formasound-breadcrumb .breadcrumb-category {
        padding: 3px 8px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .formasound-breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 20px;
        padding: 10px 0;
    }
    
    .formasound-breadcrumb .breadcrumb-current {
        max-width: 150px;
    }
}

/* ==================== STYLES POUR LES ARCHIVES ==================== */
.category-meta,
.archive-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.posts-count {
    background-color: rgba(245, 166, 35, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(245, 166, 35, 0.3);
    font-weight: 500;
    color: var(--gold) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.posts-count i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Première publication en vedette sur les catégories */
.category-posts .featured-post {
    margin-bottom: 40px;
}

.featured-post .featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-post .featured-label i {
    color: var(--white);
    font-size: 0.7rem;
}

/* Bio d'auteur dans les archives */
.author-bio {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--gray-light);
}

.author-bio img {
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.author-bio .author-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

/* Posts dans les archives */
.archive-posts,
.category-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Responsive pour les archives */
@media (max-width: 768px) {
    .author-bio {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .featured-post .featured-label {
        position: static;
        align-self: flex-start;
        margin-bottom: 15px;
    }
}
/* ==================== BANNIÈRE PUB STICKY ==================== */

/* Bannière sticky */
.formasound-sticky-ad {
    position: sticky;
    top: 100px;
    z-index: 90;
    margin-bottom: 30px;
    animation: slideInRight 0.8s ease-out;
}

.sticky-ad-container {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(245, 166, 35, 0.9) 0%, 
        rgba(138, 25, 61, 0.8) 50%,
        rgba(0, 168, 232, 0.7) 100%
    );
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 2px solid rgba(245, 166, 35, 0.3);
    backdrop-filter: blur(10px);
}

.sticky-ad-bg {
    padding: 25px 20px;
    position: relative;
}

.sticky-ad-content {
    text-align: center;
    color: white;
}

.sticky-ad-title {
    font-size: 1.3rem !important;
    font-weight: 700;
    margin-bottom: 8px;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.sticky-ad-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    color: rgba(255,255,255,0.9) !important;
}

.sticky-ad-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark)) !important;
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4);
    margin-bottom: 15px;
    -webkit-text-fill-color: white !important;
}

.sticky-ad-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 232, 0.6);
    background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue)) !important;
    color: var(--white) !important;
    text-decoration: none;
}

.sticky-ad-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.sticky-ad-badges .badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

/* Bouton fermer */
.sticky-ad-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s ease;
}

.sticky-ad-close:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

/* Animation d'entrée */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .formasound-sticky-ad {
        position: static;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .formasound-sticky-ad {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: 20px;
        top: auto;
        z-index: 1000;
    }
    
    .sticky-ad-title {
        font-size: 1.1rem !important;
    }
    
    .sticky-ad-subtitle {
        font-size: 0.9rem;
    }
    
    .sticky-ad-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}