* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F0FAFF;
       
}

.top-bar {
    background-color: #98b3c2;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Prend 100% de la largeur de la fenêtre */
    margin: 0; /* Supprime les marges éventuelles */
    z-index: 1001;
    font-size: 14px;
    transition: top 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box; /* Assure que le padding n'ajoute pas de largeur */
}

.top-bar p {
    display: inline; /* Affiche le texte sur la même ligne que les icônes */
    margin: 0; /* Supprime la marge par défaut du paragraphe */
}

.top-bar img {
    width: 18px;
    height: auto;
    vertical-align: middle; /* Aligne les icônes avec le texte */
}

.top-bar a {
    margin-left: 10px; /* Espacement entre les icônes */
    text-decoration: none;
    color: white; /* Assure que les liens sont bien en blanc */
}

header {
    background-color: #D4E5EF;
    padding: 5px;
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 250px;
    height: auto;

}

.menu-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.discover {
    background-color: #EF9F8E;
    color: white;
}

.appointment {
    background-color: #4C9AB4;
    color: white;
}


/**************** page d'accueil ******************/

main{
     margin: 80px;
    
}
.Slogan {
    text-align: center;
    margin-top: 180px;
}

.Slogan h1 {
    font-size: 28px;
    color: #000;
}

.Slogan p {
    font-size: 18px;
}

.hero-section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 80px;
}

.brainy-container {
    display: flex;
    justify-content: center;
    position: relative;
    gap: 20px;
    flex-wrap: wrap;
}

.brainy-image img {
    width: 350px;
    height: auto;
 
}

.brainy-image:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.brainy-image {
    background-color: #B381A5;
    border-radius: 100px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bubble-image {
    position: relative;
    display: inline-block;
}

.bubble-image img {
    width: 600px;
    height: auto;
    border-radius: 20px;
    transform: scaleX(-1);
}

#bubble-text {
    position: absolute;
    top: 40%;
    left: 46%;
    transform: translate(-50%, -50%);
    font-family: 'Rammetto One', regular;
    font-size: 16px;
    color: #ffffff;
    border-radius: 20px;
    width: 75%;
    text-align: center;
}

#bubble-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/**************** fin page d'accueil ****************/


/**************** puissance ****************/
.mind-power-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background-color: #F0FAFF;
    margin-top: 20px;
}

.mind-power-content {
    max-width: 20px;
}

 h2 {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    color: #EF9F8E;
    display: flex;
    align-items: center;
    gap: 10px;
     margin-top: 50px;
     margin-bottom: 25px;

}

.brain-icon-image {
    width: 32px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}


.mind-power-img-question img {
    margin-top: 20px;
    width: 80%;
}

.mind-power-section{
    margin-left: 5%;
}


.mind-power-image img {
    background-color: #4C9AB4;
    border-radius: 100%;
    padding: 20px;
    margin-left: 10%;
    width: 300px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.brain-motivation {
    width: 90%;
    margin-left:4%;
 
}

/**************** fin puissance ****************/

/**************** therapiste ****************/


.therapy-overview {
    background-color: #F0FAFF;
    font-family: 'Arial', sans-serif;
}

 .texte {
    font-size: 20px;
    color: #55667B;
    margin-bottom: 30px;
}

.therapist-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.therapist-photo img {
    width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.therapy-steps {
    text-align: left;
    max-width: 1000px;
}

.intro {
    background-color: #7CAAC1;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

.step {
    display: flex;
    align-items: center;
    background-color: #B381A5;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}

.step-number {
    background-color: #A77298;
    color: #fff;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 50%;
    margin-right: 10px;
}

/**************** fin therapiste ****************/
/**************** Début Pourquoi choisir Trabsformidables ********************/

.PourquoiContent {
    margin: 0 auto;
    padding: 2%;
    border-radius: 50px;
    border: 2px solid black;
    width: 65vw;
    background-color: #4C9AB4;
}

.PourquoiContent p {
    margin-top: 1vh;
    color: white;
    line-height: 1.7;
    text-align: center;
}

.PourquoiContent p span {
    font-weight: bolder;
    font-size:1.2em;
}
.Pourquoi{
    margin-left: 40%;
    margin-top: 25px;
}

.phrasePourquoi {
    font-weight: normal;

}
.PourquoiImg{
    width: 130px;
    margin-left: 380px;
}

.phrasePourquoi span {
    padding: 1%;
    border-radius: 10px 10px 0px 10px;
    border: 2px solid black;
    background-color: #EF9F8E;
}

/**************** FIN Pourquoi choisir Trabsformidables ********************/

.testimonial-section {
    max-width: 100%;
    height: auto;
    background-color: #B381A5; 
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 150px;
}

.testimonial-header {
    background-color: #B381A5;
    color: #f5b5a4; 
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-header .emoji {
    font-size: 1.5rem;
}

.testimonial-content {
    background-color: #ffffff;
    width: 70%;
    padding: 1.5rem;
    margin-left: 14%;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.author-info {
    text-align: right;
    font-weight: bold;
    font-style: italic;
    margin-top: 1rem;
}

.author-info span {
    display: block;
    font-weight: normal;
    font-style: normal;
}


/**************** offre ********************/

.container {
    display: flex;
    justify-content: center; 
    align-items: center;    
    gap: 40px;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    color: white;
}

.circle ul {
    display: none;
    list-style: none;
    text-align: left;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    transition-delay: 0.4s;
}

.circle p {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.circle.gold {
    background-color: #EF9F8E;
}

.circle.premium {
    background-color:  #B381A5;
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.circle.infinite {
    background-color: #4C9AB4;
}

.circle:hover {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.circle.gold:hover {
    background-color: #EF9F8E;
}

.circle.premium:hover {
    background-color: #B381A5;
}

.circle.infinite:hover {
    background-color: #4C9AB4;
}

.circle:hover ul {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    font-family: 'Verdana', sans-serif;
    opacity: 1;
}

.circle:hover p {
    margin-bottom: 20px;
    color: white;
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    text-align: center;
    transition: color 2s ease;
}

.circle ul li {
    padding: 5px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.hover-instruction {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.hover-instruction p {
    font-size: 1.2rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;

}


/************* fin offre *************/

/**************** Début Formulaire ****************/

.contact-form {
    padding: 20px 40px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    box-sizing: border-box; 
}


/* Groupement des champs du formulaire */
.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

/* Champs de saisie */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

textarea {
    resize: none;
    margin-top:20px;
    
}

/* Bouton d'envoi */
button {
    background-color: #B381A5;
    color: white;
    padding: 10px 30px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
}

button:hover {
    background-color: #A77298;
}

.appointment-link {
    color: #fff; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 18px;
    padding: 10px; 
    border-radius: 10px; 
    background-color: #B381A5; 
    transition: background-color 0.3s; 
    margin-top:7px;
        margin-bottom:20px;
}

.appointment-link:hover {
    background-color: #A77298; 
}

.ou{
    margin-top:50px;
     margin-bottom:30px;
}

/* Responsive pour petits écrans */
@media (max-width: 480px) {
    .form-group {
        flex-direction: column;
    }
}
/**************** Fin Formulaire ****************/



/**************** Début Footer ****************/

footer{
  background-color: #98b3c2;
    color: white;
    text-align: center;
    padding: 30px 0;
    top: 0;
    left: 0;
    width: 100vw; 
    margin-left: 0px; 
    box-sizing: border-box; 
}


.Footerlogo img{
    width: 250px;
    height: auto;
    background-color:#F0FAFF;
    padding:5px;
    border-radius:15px;
    align-content:center;
}

.FooterMedia{
    margin-top: 20px;
    text-align: center;
    width:100vw;
}

.FooterMedia img {
    width: 18px;
    height: auto;
    vertical-align: middle; 
}

.FooterMedia a {
    margin-left: 10px; 
    text-decoration: none;
    color: white;
}

.FooterDeveloped{
    margin-top:20px;
    text-decoration: none;
}

.FooterDeveloped a{
   color: #fff;
   text-decoration: none;
}

.FooterDeveloped a:hover{
   color: #EF9F8E;
}

/**************** Début Cookies****************/

 #cookie-banner {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #98b3c2;
            color: #fff;
            padding: 15px;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }
        #cookie-banner p {
            margin: 0;
            padding-right: 20px;
        }
        
        #cookie-banner a {
           color:#F0FAFF;
        }
        
        #cookie-banner button {
            padding: 10px 15px;
            color: #98b3c2;
            background-color: #fff;
            border: none;
            cursor: pointer;
            border-radius: 4px;
        }
        
        
    
        @media (max-width: 1150px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    #cookie-banner p {
        padding: 0 0 10px 0;
        text-align: left;
    }
    #cookie-banner button {
        margin: 5px 0;
        width: 100%; 
    }
}
        

        
        /**************** fin Cookies****************/


