@import url('https://fonts.googleapis.com/css?family=Nunito');



html {

    margin: 0%;

    padding: 0%;

}



body {

    font: normal 1rem Nunito;

    margin: 0;

    background-color: aliceblue;

}

/* Fond uniforme sur la page accueil PC : pas de bandeau blanc en bas */
main.pc-accueil {
    background: linear-gradient(135deg, #d4e6d6 0%, #b8d4ba 100%);
    min-height: 100vh;
}



/* ============================================
   Navigation Bar - Design Moderne
   ============================================ */

.navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 90px;

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(10px);

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);

    margin: 0;

    padding: 0 40px;

    z-index: 1000;

    transition: all 0.3s ease;

    border-bottom: 2px solid;

}





.navbar img {

    height: 70px;

    width: auto;

    transition: transform 0.3s ease;

}



.navbar img:hover {

    transform: scale(1.05);

}



.navbar > li {

    list-style: none;

    position: relative;

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

}



.navbar > li:first-child {

    flex: 0 0 auto;

    justify-content: flex-start;

    margin-right: auto;

    position: relative;

}



.navbar > li:first-child::after {

    content: '';

    position: absolute;

    right: -20px;

    top: 50%;

    transform: translateY(-50%);

    width: 1px;

    height: 40px;

    background: linear-gradient(to bottom, transparent, rgba(117, 122, 118, 0.3), transparent);

}



.navbar > div {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}



.navbar > div:not(:last-child)::after {

    content: '';

    position: absolute;

    right: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 1px;

    height: 40px;

    background: linear-gradient(to bottom, transparent, rgba(117, 122, 118, 0.3), transparent);

}



.navbar > div > li {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.navbar .mpc a,

.navbar .coaching a,

.navbar .therapie a,

.navbar .autre a {

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    height: 50px;

    padding: 0 20px;

    border-radius: 12px;

    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    font-size: 0.95rem;

    font-weight: 600;

    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    position: relative;

    white-space: nowrap;

}



.navbar .mpc a {

    color: rgb(0, 153, 32);

}



.navbar .coaching a {

    color: rgb(43, 80, 142);

}



.navbar .therapie a {

    color: rgb(255, 119, 51);

}



.navbar .autre a {

    color: rgb(117, 122, 118);

}



.navbar .mpc a:hover,

.navbar .coaching a:hover,

.navbar .therapie a:hover,

.navbar .autre a:hover {

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}



.navbar .mpc a:hover {

    background: rgba(0, 153, 32, 0.1);

    color: rgb(0, 153, 32);

}



.navbar .coaching a:hover {

    background: rgba(43, 80, 142, 0.1);

    color: rgb(43, 80, 142);

}



.navbar .therapie a:hover {

    background: rgba(255, 119, 51, 0.1);

    color: rgb(255, 119, 51);

}



.navbar .autre a:hover {

    background: rgba(117, 122, 118, 0.1);

    color: rgb(117, 122, 118);

}



/* Dropdown Menus - Style Moderne */
.navbar .mpc li ul,
.navbar .coaching li ul,
.navbar .therapie li ul,
.navbar .autre li ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0s linear;
    z-index: 1001;
    pointer-events: none;
}

.navbar .mpc li:hover ul,
.navbar .coaching li:hover ul,
.navbar .therapie li:hover ul,
.navbar .autre li:hover ul,
.navbar .mpc li ul:hover,
.navbar .coaching li ul:hover,
.navbar .therapie li ul:hover,
.navbar .autre li ul:hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease 0s, visibility 0s linear 0s;
    pointer-events: auto;
    animation: fadeInDown 0.3s ease forwards;
}

.navbar .mpc li ul li,
.navbar .coaching li ul li,
.navbar .therapie li ul li,
.navbar .autre li ul li {
    background-color: transparent;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .mpc li ul li a,
.navbar .coaching li ul li a,
.navbar .therapie li ul li a,
.navbar .autre li ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 0.9rem;
    height: auto;
    min-height: 48px;
    padding: 12px 20px;
    margin: 2px 8px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.2s ease;
    white-space: normal;
    line-height: 1.4;
}





/* Hover effects pour les items du dropdown */
.navbar .mpc li ul li a:hover {
    color: white;
    background-color: rgb(0, 153, 32);
    transform: translateX(4px);
}

.navbar .coaching li ul li a:hover {
    color: white;
    background-color: rgb(43, 80, 142);
    transform: translateX(4px);
}

.navbar .therapie li ul li a:hover {
    color: white;
    background-color: rgb(255, 119, 51);
    transform: translateX(4px);
}

.navbar .autre li ul li a:hover {
    color: white;
    background-color: rgb(117, 122, 118);
    transform: translateX(4px);
}

/* Animation pour le dropdown */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}



/* Design Pleine Conscience : texte à gauche (bulle circulaire) + cercle de bulles à droite + icône méditation au centre */
.pc-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 100px 28px 36px;
    background: linear-gradient(135deg, #d4e6d6 0%, #b8d4ba 100%);
    box-sizing: border-box;
}

.pc-hero-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

/* --- Zone gauche : bulle circulaire texte --- */
.pc-text-bubble {
    flex: 0 0 auto;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 36px rgba(0, 153, 32, 0.25), 0 4px 14px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 153, 32, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    box-sizing: border-box;
}

.pc-text-bubble .pc-quote-line {
    margin: 0 0 0.4em;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(0, 120, 25);
    text-align: center;
    line-height: 1.6;
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.02em;
}

.pc-text-bubble .pc-quote-line:last-child {
    margin-bottom: 0;
}

/* --- Zone droite : anneau de bulles + icône centre --- */
.pc-right-block {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.pc-bubbles-ring {
    position: relative;
    width: 520px;
    height: 520px;
    flex-shrink: 0;
}

/* Bulle centrale : homme en méditation (même style que les autres bulles, sans lien) */
.pc-center-bubble {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(0, 153, 32) 0%, rgb(0, 180, 45) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 153, 32, 0.4), 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.pc-center-bubble .pc-bubble-icon {
    margin-bottom: 0;
}

.pc-center-bubble .pc-bubble-icon img {
    mix-blend-mode: multiply;
}

/* Bulles circulaires sur l'anneau (5–6 cercles à droite) */
.pc-bubble {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(0, 153, 32) 0%, rgb(0, 180, 45) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    left: 50%;
    top: 50%;
    --r: 185px;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 8px 24px rgba(0, 153, 32, 0.4), 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.15);
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    .pc-bubble {
        transition: none;
    }
}

.pc-bubble::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 153, 32, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.pc-bubble:hover {
    box-shadow: 0 14px 36px rgba(0, 153, 32, 0.55), 0 6px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.pc-bubble:focus {
    outline: none;
}

.pc-bubble:focus-visible {
    outline: 3px solid rgb(0, 153, 32);
    outline-offset: 3px;
}

/* Positionnement en cercle : rotate puis translateY(-r) puis contre-rotate pour garder les bulles droites */
.pc-bubble-1 { transform: translate(-50%, -50%) rotate(0deg) translateY(calc(-1 * var(--r))) rotate(0deg); }
.pc-bubble-2 { transform: translate(-50%, -50%) rotate(60deg) translateY(calc(-1 * var(--r))) rotate(-60deg); }
.pc-bubble-3 { transform: translate(-50%, -50%) rotate(120deg) translateY(calc(-1 * var(--r))) rotate(-120deg); }
.pc-bubble-4 { transform: translate(-50%, -50%) rotate(180deg) translateY(calc(-1 * var(--r))) rotate(-180deg); }
.pc-bubble-5 { transform: translate(-50%, -50%) rotate(240deg) translateY(calc(-1 * var(--r))) rotate(-240deg); }
.pc-bubble-6 { transform: translate(-50%, -50%) rotate(300deg) translateY(calc(-1 * var(--r))) rotate(-300deg); }

.pc-bubble-1:hover,
.pc-bubble-1:focus-visible { transform: translate(-50%, -50%) rotate(0deg) translateY(calc(-1 * var(--r))) rotate(0deg) scale(1.12); }
.pc-bubble-2:hover,
.pc-bubble-2:focus-visible { transform: translate(-50%, -50%) rotate(60deg) translateY(calc(-1 * var(--r))) rotate(-60deg) scale(1.12); }
.pc-bubble-3:hover,
.pc-bubble-3:focus-visible { transform: translate(-50%, -50%) rotate(120deg) translateY(calc(-1 * var(--r))) rotate(-120deg) scale(1.12); }
.pc-bubble-4:hover,
.pc-bubble-4:focus-visible { transform: translate(-50%, -50%) rotate(180deg) translateY(calc(-1 * var(--r))) rotate(-180deg) scale(1.12); }
.pc-bubble-5:hover,
.pc-bubble-5:focus-visible { transform: translate(-50%, -50%) rotate(240deg) translateY(calc(-1 * var(--r))) rotate(-240deg) scale(1.12); }
.pc-bubble-6:hover,
.pc-bubble-6:focus-visible { transform: translate(-50%, -50%) rotate(300deg) translateY(calc(-1 * var(--r))) rotate(-300deg) scale(1.12); }

.pc-bubble-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    transition: transform 0.25s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.pc-bubble:hover .pc-bubble-icon,
.pc-bubble:focus-visible .pc-bubble-icon {
    transform: scale(1.08);
}

/* Symboles plus grands : moins de padding + scale sur l’image pour qu’ils ressortent */
.pc-bubble-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
    transform: scale(1.18);
}

.pc-bubble:hover .pc-bubble-icon img,
.pc-bubble:focus-visible .pc-bubble-icon img {
    transform: scale(1.18);
}

.pc-bubble-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    padding: 0 4px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.02em;
}

/* Responsive : desktop 2 colonnes → mobile colonne (texte en haut, cercle en dessous) */
@media (max-width: 1024px) {
    .pc-hero-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .pc-text-bubble {
        width: 380px;
        height: 380px;
        padding: 44px 36px;
    }
    
    .pc-text-bubble .pc-quote-line {
        font-size: 1.15rem;
    }
    
    .pc-bubbles-ring {
        width: 480px;
        height: 480px;
    }
    
    .pc-bubble {
        width: 118px;
        height: 118px;
        --r: 170px;
    }
    
    .pc-bubble-icon {
        width: 70px;
        height: 70px;
        padding: 3px;
    }
    
    .pc-bubble-title {
        font-size: 12px;
    }
    
    .pc-center-bubble {
        width: 118px;
        height: 118px;
    }
    
    .pc-center-bubble .pc-bubble-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 700px) {
    .pc-hero-container {
        padding: 90px 18px 28px;
    }
    
    .pc-hero-layout {
        gap: 28px;
    }
    
    .pc-text-bubble {
        width: 340px;
        height: 340px;
        padding: 40px 28px;
    }
    
    .pc-text-bubble .pc-quote-line {
        font-size: 1.08rem;
        line-height: 1.55;
    }
    
    .pc-bubbles-ring {
        width: 400px;
        height: 400px;
    }
    
    .pc-bubble {
        width: 98px;
        height: 98px;
        --r: 142px;
    }
    
    .pc-bubble-icon {
        width: 56px;
        height: 56px;
        padding: 3px;
        margin-bottom: 4px;
    }
    
    .pc-bubble-title {
        font-size: 11px;
        padding: 0 4px;
    }
    
    .pc-center-bubble {
        width: 98px;
        height: 98px;
    }
    
    .pc-center-bubble .pc-bubble-icon {
        width: 56px;
        height: 56px;
    }
}

/* Anciens styles conservés pour compatibilité */
.redirection {
    display: grid;
    padding-top: 2%;
}

.top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.middle {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

.bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.box {
    display: block;
    background-color: rgb(0, 153, 32);
    color: white;
    margin: 5%;
    border-radius: 80px;
}

.redirection li {
    list-style: none;
    text-align: center;
}

.redirection .box a {
    display: block;
    text-decoration: none;
    text-justify: center;
    color: white;
    background-color: rgb(0, 153, 32);
    margin-left: 0;
    margin-right: 0;
}



h1 {

    margin-left: 30%;

    color: rgb(0, 153, 32);

    font-family: Arial, Helvetica, sans-serif;

}



h2 {

    margin-left: 5%;

    color: rgb(0, 153, 32);

    font-family: Arial, Helvetica, sans-serif;

}



p {

    text-align: justify;

    margin-left: 10%;

    margin-right: 10%;

    color: rgb(0, 153, 32);

    font-family: Arial, Helvetica, sans-serif;

}



.liste {

    left: 5%;

    text-align: justify;

    margin-left: 10%;

    margin-right: 10%;

    color: rgb(0, 153, 32);

    font-family: Arial, Helvetica, sans-serif;

}



.tab {

    margin-left: 4em;

}



/* .texte est maintenant géré dans style_responsive.css pour un rendu moderne unifié */