* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rose-primary: #E991C6;
    --rose-light: #F7DAF0;
    --rose-pale: #FFF5FC;
    --gold: #C5A572;
    --gold-light: #E8D7B8;
    --white: #FFFFFF;
    --grey: #F8F5F2;
    --text-dark: #3D3D3D;
    --text-medium: #6B6B6B;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.transparent {
    background: rgba(255, 255, 255, 0.95);
}

.header-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 60px;
    width: auto;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.follow-text {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-icon:hover {
    color: var(--rose-primary);
}

.header-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 165, 114, 0.3) 20%, rgba(197, 165, 114, 0.3) 80%, transparent);
    max-width: 1400px;
    margin: 0 auto;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background: var(--gold);
}

/* Offcanvas */
.offcanvas {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 2000;
    overflow-y: auto;
}

.offcanvas.active {
    right: 0;
}

.offcanvas-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.offcanvas-close:hover {
    color: var(--rose-primary);
    transform: rotate(90deg);
}

.offcanvas-content {
    padding: 4rem 3rem;
}

.offcanvas-logo {
    height: 80px;
    width: auto;
    margin-bottom: 2rem;
}

.offcanvas-content h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.offcanvas-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.offcanvas-social {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}

.social-icons-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1999;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    margin-top: 160px;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D5C4 50%, #F0DCC8 100%);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.75) 40%,
        rgba(233, 145, 198, 0.2) 100%);
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.hero-text-container {
    max-width: 700px;
    text-align: left;
}

.hero-pretitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    font-weight: 500;
    display: none;
}

/* ================================================
   POLICE PERSONNALISÉE exmouth_
   ================================================ */

@font-face {
    font-family: 'exmouth_';
    /*src: url('../fonts/exmouth_.ttf') format('truetype');
    src: url('../fonts/Bighried-Ranbell.ttf') format('truetype');
    src: url('../fonts/Gabrielle.ttf') format('truetype');*/
    src: url('../fonts/LTPerfume-2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ================================================
   HERO TITLE - STYLES DIFFÉRENTS
   ================================================ */


.hero h1 {
    font-size: 4.1rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

/* Première ligne - Police artistique sur UNE SEULE LIGNE */
.hero h1 .hero-title-fancy {
    display: block;
    font-family: 'exmouth_', cursive, serif;
    font-size: 5rem;
    /*color: var(--rose-primary);*/
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-left:-10px;
    /* EMPÊCHER LE RETOUR À LA LIGNE */
    white-space: nowrap;
}

/* Reste du titre - Police classique */
.hero h1 .hero-title-classic {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.3;
}

/* Mot "maladie" en surbrillance */
.hero h1 .highlight {
    color: var(--rose-primary);
    font-style: italic;
}

/* ================================================
   RESPONSIVE - AJUSTER LA TAILLE SUR MOBILE
   ================================================ */

@media (max-width: 1200px) {
    .hero h1 .hero-title-fancy {
        font-size: 4rem; /* Réduire si trop large */
    }
}

@media (max-width: 768px) {
    .hero h1 .hero-title-fancy {
        font-size: 3rem;
        /* Sur mobile, on peut autoriser le retour à la ligne si nécessaire */
        white-space: normal; 
    }
    
    .hero h1 .hero-title-classic {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 .hero-title-fancy {
        font-size: 2.5rem;
    }
    
    .hero h1 .hero-title-classic {
        font-size: 1.5rem;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 550px;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
    font-style: italic;
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-primary) 0%, #D77BB8 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(233, 145, 198, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 145, 198, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 8rem 3rem;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.program-card {
    background: linear-gradient(135deg, var(--rose-pale) 0%, var(--white) 100%);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(233, 145, 198, 0.2);
    transition: all 0.4s ease;
    position: relative;
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
}
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 145, 198, 0.25);
    border-color: var(--rose-primary);
}

.program-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(233, 145, 198, 0.15);
    font-weight: 300;
}

.mini-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gold-light);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.program-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding-right: 3rem;
}

.program-card.mini-class h3 {
    font-size: 1.7rem;
}

.program-tagline {
    font-size: 1.1rem;
    color: var(--rose-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.program-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose-primary);
    font-weight: bold;
}

.btn-program {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--rose-primary) 0%, #D77BB8 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(233, 145, 198, 0.3);
    text-align: center;
    font-size: 0.95rem;
}

.btn-program:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(233, 145, 198, 0.4);
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(233, 145, 198, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--rose-primary);
    transform: scale(1.3);
}

.indicator:hover {
    background: var(--rose-primary);
}

/* Media Section */
.media-section {
    padding: 8rem 3rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--grey) 100%);
}

.media-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.media-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.media-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
    position: relative;
    overflow: hidden;
}

.media-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(233, 145, 198, 0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.play-button::after {
    content: '▶';
    color: var(--rose-primary);
    font-size: 1.5rem;
    margin-left: 5px;
}

.media-content {
    padding: 2rem;
}

.media-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--rose-pale);
    color: var(--rose-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.media-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.media-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.media-link {
    color: var(--rose-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.media-link:hover {
    gap: 1rem;
}

.media-link::after {
    content: '→';
}

/* Testimonials */
.testimonials {
    padding: 8rem 3rem;
    background: var(--white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial {
    background: linear-gradient(135deg, var(--rose-pale) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(233, 145, 198, 0.2);
}

.quote-icon {
    font-size: 4rem;
    color: var(--rose-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rose-primary), var(--gold));
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
    font-style: normal;
}

/* CTA Section */
.cta-section {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, var(--rose-primary) 0%, #D77BB8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.btn-white {
    background: var(--white);
    color: var(--rose-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--rose-primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--rose-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .offcanvas {
        width: 350px;
        right: -350px;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 1.5rem 1.5rem;
    }
    
    nav {
        padding: 0.5rem 1.5rem;
    }
    
    .social-header {
        gap: 0.5rem;
    }
    
    .follow-text {
        display: none;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .hero {
        margin-top: 140px;
        min-height: calc(100vh - 140px);
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .program-card {
        padding: 2.5rem 2rem;
    }
    
    .program-number {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }
    
    .program-card h3 {
        font-size: 1.8rem;
    }
    
    .media-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offcanvas {
        width: 100%;
        right: -100%;
    }
    
    .offcanvas-content {
        padding: 3rem 2rem;
    }
}

/* WordPress Additional Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.site-main {
    padding: 6rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-primary) 0%, #D77BB8 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(233, 145, 198, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 145, 198, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--rose-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Single Video Page Styles */
.video-hero {
    padding: 8rem 0 4rem;
    background: var(--grey);
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-header .entry-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.video-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--rose-primary);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-header .posted-on {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.video-header .entry-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    max-width: 1200px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.video-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.single-video-article .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.single-video-article .entry-content p {
    margin-bottom: 1.5rem;
}

/* Video Navigation */
.post-navigation {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation a {
    display: block;
    padding: 1.5rem;
    background: var(--rose-pale);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.post-navigation a:hover {
    background: var(--rose-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 145, 198, 0.2);
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--rose-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.post-navigation .nav-title {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
}

/* Make play button clickable */
.media-image {
    position: relative;
    cursor: pointer;
}

.media-image a {
    display: block;
    position: relative;
}

.play-button {
    pointer-events: none;
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-header .entry-title {
        font-size: 2.5rem;
    }
    
    .video-hero {
        padding: 6rem 0 3rem;
    }
}

/* ========================================
   SINGLE BLOG POST - STYLES COMPLETS
   ======================================== */

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-meta-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-category-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date-hero {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Image en vedette */
.post-featured-image {
    margin: -100px auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

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

/* Contenu de l'article */
.single-post-article .entry-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.single-post-article .entry-content p {
    margin-bottom: 1.8rem;
}

.single-post-article .entry-content h2,
.single-post-article .entry-content h3,
.single-post-article .entry-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.single-post-article .entry-content img {
    border-radius: 15px;
    margin: 2rem 0;
}

.single-post-article .entry-content blockquote {
    border-left: 4px solid var(--rose-primary);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-medium);
}

.single-post-article .entry-content ul,
.single-post-article .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-post-article .entry-content li {
    margin-bottom: 0.8rem;
}

/* Tags */
.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tags-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.tags a {
    background: var(--rose-pale);
    color: var(--rose-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tags a:hover {
    background: var(--rose-primary);
    color: white;
}

/* PAGE BLOG - HEADER & GRILLE */
.page-hero-blog {
    background: linear-gradient(135deg, var(--rose-primary) 0%, #D77BB8 100%);
    padding: 12rem 0 5rem;
    margin-top: 0;
    position: relative;
}

.page-hero-blog .page-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.page-hero-blog .page-hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Grille d'articles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 145, 198, 0.2);
}

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

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

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

.blog-card-content {
    padding: 2rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--text-medium);
}

.blog-category {
    color: var(--rose-primary);
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--rose-primary);
}

.blog-card-excerpt {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--rose-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 1rem;
}

/* Message aucun article */
.no-posts {
    text-align: center;
    padding: 6rem 2rem;
}

.no-posts h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.no-posts p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* Commentaires */
.comments-wrapper {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--rose-pale);
}

.comments-area {
    background: var(--grey);
    padding: 3rem;
    border-radius: 20px;
}

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

.comment {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.comment-metadata {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.comment-content p {
    margin: 0;
    line-height: 1.7;
}

/* Formulaire de commentaire */
.comment-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--rose-pale);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--rose-primary);
}

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

.comment-form .form-submit input {
    background: var(--rose-primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.comment-form .form-submit input:hover {
    background: #D77BB8;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-blog {
        padding: 10rem 0 4rem;
    }
    
    .page-hero-blog .page-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }
    
    .single-post-container {
        padding: 2rem 1rem;
    }
    
    .post-featured-image {
        margin: -50px auto 2rem;
    }
    
    .single-post-article .entry-content {
        font-size: 1.05rem;
    }
    
    .comments-area {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   CORRECTIONS PAGE VIDÉO - PRIORITAIRES
   ======================================== */

/* Forcer l'affichage du header */
body.single-video header.site-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.single-video .header-top,
body.single-video .header-bottom {
    display: flex !important;
}

/* Réduire la taille du player vidéo */
body.single-video .video-player-container {
    max-width: 850px !important;
}

body.single-video .video-player-wrapper {
    padding-bottom: 47.8125% !important; /* ratio 16:9 réduit */
}

/* Ajuster les marges */
body.single-video .page-hero-video {
    padding-top: 11rem !important;
}



/* Cartes programmes */
.program-card {
    background: linear-gradient(135deg, var(--rose-pale) 0%, var(--white) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(233, 145, 198, 0.2);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 145, 198, 0.3);
    border-color: var(--rose-primary);
}

/* Numéro du programme */
.program-number {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 5rem;
    font-weight: 300;
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    opacity: 0.4;
    line-height: 1;
}

/* Badge Mini-Classe */
.mini-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

/* Titre de la carte */
.program-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Tagline */
.program-tagline {
    font-size: 1rem;
    color: var(--rose-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Description */
.program-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.program-description ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.program-description li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.program-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rose-primary);
    font-weight: bold;
}

/* Prix */
.program-price {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.program-price strong {
    color: var(--rose-primary);
}

/* Bouton */
.btn-program {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-primary) 0%, #D77BB8 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-program:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 145, 198, 0.4);
}

/* ========================================
   RESPONSIVE GRILLES
   ======================================== */

/* Tablettes - 2 colonnes */
@media (max-width: 1200px) {
    .programs-grid,
    .mini-classes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .programs-container,
    .mini-classes-section {
        padding: 0 2rem;
    }
}

/* Mobile - 1 colonne */
@media (max-width: 768px) {
    .programs-grid,
    .mini-classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .programs-container,
    .mini-classes-section {
        padding: 0 1.5rem;
    }
    
    .program-card {
        padding: 2rem;
    }
    
    .program-number {
        font-size: 3.5rem;
        right: 20px;
    }
    
    .program-card h3 {
        font-size: 1.5rem;
    }
    
    .mini-classes-title {
        font-size: 2rem;
    }
}

/* ========================================
   GRILLE SERVICES - VERSION FINALE
   ======================================== */

/* Container principal */
.programs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Grille des programmes principaux - 4 colonnes */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Mini-Classes */
.mini-classes-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem 0;
    border-top: 2px solid rgba(233, 145, 198, 0.2);
}

.mini-classes-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
}

/* Grille des mini-classes - 4 colonnes */
.mini-classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Cartes programmes */
.program-card {
    background: linear-gradient(135deg, var(--rose-pale) 0%, var(--white) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(233, 145, 198, 0.2);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 145, 198, 0.3);
    border-color: var(--rose-primary);
}

/* Numéro du programme */
.program-number {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 5rem;
    font-weight: 300;
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    opacity: 0.4;
    line-height: 1;
}

/* Badge Mini-Classe */
.mini-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

/* Titre de la carte */
.program-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Tagline */
.program-tagline {
    font-size: 1rem;
    color: var(--rose-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Description */
.program-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.program-description ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.program-description li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.program-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rose-primary);
    font-weight: bold;
}

/* Prix */
.program-price {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.program-price strong {
    color: var(--rose-primary);
}

/* Bouton */
.btn-program {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-primary) 0%, #D77BB8 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-program:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 145, 198, 0.4);
}

/* ========================================
   RESPONSIVE GRILLES
   ======================================== */

/* Tablettes - 2 colonnes */
@media (max-width: 1200px) {
    .programs-grid,
    .mini-classes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .programs-container,
    .mini-classes-section {
        padding: 0 2rem;
    }
}

/* Mobile - 1 colonne */
@media (max-width: 768px) {
    .programs-grid,
    .mini-classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .programs-container,
    .mini-classes-section {
        padding: 0 1.5rem;
    }
    
    .program-card {
        padding: 2rem;
    }
    
    .program-number {
        font-size: 3.5rem;
        right: 20px;
    }
    
    .program-card h3 {
        font-size: 1.5rem;
    }
    
    .mini-classes-title {
        font-size: 2rem;
    }
}


/* ========================================
   SECTION ÉVÈNEMENTS - PAGE D'ACCUEIL
   À ajouter dans WPCode ou main.css
   ======================================== */

/* Section Évènements */
.events-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FFF5FC 0%, #FFFFFF 50%, #FFF9F0 100%);
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Carte Évènement */
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 145, 198, 0.2);
}

/* Badge Date */
.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #E991C6, #D77BB8);
    color: white;
    width: 70px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(233, 145, 198, 0.4);
    z-index: 10;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.event-month {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Image Évènement */
.event-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #F8F5F2;
}

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

.event-card:hover .event-image img {
    transform: scale(1.1);
}

/* Contenu Évènement */
.event-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.8rem;
    color: #3D3D3D;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

/* Informations (heure, lieu) */
.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #6B6B6B;
    font-size: 0.95rem;
}

.event-info-item svg {
    color: #E991C6;
    flex-shrink: 0;
}

/* Description */
.event-description {
    color: #6B6B6B;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

/* Boutons d'action */
.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-event-details,
.btn-event-register {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.btn-event-details {
    background: transparent;
    color: #E991C6;
    border: 2px solid #E991C6;
    flex: 1;
}

.btn-event-details:hover {
    background: #E991C6;
    color: white;
    transform: translateY(-2px);
}

.btn-event-register {
    background: linear-gradient(135deg, #E991C6, #D77BB8);
    color: white;
    border: none;
    flex: 1;
}

.btn-event-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 145, 198, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .events-section {
        padding: 5rem 0;
    }
    
    .events-container {
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-content {
        padding: 2rem;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-date-badge {
        width: 60px;
        height: 70px;
        top: 15px;
        right: 15px;
    }
    
    .event-day {
        font-size: 1.7rem;
    }
    
    .event-month {
        font-size: 0.7rem;
    }
}

/* Si aucun évènement */
.no-events-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #6B6B6B;
    font-size: 1.1rem;
}



/* ================================================
   STYLE PAGES VIDÉOS UNIQUEMENT - Version Isolée
   À ajouter dans main.css SANS CONFLIT
   ================================================ */

/* Cibler UNIQUEMENT les pages single-video avec body class */
.single-video .page-hero-video {
    background: linear-gradient(135deg, #E991C6 0%, #D4A574 100%);
    padding: 6rem 2rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.single-video .page-hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.single-video .page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.single-video .video-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.single-video .video-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #E991C6;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.single-video .video-date {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 300;
}

.single-video .page-hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

/* ================================================
   VIDEO PLAYER
   ================================================ */
.single-video .video-container {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.single-video .video-player-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-video .video-player-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(233, 145, 198, 0.35);
}

.single-video .video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

/* ================================================
   CONTENU
   ================================================ */
.single-video .video-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.single-video .video-article {
    margin-bottom: 5rem;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.single-video .video-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
}

.single-video .video-description p {
    margin-bottom: 1.8rem;
}

.single-video .video-description p:first-child {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.8;
}

.single-video .video-description h2,
.single-video .video-description h3 {
    color: #E991C6;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.single-video .video-description h2 {
    font-size: 2rem;
}

.single-video .video-description h3 {
    font-size: 1.6rem;
}

.single-video .video-description ul,
.single-video .video-description ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.single-video .video-description li {
    margin-bottom: 1rem;
}

/* ================================================
   NAVIGATION
   ================================================ */
.single-video .post-navigation {
    max-width: 1100px;
    margin: 5rem auto;
    padding: 0 2rem;
    border-top: 3px solid #f5f5f5;
    padding-top: 4rem;
}

.single-video .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.single-video .nav-previous,
.single-video .nav-next {
    display: block;
}

.single-video .nav-previous a,
.single-video .nav-next a {
    display: block;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 3px solid transparent;
    height: 100%;
}

.single-video .nav-previous a:hover,
.single-video .nav-next a:hover {
    box-shadow: 0 10px 35px rgba(233, 145, 198, 0.3);
    transform: translateY(-5px);
    border-color: #E991C6;
}

.single-video .nav-subtitle {
    display: block;
    color: #E991C6;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.single-video .nav-title {
    display: block;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
}

.single-video .nav-next {
    text-align: right;
}

/* ================================================
   BOUTON RETOUR
   ================================================ */
.single-video .back-to-videos {
    text-align: center;
    margin: 4rem auto;
    max-width: 1100px;
    padding: 0 2rem;
}

.single-video .back-to-videos a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #E991C6 0%, #D4A574 100%);
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(233, 145, 198, 0.35);
}

.single-video .back-to-videos a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(233, 145, 198, 0.45);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    .single-video .page-hero-video {
        padding: 4rem 1.5rem;
        margin-bottom: 4rem;
        min-height: 320px;
    }
    
    .single-video .page-hero-title {
        font-size: 2.5rem;
    }
    
    .single-video .video-badge {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    .single-video .video-date {
        font-size: 1.1rem;
    }
    
    .single-video .video-container,
    .single-video .video-content-wrapper {
        padding: 0 1.5rem;
    }
    
    .single-video .video-article {
        padding: 2.5rem 2rem;
    }
    
    .single-video .video-description {
        font-size: 1.05rem;
    }
    
    .single-video .nav-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .single-video .nav-next {
        text-align: left;
    }
    
    .single-video .nav-previous a,
    .single-video .nav-next a {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .single-video .page-hero-video {
        padding: 3rem 1rem;
        min-height: 280px;
    }
    
    .single-video .page-hero-title {
        font-size: 2rem;
    }
    
    .single-video .video-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .single-video .video-badge {
        font-size: 0.95rem;
        padding: 0.7rem 1.8rem;
    }
    
    .single-video .video-date {
        font-size: 1rem;
    }
    
    .single-video .video-article {
        padding: 2rem 1.5rem;
    }
    
    .single-video .video-description {
        font-size: 1rem;
    }
    
    .single-video .nav-previous a,
    .single-video .nav-next a {
        padding: 1.5rem;
    }
    
    .single-video .nav-subtitle {
        font-size: 0.85rem;
    }
    
    .single-video .nav-title {
        font-size: 1.05rem;
    }
}


/* ================================================
   CORRECTION HEADER - Forcer l'affichage correct
   À ajouter AVANT le CSS des vidéos dans main.css
   ================================================ */

/* Forcer le header à rester visible et bien positionné */
body.single-video .site-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: white !important;
}

/* S'assurer que le header-top est visible */
body.single-video .header-top {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* S'assurer que la navigation est visible */
body.single-video .main-navigation {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* S'assurer que les liens du menu sont visibles */
body.single-video .nav-links {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Empêcher les éléments de se superposer au header */
body.single-video .page-hero-video {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
}

body.single-video .site-main {
    position: relative !important;
    z-index: 1 !important;
}

/* ================================================
   Alternative : Reset complet du header sur single-video
   ================================================ */

/* Si le problème persiste, décommenter ceci : */

/*
body.single-video .site-header * {
    position: relative !important;
    display: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
}
*/

