/* ============================================================
   Breath by Nolwenn — Main CSS
   @package BreathByNolwenn
   @version 1.0.0
   ============================================================ */


/* ─────────────────────────────────────────────
   1. VARIABLES
   ───────────────────────────────────────────── */
:root {
    --primary:       #D45C65;
    --primary-dark:  #C04A53;
    --secondary:     #9BAA97;
    --accent:        #5F8F8A;
    --bg-light:      #F0E0D7;
    --bg-cream:      #F5EDE4;
    --bg-sage:       #F4F7F5;
    --white:         #EDEAE1;
    --text-dark:     #2D2A28;
    --text-mid:      #6B6460;
    --text-light:    #8A7A73;

    --font-body:     'Poppins', sans-serif;

    --space-xs:  8px;
    --space-sm:  16px;
    --space-md:  24px;
    --space-lg:  40px;
    --space-xl:  64px;

    --radius-sm:   12px;
    --radius-md:   20px;
    --radius-lg:   28px;
    --radius-full: 9999px;

    --shadow-soft:   0 4px 20px rgba(0,0,0,0.08);
    --shadow-lifted: 0 12px 40px rgba(212,92,101,0.15);
    --shadow-strong: 0 20px 60px rgba(0,0,0,0.12);
}


/* ─────────────────────────────────────────────
   2. RESET GUTENBERG
   Neutralise les styles injectés par WordPress
   dans le <body> et les blocs
   ───────────────────────────────────────────── */

/* WordPress ajoute des marges automatiques
   entre chaque bloc — on les supprime */
.wp-site-blocks > * + * {
    margin-block-start: 0 !important;
}

/* Gutenberg force une max-width sur le contenu
   via .is-layout-constrained — on reprend le contrôle */
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Supprime le padding par défaut du body FSE */
body {
    padding-top: 0 !important;
}

/* Supprime les styles de blocs natifs qu'on
   ne veut pas (bordures, fonds par défaut) */
.wp-block-group,
.wp-block-columns,
.wp-block-column {
    margin: 0;
    padding: 0;
}


/* ─────────────────────────────────────────────
   3. BASE
   ───────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-body);
    font-weight: 900;
    line-height: 1.15;
}

h4 {
    font-weight: 600;
    line-height: 1.3;
}

p {
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ─────────────────────────────────────────────
   4. NAVIGATION
   ───────────────────────────────────────────── */
.bbn-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(212, 92, 101, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition: all 0.4s ease;
}

.bbn-header.scrolled {
    background: rgba(212, 92, 101, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.bbn-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bbn-logo img {
    height: 45px;
    width: auto;
}

/* Burger mobile */
.bbn-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.bbn-burger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.bbn-burger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.bbn-burger.active span:nth-child(2) { opacity: 0; }
.bbn-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Menu mobile */
.bbn-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(212, 92, 101, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px var(--space-lg) var(--space-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.bbn-mobile-menu.active {
    right: 0;
}

.bbn-mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.bbn-mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bbn-mobile-menu a:hover {
    transform: translateX(8px);
}

.bbn-cta-mobile {
    background: white;
    color: var(--primary) !important;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-align: center;
    font-weight: 600 !important;
    display: block;
}

/* Menu desktop */
.bbn-nav-desktop {
    display: none;
}


/* ─────────────────────────────────────────────
   5. HERO
   ───────────────────────────────────────────── */
.bbn-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px var(--space-md) 140px;
    position: relative;
    background: linear-gradient(
        rgba(45,42,40,0.6),
        rgba(45,42,40,0.4)
    ), var(--hero-bg, #2D2A28) center/cover no-repeat;
}

/* L'image de fond du hero est définie via
   une variable CSS qu'on surcharge dans le template */
.bbn-hero-content {
    text-align: center;
}

.bbn-hero-badge {
    display: block;
    text-align: center;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 auto var(--space-md);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.bbn-hero h1 {
    font-size: 44px;
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
    color: white;
}

.bbn-hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.95);
    margin-bottom: var(--space-lg);
    font-weight: 400;
    text-align: center;
}


/* ─────────────────────────────────────────────
   6. BOUTONS
   ───────────────────────────────────────────── */
.bbn-cta-primary {
    background: var(--primary);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212,92,101,0.4);
    display: inline-block;
}

.bbn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212,92,101,0.5);
    background: var(--primary-dark);
    color: white;
}

.bbn-cta-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255,255,255,0.3);
    display: inline-block;
    backdrop-filter: blur(10px);
}

.bbn-cta-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    color: white;
}


/* ─────────────────────────────────────────────
   7. SECTION — BASE COMMUNE
   ───────────────────────────────────────────── */
.bbn-section {
    position: relative;
    padding: var(--space-lg) var(--space-md);
}

.bbn-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.bbn-section-header h2 {
    font-size: 36px;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.bbn-section-header p {
    font-size: 17px;
    color: var(--text-mid);
}


/* ─────────────────────────────────────────────
   8. PERSONAS
   ───────────────────────────────────────────── */
.bbn-personas {
    background: var(--bg-cream);
}

.bbn-personas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    max-width: 1200px;
    margin: 0 auto;
}

.bbn-persona-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.bbn-persona-icon {
    font-size: 30px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,92,101,0.1), rgba(95,143,138,0.1));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.bbn-persona-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}


/* ─────────────────────────────────────────────
   9. BREATHWORK EXPLIQUÉ
   ───────────────────────────────────────────── */
.bbn-breathwork {
    background: var(--white);
}

.bbn-breathwork-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 800px;
    margin: var(--space-lg) auto;
}

.bbn-comparison-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    border: 2px solid transparent;
}

.bbn-comparison-card.bbn-breathwork-card {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(212,92,101,0.05), rgba(95,143,138,0.05));
}

.bbn-comparison-icon {
    font-size: 52px;
    margin-bottom: var(--space-sm);
    display: block;
}

.bbn-cta-card {
    max-width: 900px;
    margin: var(--space-xl) auto 0;
}

.bbn-cta-card-inner {
    background: linear-gradient(135deg, var(--primary), #c17b68);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-lifted);
}

.bbn-cta-card-inner h3 {
    color: white;
    font-size: 28px;
    margin-bottom: var(--space-sm);
}

.bbn-cta-card-inner p {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    margin-bottom: var(--space-md);
}

.bbn-cta-card-inner a {
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.bbn-cta-card-inner a:hover {
    transform: translateY(-3px);
}


/* ─────────────────────────────────────────────
   10. DÉROULEMENT SESSION
   ───────────────────────────────────────────── */
.bbn-session {
    background: var(--bg-cream);
    padding: var(--space-xl) var(--space-md) var(--space-lg);
}

.bbn-session-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.bbn-session-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    padding-top: calc(var(--space-lg) + 16px);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.bbn-session-number {
    position: absolute;
    top: -20px;
    left: var(--space-md);
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(212,92,101,0.3);
}

.bbn-session-duration {
    display: inline-block;
    background: var(--bg-cream);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.bbn-session-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 100%;
    margin: var(--space-xl) 0;
    padding: 0 var(--space-md);
}

.bbn-gallery-photo {
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
    background: #E8DDD5;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ─────────────────────────────────────────────
   11. BÉNÉFICES
   ───────────────────────────────────────────── */
.bbn-benefits {
    background: var(--bg-sage);
}

.bbn-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.bbn-benefit-category {
    background: var(--white);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
}

.bbn-benefit-category h3 {
    font-size: 24px;
    margin-bottom: var(--space-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bbn-benefit-item {
    margin-bottom: var(--space-md);
}

.bbn-benefit-item:last-child {
    margin-bottom: 0;
}

.bbn-benefit-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.bbn-benefit-item p {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 0;
}


/* ─────────────────────────────────────────────
   12. À PROPOS
   ───────────────────────────────────────────── */
.bbn-authority {
    background: var(--bg-cream);
}

.bbn-authority-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.bbn-authority-photo {
    width: 220px;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
}

.bbn-authority-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bbn-authority-title {
    font-size: 34px;
    margin: 0 0 8px;
    color: var(--text-dark);
    text-align: center;
}

.bbn-authority-subtitle {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: var(--space-md);
    text-align: center;
}

.bbn-authority-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: var(--space-md);
}

.bbn-credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-bottom: var(--space-md);
}

.bbn-credentials span {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.bbn-credentials span::before {
    content: "✦ ";
    color: var(--secondary);
    margin-right: 10px;
    font-weight: bold;
}


/* ─────────────────────────────────────────────
   13. LIEUX
   ───────────────────────────────────────────── */
.bbn-locations {
    background: var(--white);
}

.bbn-locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.bbn-location-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.bbn-location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.bbn-location-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bbn-location-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bbn-location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45,42,40,0.1) 0%, rgba(45,42,40,0.65) 60%, rgba(45,42,40,0.85) 100%);
    z-index: 1;
}

.bbn-location-content {
    position: relative;
    z-index: 2;
    padding: var(--space-lg) var(--space-md);
    width: 100%;
    text-align: center;
}

.bbn-location-content h3 {
    font-size: 26px;
    margin-bottom: var(--space-sm);
    color: white;
    font-weight: 900;
}

.bbn-location-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    margin-bottom: var(--space-sm);
}

.bbn-location-availability {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-md);
}

.bbn-location-link {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bbn-location-link:hover {
    background: rgba(255,255,255,0.35);
    border-color: white;
    color: white;
}


/* ─────────────────────────────────────────────
   14. PRICING
   ───────────────────────────────────────────── */
.bbn-pricing {
    background: var(--bg-sage);
}

.bbn-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.bbn-price-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.bbn-price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.bbn-price-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bbn-price-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bbn-price-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45,42,40,0.1) 0%, rgba(45,42,40,0.65) 60%, rgba(45,42,40,0.85) 100%);
    z-index: 1;
}

.bbn-price-content {
    position: relative;
    z-index: 2;
    padding: var(--space-lg) var(--space-md);
    color: white;
}

.bbn-price-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
}

.bbn-price-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-md);
}

.bbn-price-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.bbn-price-features li {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bbn-price-features li::before {
    content: "✓";
    font-weight: bold;
}

.bbn-price-cta {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bbn-price-cta:hover {
    background: rgba(255,255,255,0.35);
    border-color: white;
    color: white;
}


/* ─────────────────────────────────────────────
   15. FAQ
   ───────────────────────────────────────────── */
.bbn-faq {
    background: var(--bg-cream);
}

.bbn-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.bbn-faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.bbn-faq-question {
    padding: var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    user-select: none;
}

.bbn-faq-question h3 {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    color: var(--text-dark);
}

.bbn-faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bbn-faq-item.active .bbn-faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.bbn-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.bbn-faq-item.active .bbn-faq-answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md);
}

.bbn-faq-answer p {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 0;
}


/* ─────────────────────────────────────────────
   16. INSTAGRAM
   ───────────────────────────────────────────── */
.bbn-instagram {
    background: var(--white);
}

.bbn-instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    max-width: 1200px;
    margin: 0 auto;
}

.bbn-instagram-photo {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
    opacity: 0.25;
    transition: all 0.3s ease;
}

.bbn-instagram-photo:hover {
    opacity: 0.4;
    transform: scale(0.98);
}

.bbn-instagram-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

.bbn-instagram-cta a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.bbn-instagram-cta a:hover {
    gap: 12px;
}


/* ─────────────────────────────────────────────
   17. FOOTER
   ───────────────────────────────────────────── */
.bbn-footer {
    background: linear-gradient(135deg, var(--primary) 0%, #c17b68 100%);
    color: white;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bbn-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.bbn-footer-content {
    position: relative;
    z-index: 2;
}

.bbn-footer h2 {
    font-size: 36px;
    margin-bottom: var(--space-sm);
    color: white;
}

.bbn-footer-subtitle {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: var(--space-lg);
}

.bbn-footer-cta {
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    margin-bottom: var(--space-md);
}

.bbn-footer-cta:hover {
    transform: translateY(-3px);
    color: var(--primary);
}

.bbn-footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.bbn-footer-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.bbn-footer-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.bbn-footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.15);
}

.bbn-footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.bbn-footer-legal a:hover {
    color: white;
}

.bbn-footer-meta {
    margin-top: var(--space-md);
    font-size: 13px;
    opacity: 0.6;
}


/* ─────────────────────────────────────────────
   18. ANIMATIONS
   ───────────────────────────────────────────── */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ─────────────────────────────────────────────
   19. RESPONSIVE — TABLETTE (768px)
   ───────────────────────────────────────────── */
@media (min-width: 768px) {
    :root {
        --space-lg: 60px;
        --space-xl: 80px;
    }

    .bbn-hero h1          { font-size: 56px; }
    .bbn-cta-secondary    { margin-top: 0; margin-left: var(--space-sm); }

    .bbn-personas-grid    { grid-template-columns: repeat(2, 1fr); }
    .bbn-breathwork-comparison { grid-template-columns: repeat(2, 1fr); }
    .bbn-session-grid     { grid-template-columns: repeat(2, 1fr); }
    .bbn-session-gallery  { grid-template-columns: repeat(2, 1fr); }
    .bbn-benefits-grid    { grid-template-columns: repeat(2, 1fr); }
    .bbn-locations-grid   { grid-template-columns: repeat(2, 1fr); }
    .bbn-pricing-grid     { grid-template-columns: repeat(2, 1fr); }
    .bbn-instagram-grid   { grid-template-columns: repeat(4, 1fr); }

    .bbn-authority-card   {
        grid-template-columns: 340px 1fr;
        align-items: start;
    }
    .bbn-authority-photo  {
        width: 340px;
        height: 340px;
        margin: 0;
    }
    .bbn-authority-title,
    .bbn-authority-subtitle { text-align: left; }

    .bbn-footer-links  { flex-direction: row; justify-content: center; }
    .bbn-footer-legal  { flex-direction: row; justify-content: center; }
}


/* ─────────────────────────────────────────────
   20. RESPONSIVE — DESKTOP (1024px)
   ───────────────────────────────────────────── */
@media (min-width: 1024px) {
    :root {
        --space-xl: 100px;
    }

    .bbn-burger        { display: none; }
    .bbn-mobile-menu   { display: none; }

    .bbn-nav-desktop {
        display: flex;
        gap: 40px;
        align-items: center;
        list-style: none;
    }

    .bbn-nav-link {
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        opacity: 0.95;
        transition: all 0.3s ease;
    }

    .bbn-nav-link:hover {
        opacity: 1;
        transform: translateY(-1px);
    }

    .bbn-cta-desktop {
        background: white;
        color: var(--primary);
        padding: 12px 28px;
        border-radius: var(--radius-full);
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .bbn-cta-desktop:hover {
        transform: translateY(-2px);
        color: var(--primary);
    }

    .bbn-hero h1              { font-size: 68px; }
    .bbn-section-header h2    { font-size: 46px; }
    .bbn-personas-grid        { grid-template-columns: repeat(3, 1fr); }
    .bbn-session-gallery      { grid-template-columns: repeat(4, 1fr); }
    .bbn-locations-grid       { grid-template-columns: repeat(3, 1fr); }
    .bbn-pricing-grid         { grid-template-columns: repeat(3, 1fr); }
    .bbn-instagram-grid       { grid-template-columns: repeat(6, 1fr); }
}


/* ─────────────────────────────────────────────
   21. RESPONSIVE — MOBILE (max 767px)
   ───────────────────────────────────────────── */
@media (max-width: 767px) {
    :root {
        --space-sm:  10px;
        --space-md:  14px;
        --space-lg:  20px;
    }

    .bbn-hero              { padding: 56px var(--space-md) 72px; }
    .bbn-hero h1           { font-size: 28px; }
    .bbn-hero-subtitle     { font-size: 15px; }

    .bbn-cta-primary,
    .bbn-cta-secondary {
        display: block;
        width: 90%;
        box-sizing: border-box;
        margin: 10px auto;
    }

    .bbn-authority-photo {
        width: 220px;
        height: 220px;
        margin: 0 auto;
        border-radius: var(--radius-md);
    }

    .bbn-authority-content { text-align: center; }

    .bbn-session-gallery   { padding: 0 12px; }
    .bbn-session-gallery img { height: auto; }
    .bbn-session-grid      { grid-template-columns: 1fr; }
    .bbn-nav-container     { padding: 8px 12px; }
    .bbn-logo img          { height: 36px; }
}

/* ─────────────────────────────────────────────
   22. PAGE GÉNÉRIQUE
   ───────────────────────────────────────────── */
.bbn-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.bbn-page-content .wp-block-post-title,
.bbn-page-content h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.bbn-page-content p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.8;
}


/* ─────────────────────────────────────────────
   23. PAGE 404
   ───────────────────────────────────────────── */
.bbn-404 {
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.bbn-404-emoji {
    font-size: 80px;
    display: block;
    margin-bottom: var(--space-sm);
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1);   opacity: 1;    }
    50%       { transform: scale(1.1); opacity: 0.85; }
}

