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

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

/* === TOPBAR === */
.topbar {
    background-color: white;
    color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

/* Bloc central dans la topbar */
.topbar-center {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}


.citation-texte {
    font-family: 'Georgia', serif;
    font-size: 0.95em;
    line-height: 1.4em;
    color: #444;
}

.citation-texte em {
    font-style: italic;
    color: #555;
}

.citation-texte span {
    font-size: 0.85em;
    color: #777;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 60px;
    width: auto;
}

.topbar-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-size: 1em;
}

.topbar-text .adeli {
    font-size: 0.85em;
    color: #333;
    margin-top: 3px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* === NAVBAR === */
.navbar {
    background-color: #c4a793;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-link {
    background-color: white;
    color: #c4a793;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: #857265;
    color: white;
}

/* introduction */

.presentation-section {
    background-color: #c2caa5; /* vert pomme */
    padding: 60px 20px;
}

.presentation-title {
    font-size: 2.5em;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.presentation-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e; /* orange */
    margin: 10px auto 0;
    border-radius: 2px;
}

.presentation-box {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.presentation-text {
    flex: 1 1 60%;
    font-size: 1.1em;
    color: #333;
    line-height: 1.7em;
}

.presentation-image {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
}

.presentation-image img {
    max-height: 200px;
    width: auto;
    border-radius: 10px;
}



/* carte localisation index */


.image-section {
    background-color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.image-section-title {
    color: #000000;
    font-size: 2em;
    margin-bottom: 20px;
    position: relative;
}

.image-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e; /* orange */
    margin: 10px auto 0;
    border-radius: 2px;
}

.centered-image img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* === BOUTONS === */
.button-container {
    margin-top: 20px;
}

.btn-rdv {
    background-color: #c4a793;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-rdv:hover {
    background-color: #857265;
}

/* === SECTIONS === */
.services {
    background-color: #c2caa5;
    padding: 40px 20px;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.btn-small {
    background-color: #c4a793;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-small:hover {
    background-color: #857265;
}

.rdv-cta {
    background-color: #dc8e5e; /* orange foncé */
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.rdv-container p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.rdv-cta .btn-rdv {
    background-color: white;
    color: #dc8e5e;
    font-weight: bold;
}

footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column h3 {
    margin-bottom: 10px;
}

.footer-column p {
    margin: 5px 0;
}

.google-map img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
}

/* === NAVIGATION AVEC BOUTONS ARRONDIS STYLÉS === */
.navbar {
    background-color: #dc8e5e; /* ← ici la nouvelle couleur */
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-nav {
    background-color: #c4a793;
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.btn-nav:hover {
    background-color: #857265;
    color: white;
}

/* === PAGE CONTACT === */

.contact-header-full {
    min-height: 60vh;
    background-color: #c2caa5;
    padding: 30px 20px 40px;
    text-align: center;
}

.contact-header-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto; /* ← ça centre le bloc */
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    font-size: 2em;
    margin-bottom: 25px;
}

.contact-form-wrapper label {
    display: block;
    text-align: left;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.1em;
	color: #000000; /* Couleur noire */
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
    box-sizing: border-box;
    resize: vertical;
}

.contact-form-wrapper .btn-rdv {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    font-size: 1.1em;
    border-radius: 6px;
}

.contact-title {
    font-size: 2.5em;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.contact-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e;
    margin: 10px auto 0;
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info-top {
    background-color: #c2caa5; /* vert pomme */
    padding: 40px 20px;
}

.contact-info-wrapper {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-map {
    flex: 1 1 50%;
}

.contact-details {
    flex: 1 1 45%;
    font-size: 1.1em;
    line-height: 1.7em;
    color: #333;
}

.contact-details h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.contact-details .icon {
    height: 20px;
    width: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.info-voix {
    font-size: 0.85em;
    font-style: italic;
    color: #555;
    margin-top: 10px;
}

.contact-header-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-accroche {
    width: 100%;
    font-size: 1.1em;
    line-height: 1.6em;
    color: #333;
    text-align: center; /* ou left si tu préfères */
    margin-bottom: 20px;
}

/* Section tarif page tarif */

.tarif {
    background-color: #c2caa5;
    padding: 60px 20px;
    text-align: center;
	margin-bottom: -60px; /* ✅ Ajouté ou réduit si déjà présent */
}

.tarif-title {
    font-size: 2.2em;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.tarif-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e; /* orange */
    margin: 10px auto 0;
    border-radius: 2px;
}

.tarif-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.tarif-card-left {
    flex: 1 1 300px;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.tarif-left-title {
    font-size: 1.4em;
    color: #2e7d32;
    margin-bottom: 10px;
}

.tarif-left-price {
    font-size: 2.5em;
    font-weight: bold;
    margin: 10px 0;
}

.tarif-left-duration {
    font-size: 0.95em;
    color: #555;
}

.tarif-card-right {
    flex: 2 1 600px;
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.tarif-card-heading {
    font-size: 1.3em;
    color: #2e7d32;
    margin-bottom: 10px;
}

.tarif-card-text {
    font-weight: bold;
    margin-bottom: 15px;
}


/* rembourssement */
.remboursement {
    background-color: #dc8e5e;
    padding: 60px 20px;
    text-align: center;
}

.remboursement-title {
    font-size: 2.2em;
    margin-bottom: 40px;
	color: #ffffff;
}

.remboursement-container {
    display: flex;
    flex-direction: column; /* empile les éléments verticalement */
    align-items: center;     /* centre horizontalement */
    justify-content: center; /* centre verticalement si besoin */
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
    text-align: center; /* pour centrer le texte */
}

.remboursement-text img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.remboursement-text {
    flex: 2 1 70%;
    font-size: 1.1em;
    line-height: 1.6em;
	color: #ffffff;
}

.remboursement-image {
    flex: 1 1 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.remboursement-image img {
    max-width: 100%;
    max-height: 170px;
    height: auto;
}

/* section paiment acceptés*/
.paiement {
    background-color: #ffffff;
    height: 150px;
    display: flex;
    align-items: center;
}

.paiement-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    gap: 40px;
    flex-wrap: wrap;
}

.paiement-text {
    flex: 1 1 45%;
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
}

.paiement-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.paiement-image img {
    max-height: 120px;
    height: auto;
    width: auto;
}

.contact-info-message {
    width: 100%;
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6em;
    color: #333;
}

/* qui suis je */

.qui-suis-je {
    background-color: #c2caa5;
    padding: 60px 20px;
    text-align: center;
}

.qui-suis-je h1 {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

/* Barre décorative sous le titre */
.qui-suis-je h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e;
    margin: 10px auto 0;
    border-radius: 2px;
}

.qui-suis-je-box {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.qui-suis-je-box p {
    font-size: 1.1em;
    line-height: 1.8em;
    color: #333;
    text-align: left;
}

.btn-center {
    text-align: center;
    margin-top: 30px;
}


/* cursus */

.mon-cursus {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.timeline-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Colonne gauche : flèche verticale avec dates */
.timeline-left {
    width: 50px;
    background-color: #c2caa5;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.timeline-arrow::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #7e8a63;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-year {
    font-size: 0.95em;
    color: #333;
    margin: 20px 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: bold;
}

/* Colonne droite : événements */
.timeline-right {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 30px;
}

.timeline-event h3 {
    font-size: 1.3em;
    color: #2e7d32;
    margin-bottom: 5px;
}

.timeline-event p {
    font-size: 1em;
    color: #333;
}

.mon-cursus-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.mon-cursus-title {
    font-size: 2.2em;
    color: #2e7d32;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

/* Conteneur centré */
.mon-cursus-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

/* Ligne décorative centrée */
.mon-cursus-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* mes expertises */

.mes-expertises {
    background-color: #c2caa5;
    padding: 60px 20px;
}

.mes-expertises-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mes-expertises-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.mes-expertises-title {
    font-size: 2.2em;
    color: #2e7d32;
    position: relative;
}

/* Ligne décorative sous le titre */
.mes-expertises-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e;
    margin: 10px auto 0;
    border-radius: 2px;
}

.expertises-box p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6em;
}

/* consultation page consultation */

/* Section consultation avec fond vert */
.consultation-section {
    background-color: #c2caa5;
    padding: 60px 20px;
    text-align: center;
}

.consultation-section .section-title {
    font-size: 2.5em;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

.consultation-section .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Conteneur principal */
.consultation-box {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.consultation-content {
    display: flex;
    flex-wrap: nowrap; /* ⚠️ was wrap */
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

/* Proportions par défaut */
.consultation-text {
    flex: 2 1 65%;
    text-align: left;
}

.consultation-image {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spécifique au bloc inversé */
.consultation-image.one-third {
    flex: 1 1 33%;
}

.consultation-text.two-thirds {
    flex: 2 1 66%;
}

/* Image dans les blocs */
.consultation-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

/* Titres & paragraphes */
.consultation-text h2 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.consultation-text p {
    font-size: 1.1em;
    line-height: 1.8em;
    margin-bottom: 15px;
}

.consultation-accroche {
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6em;
    color: #2e7d32;
}

/* Bouton */
.btn-center {
    text-align: center;
    margin-top: 30px;
}

/* modalités */

.modalites-consultation {
    background-color: #c2caa5;
    padding: 40px 20px 20px;
    margin-bottom: 10px; /* juste ce qu'il faut */
}

.modalites-title {
    font-size: 2.2em;
    color: white;
    text-align: center;
	
    margin-bottom: 40px;
    position: relative;
}

.modalites-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e;
    margin: 10px auto 0;
    border-radius: 2px;
}

.modalite-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
}

.modalite-card + .modalite-card {
    margin-top: 30px;
}

.modalite-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.modalite-text {
    flex: 1 1 60%;
    font-size: 1.1em;
    text-align: left;
    line-height: 1.6em;
}

.modalite-image {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modalite-image img {
    max-height: 100px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.remboursement {
    margin-bottom: 0px; /* diminue l'espace sous la section remboursement */
}

.modalites-consultation {
    padding-top: 0px; /* réduit l’espace au-dessus du titre */
}

/* annulation RDV */

.annulation-section {
    background-color: #c2caa5;
    padding: 20px 20px 60px;
    margin-top: -10px; /* ✅ colle visuellement à la section précédente */
}

.annulation-title {
    font-size: 2.2em;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.annulation-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc8e5e;
    margin: 10px auto 0;
    border-radius: 2px;
}

.annulation-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.annulation-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center; /* ✅ centré verticalement */
}

.annulation-text {
    flex: 2 1 65%;
    font-size: 1.1em;
    line-height: 1.6em;
    text-align: left;
    color: #333;
	
}

.annulation-image {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.annulation-image img {
    max-height: 80px; /* par exemple */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* rendez vous */

/* === SECTION RDV (page dédiée) === */
.rdv-info {
    background-color: #c2caa5; /* vert pomme */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.rdv-info-container {
    background-color: white;
    border-radius: 15px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    gap: 40px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    align-items: center;
    flex-wrap: wrap;
}

.rdv-info-image {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
}

.rdv-info-image img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
}

.rdv-info-text {
    flex: 2 1 65%;
    font-size: 1.2em;
    font-weight: bold;
    color: #2e7d32;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.rdv-info-text p {
    max-width: 500px;
    margin: 0 auto;
    font-weight: normal;
    color: #333;
    line-height: 1.6em;
}

.rdv-info-title {
    font-size: 2em;
    color: #2e7d32;
}

.rdv-info-text .btn-center {
    margin-top: 10px;
}

.footer-copyright {
    text-align: center;
    color: #bbb;
    font-size: 0.9em;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
}