/* Fonts chargées dans le head (style_common / fonction head) */

body {

    font: normal 1rem Nunito;

    margin: 0;

    background-color: aliceblue;

}



/* ============================================
   Navigation Bar - Design Moderne
   ============================================ */
/* Note: Les styles du menu hamburger et responsive sont dans style_common.css */

.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,
.navbar .coaching li,
.navbar .therapie li,
.navbar .autre li {
    position: relative;
}

.navbar .mpc li::after,
.navbar .coaching li::after,
.navbar .therapie li::after,
.navbar .autre li::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 15px;
    z-index: 1002;
    pointer-events: none;
}

.navbar .mpc li:hover::after,
.navbar .coaching li:hover::after,
.navbar .therapie li:hover::after,
.navbar .autre li:hover::after {
    pointer-events: auto;
}

.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: 0;
    padding: 15px 0 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 {
    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: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;
}

.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);
    }
}



h1 {

    color: rgb(117, 122, 118);

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

    font-size: x-large;

    text-align: center;

}



h2 {

    margin-left: 5%;

    color: rgb(117, 122, 118);

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

}



p {

    text-align: justify;

    margin-left: 10%;

    margin-right: 10%;

    color: rgb(117, 122, 118);

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

}



.texte {

    background-color: rgba(255,255,255,0.7);

    margin-left: 10%;

    margin-right: 10%;

}

/* ============================================
   Styles modernes pour la page d'accueil
   ============================================ */

/* Body avec fond d'image */
.accueil-body {
    background-image: url(/assets/image/Background/accueil.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Masquer le contenu principal pendant l'animation */
.accueil-body:not(.animation-complete) #main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.accueil-body.animation-complete #main-content {
    opacity: 1;
    visibility: visible;
    animation: fadeInContent 0.5s ease-out forwards;
}

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

/* Overlay sombre premium pour lisibilité sur fond mer */
.accueil-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 35, 60, 0.75) 0%, rgba(25, 55, 90, 0.65) 50%, rgba(15, 35, 60, 0.55) 100%);
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   Animation d'arrivée avec la fourmi
   ============================================ */
.accueil-load-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.accueil-load-animation.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.accueil-load-animation.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.accueil-load-animation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 40px;
}

/* Container du logo AVEC */
.accueil-load-logo-container {
    position: relative;
    width: 400px;
    max-width: 50vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accueil-load-logo {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    animation: logoFadeIn 0.3s ease-out 0.1s forwards;
}

/* Masques pour révéler progressivement les lettres */
.accueil-load-logo-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.accueil-load-logo-mask {
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

/* Masques individuels pour chaque lettre - révèle progressivement de gauche à droite */
.accueil-load-logo-mask-a {
    left: 0;
    width: 25%;
    clip-path: inset(0 0 0 0);
    animation: revealLetterA 0.25s ease-out 0s forwards, fadeOutMask 0.2s ease-out 0.25s forwards;
}

.accueil-load-logo-mask-v {
    left: 25%;
    width: 25%;
    clip-path: inset(0 0 0 0);
    animation: revealLetterV 0.25s ease-out 0.25s forwards, fadeOutMask 0.2s ease-out 0.5s forwards;
}

.accueil-load-logo-mask-e {
    left: 50%;
    width: 25%;
    clip-path: inset(0 0 0 0);
    animation: revealLetterE 0.25s ease-out 0.5s forwards, fadeOutMask 0.2s ease-out 0.75s forwards;
}

.accueil-load-logo-mask-c {
    left: 75%;
    width: 25%;
    clip-path: inset(0 0 0 0);
    animation: revealLetterC 0.25s ease-out 0.75s forwards, fadeOutMask 0.2s ease-out 1s forwards;
}

@keyframes revealLetterA {
    0% {
        clip-path: inset(0 0% 0 0%);
    }
    100% {
        clip-path: inset(0 100% 0 0%);
    }
}

@keyframes revealLetterV {
    0% {
        clip-path: inset(0 0% 0 0%);
    }
    100% {
        clip-path: inset(0 100% 0 0%);
    }
}

@keyframes revealLetterE {
    0% {
        clip-path: inset(0 0% 0 0%);
    }
    100% {
        clip-path: inset(0 100% 0 0%);
    }
}

@keyframes revealLetterC {
    0% {
        clip-path: inset(0 0% 0 0%);
    }
    100% {
        clip-path: inset(0 100% 0 0%);
    }
}

@keyframes fadeOutMask {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.accueil-load-fourmi {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: fourmiEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

@keyframes fourmiEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-20deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Respecter prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .accueil-load-animation {
        display: none !important;
    }
    
    .accueil-load-fourmi {
        animation: none;
    }
    
    .accueil-load-logo {
        animation: none;
        opacity: 1;
    }
    
    .accueil-load-logo-mask {
        display: none !important;
    }
}

/* Responsive pour le logo dans l'animation */
@media (max-width: 768px) {
    .accueil-load-logo-container {
        width: 80vw;
        max-width: 400px;
    }
    
    .accueil-load-animation-content {
        gap: 30px;
    }
    
    .accueil-load-fourmi {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .accueil-load-logo-container {
        width: 75vw;
    }
    
    .accueil-load-fourmi {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   Hero Premium - Structure 2 colonnes
   ============================================ */

/* Container principal - Optimisé pour "above the fold" */
.accueil-hero-container {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 90px);
    padding: 60px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper principal en 2 colonnes */
.accueil-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    animation: heroFadeIn 0.6s ease-out forwards;
}

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

/* Colonne gauche : Contenu texte */
.accueil-hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
}

/* Titre principal fort - Spécificité élevée pour surcharger style_responsive.css */
.accueil-hero-content h1.accueil-hero-title,
.accueil-hero-content .accueil-hero-title {
    color: white !important;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    text-align: left !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: -0.5px !important;
}

/* Sous-titre - Spécificité élevée pour surcharger style_responsive.css */
.accueil-hero-content p.accueil-hero-subtitle,
.accueil-hero-content .accueil-hero-subtitle {
    color: white !important;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    max-width: 600px !important;
    text-align: left !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.25) !important;
}

/* CTA Container */
.accueil-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* CTA Principal */
.accueil-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.95);
    color: rgb(15, 35, 60);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.accueil-cta-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.accueil-cta-primary:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* CTA Secondaire */
.accueil-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.accueil-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.accueil-cta-secondary:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Bénéfices en pills modernes - 2 colonnes de 3 pills */
.accueil-hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(max-content, 1fr));
    gap: 14px;
    margin-top: 8px;
    max-width: 720px;
}

.accueil-benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.accueil-benefit-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.accueil-benefit-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.9);
    flex-shrink: 0;
}

/* Colonne droite : Photo premium */
.accueil-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.accueil-photo-wrapper {
    position: relative;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.accueil-photo-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.accueil-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ============================================
   Responsive Design - Hero Premium
   ============================================ */

@media (max-width: 1200px) {
    .accueil-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
    }

    .accueil-hero-visual {
        order: -1;
        justify-content: center;
    }

    .accueil-photo-wrapper {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .accueil-hero-container {
        padding: 40px 20px 30px;
    }

    .accueil-hero-wrapper {
        gap: 35px;
    }

    .accueil-hero-title {
        font-size: 2.5rem;
    }

    .accueil-hero-subtitle {
        font-size: 1.25rem;
    }

    .accueil-hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .accueil-cta-primary,
    .accueil-cta-secondary {
        width: 100%;
        text-align: center;
    }

    .accueil-hero-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .accueil-benefit-pill {
        font-size: 0.9rem;
        padding: 10px 20px;
        white-space: nowrap;
    }

    .accueil-benefit-icon {
        width: 36px;
        height: 36px;
    }

    .accueil-photo-wrapper {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .accueil-hero-title {
        font-size: 2rem;
    }

    .accueil-hero-subtitle {
        font-size: 1.1rem;
    }

    .accueil-hero-content {
        gap: 24px;
    }

    .accueil-benefit-pill {
        font-size: 0.85rem;
        padding: 9px 18px;
        white-space: nowrap;
    }

    .accueil-benefit-icon {
        width: 30px;
        height: 30px;
    }

    .accueil-photo-wrapper {
        width: 200px;
    }
}

/* Note: Les styles responsive de la navbar sont dans style_common.css */