/* ========================================
   Stage Hypno-magnétisme Niveau 1
   Spécifique page N1
   ======================================== */

/* Contexte global de la page N1 */
.hypnomagnetisme-n1-page {
    background-color: var(--noir-cosmos);
    color: white;
    overflow-x: hidden;
}

/* ----------------------------------------
   HERO : top line (retour + badge)
---------------------------------------- */

.hero-topline-n1 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.hero-topline-n1 .retour-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: rgba(15, 23, 42, 0.35);
    color: var(--turquoise-energie);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    white-space: nowrap;
}

.hero-topline-n1 .retour-hub-link span {
    font-weight: 500;
}

.hero-topline-n1 .retour-hub-link:hover {
    background: rgba(15, 23, 42, 0.6);
}

.hero-topline-n1 .badge-premium-n1 {
    position: relative;
    z-index: 2; /* garde la capsule au-dessus du décor */
}

/* Séparateur vertical entre les stats du hero */
.separator-vertical {
    background: linear-gradient(to bottom, transparent, var(--dore-lumineux), transparent);
    display: none; /* Mobile first */
    height: 40px;
    margin: 0 25px;
    opacity: 0.5;
    width: 1px;
}

@media (min-width: 768px) {
    .separator-vertical {
        display: inline-block;
        vertical-align: middle;
    }
}

/* Wrapper pour les boutons d'action du Hero */
.cta-hero-main {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .cta-hero-main {
        flex-direction: row;
    }
}

/* Wrapper pour les notifications WooCommerce */
.gfe-notices-wrapper {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--turquoise-energie);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
    color: white;
    font-weight: 500;
    margin: 20px auto;
    max-width: 600px;
    padding: 15px 25px;
    text-align: center;
}

/* ----------------------------------------
   Témoignages N1
---------------------------------------- */

.section-temoignages-n1 {
    background: linear-gradient(180deg, #1e1b4b 0%, var(--noir-cosmos) 100%);
    padding: 100px 20px;
}

.carte-temoignage {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: var(--transition-base, all 0.3s ease);
}

.carte-temoignage:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--turquoise-clair);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

/* Vidéo / vignette responsive 16:9 */
.video-wrapper {
    background: black;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    height: 0;
    margin-bottom: 20px;
    overflow: hidden;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    position: relative;
    width: 100%;
}

.video-wrapper iframe,
.video-wrapper video,
.video-wrapper img {
    border: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
/* ========================================
   NAVIGATION RAPIDE HYPNO – STICKY
   ======================================== */
/* ========================================
   NAVIGATION RAPIDE HYPNO – FIXED ON SCROLL
   ======================================== */

.nav-rapide-hypno {
    position: relative;              /* état normal */
    z-index: 40;
    background: linear-gradient(90deg, rgba(15,23,42,0.96), rgba(30,64,175,0.96));
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-rapide-hypno.is-fixed {
    position: fixed;                 /* devient réellement sticky */
    top: 80px;                       /* ajuste selon la hauteur de ton header Divi */
    left: 0;
    right: 0;
}

body.admin-bar .nav-rapide-hypno.is-fixed {
    top: 110px;                      /* si barre admin WP, un peu plus bas */
}
/* ==========================
   HERO NIVEAU 1 – TOPLINE
   ========================== */

.hero-topline-n1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

/* Lien retour hub = petit breadcrumb discret */
.retour-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    line-height: 1.2;
    text-decoration: none;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.8);
    color: #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.45);
    white-space: nowrap;
}

.retour-hub-link span {
    font-weight: 600;
}

/* Badge premium aligné à droite sur desktop */
.badge-premium-n1 {
    margin-left: auto;
    font-size: 0.8rem;
}

/* Comportement mobile : on empile proprement */
@media (max-width: 767px) {
    .hero-topline-n1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .badge-premium-n1 {
        margin-left: 0;
    }

    .retour-hub-link {
        max-width: 100%;
        white-space: normal;
    }
}

