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



body {

    font: normal 1rem Nunito;

    margin: 0;

    background-color: aliceblue;

}



/* ============================================
   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 moderne et symétrique pour la page Thérapie */
body {
    background-color: transparent;
}

.therapie-hero-container {
    min-height: 100vh;
    padding: 120px 40px 40px;
    background: linear-gradient(135deg, #ffe8d6 0%, #ffd4b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapie-symmetric-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.therapie-card {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgb(255, 119, 51) 0%, rgb(255, 150, 80) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(255, 119, 51, 0.4);
    border: 2px solid rgba(0, 0, 0, 0.8);
    z-index: 2;
    position: relative;
}

.therapie-card-left {
    transform: rotate(-5deg);
}

.therapie-card-right {
    transform: rotate(5deg);
}

.therapie-card:hover {
    transform: scale(1.15) rotate(0deg) translateY(-20px);
    box-shadow: 0 25px 50px rgba(255, 119, 51, 0.6);
    z-index: 10;
}

.therapie-card-icon {
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.therapie-card:hover .therapie-card-icon {
    transform: scale(1.1);
}

.therapie-card-icon img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3)) brightness(1.1) contrast(1.1);
}

.therapie-card:hover .therapie-card-icon img {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4)) brightness(1.15) contrast(1.15);
    transform: scale(1.05);
}

.therapie-card-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Message central */
.therapie-center-message {
    flex: 0 0 400px;
    text-align: center;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px 50px;
    box-shadow: 0 15px 40px rgba(255, 119, 51, 0.3);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 119, 51, 0.2);
    position: relative;
}

.therapie-center-message::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid rgba(255, 255, 255, 0.95);
}

.therapie-quote-line {
    margin: 10px 0;
    font-size: 17px;
    font-weight: 600;
    color: rgb(200, 80, 30);
    text-align: center;
    line-height: 1.6;
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.3px;
}

/* Responsive design */
@media (max-width: 1000px) {
    .therapie-symmetric-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .therapie-card {
        width: 280px;
        height: 280px;
    }
    
    .therapie-card-left,
    .therapie-card-right {
        transform: rotate(0deg);
    }
    
    .therapie-card:hover {
        transform: scale(1.12) rotate(0deg) translateY(-20px);
    }
    
    .therapie-center-message {
        flex: 0 0 auto;
        width: 90%;
        max-width: 500px;
        padding: 30px 40px;
    }
    
    .therapie-card-icon {
        width: 200px;
        height: 200px;
        padding: 0;
    }
    
    .therapie-card-icon img {
        width: 180px;
        height: 180px;
    }
    
    .therapie-card-title {
        font-size: 16px;
    }
    
    .therapie-quote-line {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .therapie-card {
        width: 240px;
        height: 240px;
    }
    
    .therapie-card-icon {
        width: 160px;
        height: 160px;
        margin-bottom: 15px;
        padding: 0;
    }
    
    .therapie-card-icon img {
        width: 150px;
        height: 150px;
    }
    
    .therapie-card-title {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .therapie-center-message {
        padding: 25px 30px;
    }
    
    .therapie-quote-line {
        font-size: 13px;
        margin: 8px 0;
    }
}

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

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

.box {
    display: block;
    background-color: rgb(255, 119, 51);
    margin: 5%;
    border-radius: 25px;
}

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

.redirection .box a {
    display: block;
    text-decoration: none;
    text-justify: center;
    color: white;
    background-color: rgb(255, 119, 51);
}



h1 {

    margin-left: 30%;

    color: rgb(255, 119, 51);

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

}



h2 {

    margin-left: 5%;

    color: rgb(255, 119, 51);

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

}



p {

    text-align: justify;

    margin-left: 10%;

    margin-right: 10%;

    color: rgb(255, 119, 51);

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

}



.liste {

    left: 5%;

    text-align: justify;

    margin-left: 10%;

    margin-right: 10%;

    color: rgb(255, 119, 51);

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

}



.tab {

    margin-left: 4em;

}



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