/* ==========================================================================
   1. RÉINITIALISATION & BASE
   ========================================================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFF8DC;
    font-family: 'Cormorant Garamond', serif;
    color: #9c8454;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    margin: 0;
}

/* Alignements globaux des sections */
.site-header, 
.hero-section, 
.presentation-section, 
.reflexion-section,
.parcours-section, 
.demarche-section, 
.formation-section, 
.philosophie-container {
    padding-left: 40px;
    padding-right: 40px;
}

/* Classes utilitaires réutilisables (Titres superposés) */
.bg-title-retro {
    font-family: 'Italiana', serif;
    font-size: 2.2rem;
    color: #5A534C;
    text-transform: none;
    letter-spacing: -0.5px;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

.gold-subtitle {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #9c8454;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   1. Menu Langue FR/EN
   ========================================================================== */

/* Positionnement absolu en haut à droite (reste en haut au scroll) */
.lang-selector {
    position: absolute;
    top: 30px;
    right: 100px;
    z-index: 1000;
    font-family: 'Italiana', sans-serif;
    font-size: 1.1rem;
}
  
/* Cache la checkbox servant au toggle */
.lang-toggle {
    display: none;
}
  
/* Style du bouton principal (Transparent + Couleur #9c8454) */
.lang-btn {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: transparent;
    border: none;
    color: #9c8454;
    font-weight: bold;
    user-select: none;
    transition: opacity 0.3s ease;
}
  
.lang-btn:hover {
    opacity: 0.8;
}
  
/* Style de la flèche */
.arrow {
    font-size: 10px;
    color: #9c8454;
    transition: transform 0.3s ease;
}
  
/* Rotation de la flèche LORSQUE LA CHECKBOX EST COCHÉE (Clic) */
.lang-toggle:checked + .lang-btn .arrow {
    transform: rotate(180deg);
}
  
/* Style du menu déroulant (Transparent) */
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    border-radius: 8px;
    background: transparent;
    min-width: 100%;
}
  
/* Affichage du menu LORSQUE LA CHECKBOX EST COCHÉE (Clic) */
.lang-toggle:checked ~ .lang-dropdown {
    display: block;
}
  
/* Style du lien dans le menu déroulant */
.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #9c8454;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    background: transparent;
    transition: opacity 0.2s;
}
  
.lang-dropdown a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   2. HEADER & NAVIGATION (Menu Rideau du haut)
   ========================================================================== */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-top: 10px;
}

.header-left {
    flex: 1;
}

/* Bouton du Menu / Croix (Positionné normalement dans le flux pour rester en haut) */
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9c8454;
    font-family: 'Italiana', serif;
    font-size: 1.1rem;
    position: absolute;
    left: 40px;
    top: 30px;
    z-index: 9999 !important;
}

/* Gestion des icônes Burger et Croix */
.menu-toggle .icon-burger {
    display: inline-block;
    font-size: 1.5rem;
}

.menu-toggle .icon-cross {
    display: none;
    font-size: 1.8rem;
    color: #9c8454;
}

/* QUAND LE MENU EST OUVERT (.open) */
.nav-menu.open ~ .site-header .icon-burger,
body:has(.nav-menu.open) .icon-burger,
body:has(.nav-menu.open) .menu-text {
    display: none !important;
}

body:has(.nav-menu.open) .icon-cross {
    display: inline-block !important;
}

.menu-toggle i {
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1;
}

.menu-toggle i.close-icon {
    font-size: 1.6rem;
    color: #5A534C;
}

.menu-text {
    font-family: 'Italiana', serif;
    color: #9c8454;
}

/* ==========================================
   MENU RIDEAU DEPUIS LE HAUT (FULL WIDTH)
   ========================================== */
.nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    transform: translateY(-100%);
    background-color: #FFF8DC !important; 
    padding: 80px 20px 40px 20px; 
    transition: transform 0.4s ease-in-out !important; 
    z-index: 2000 !important;
    border-bottom: 1px solid rgba(156, 132, 84, 0.3); 
    box-shadow: 0 10px 25px rgba(90, 83, 76, 0.08);
}

.nav-menu.open {
    transform: translateY(0) !important;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.nav-menu ul li {
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #9c8454;
    font-size: 1.3rem;
    font-family: 'Italiana', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-menu ul li a:hover {
    color: #5A534C;
}

/* Style dédié à la croix de fermeture */
.menu-toggle i.close-icon {
    font-family: Arial, sans-serif !important;
    font-size: 1.8rem !important;
    font-style: normal !important;
    color: #9c8454 !important;
    line-height: 1;
    display: inline-block;
}

.brand-identity {
    text-align: center;
}

.site-title {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: none;
}

.title-sub {
    font-size: 2rem;
}

.site-subtitle {
    font-family: 'Italiana', serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    word-spacing: 1px;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.social-link {
    color: #FDF9F0;
    background-color: #9c8454;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
}

/* ==========================================================================
   3. CONTENU PRINCIPAL (MAIN WRAPPER)
   ========================================================================== */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
}

/* ==========================================================================
   SECTION 1 : HERO (IMAGE + INFOS)
   ========================================================================== */
.hero-section {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-image-container {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #9c8454;
    padding-top: 5px;
}


/* ==========================================================================
   SECTION 2 : PRÉSENTATION
   ========================================================================== */
.presentation-section {
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.presentation-header {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.presentation-body {
    max-width: 750px;
    margin: 0 auto;
}

.presentation-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

.presentation-body strong {
    font-weight: 700;
    color: #000000;
}

/* ==========================================================================
   SECTION 2.1 : REFLEXION
   ========================================================================== */
.reflexion-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
}

.reflexion-header {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reflexion-header .bg-title-retro {
    font-size: 2.2rem;
    color: #5A534C; 
}

.reflexion-header .gold-subtitle {
    font-size: 2.2rem;
}

.reflexion-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8%;
    width: 100%;
}

.reflexion-text-block .text-intro,
.reflexion-text-block .text-accent-title,
.reflexion-text-block .text-body {
    text-align: left;
}

.img-main-wrapper {
    width: 100%;
    margin-left: 0;
}

.reflexion-img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.img-sub-wrapper {
    width: 42%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.reflexion-img-sub {
    width: 100%;
    height: auto;
    display: block;
}

.reflexion-images-block {
    width: 40%; 
    position: relative;
}

.reflexion-text-block {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reflexion-text-block .text-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    line-height: 1.5;
}

.reflexion-text-block .text-accent-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #9c8454;
    margin: 5px 0;
}

.reflexion-text-block .text-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.6;
}

.reflexion-text-block strong {
    font-weight: 700;
    color: #000000;
}

/* ==========================================================================
   SECTION 3 : MON PARCOURS
   ========================================================================== */
.parcours-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.parcours-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.parcours-text-block {
    background-color: #E5DFD7;
    width: 65%;
    padding: 60px 80px 60px 60px;
    text-align: center;
    box-sizing: border-box;
}

.parcours-title {
    font-family: 'Italiana', serif;
    font-size: 3.2rem;
    color: #5A534C;
    text-transform: none;
}

.parcours-subtitle {
    font-family: 'Italiana', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #9c8454;
    position: relative;
    z-index: 2;
}

.parcours-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    margin: 24px;
}

.parcours-content p strong {
    font-weight: 700;
    color: #000000;
}

.parcours-image-block {
    width: 61%;
    margin-left: -6%;
    z-index: 2;
}

.parcours-img {
    width: 100%;
    height: 410px;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   SECTION 4 : MA DÉMARCHE
   ========================================================================== */
.demarche-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.demarche-header {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.demarche-header .bg-title-retro {
    font-size: 3.2rem;
    color: #5A534C; 
}

.demarche-header .gold-subtitle {
    font-size: 2.2rem;
}

.demarche-container {
    display: flex;
    align-items: flex-start;
    gap: 8%;
    width: 100%;
}

.demarche-img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.demarche-img-sub {
    width: 100%;
    height: auto;
    display: block;
}

.demarche-text-block {
    width: 46%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.demarche-text-block .text-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    line-height: 1.5;
}

.demarche-text-block .text-accent-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #9c8454;
    margin: 5px 0;
}

.demarche-text-block .text-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.6;
}

.demarche-text-block strong {
    font-weight: 700;
    color: #000000;
}

/* ==========================================================================
   SECTION 5 : FORMATION INTERNATIONALE
   ========================================================================== */
.formation-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

.formation-header {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.formation-header .bg-title-retro {
    font-size: 3.2rem;
    color: #5A534C; 
}

.formation-header .gold-subtitle {
    font-size: 2.2rem;
}

.formation-container {
    display: flex;
    align-items: center;
    gap: 5%;
    width: 100%;
}

.formation-text-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.formation-text-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.6;
    text-align: left;
}

.formation-text-block strong {
    font-weight: 700;
    color: #1a1a1a;
}

.formation-images-block {
    width: 45%;
    position: relative;
    display: flex;
    align-items: center;
}

.img-stairs-wrapper {
    width: 100%;
    margin-left: auto;
}

.img-stairs {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.img-doctors-wrapper {
    width: 65%;
    position: absolute;
    left: 10%;
    bottom: -15%;
    z-index: 3;
}

.img-doctors {
    width: 100%;
    height: 135px;
    object-fit: cover;
    display: block;
    border: 1px solid #FDF9F0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ==========================================================================
   SECTION 6 : LE CABINET
   ========================================================================== */
.cabinet-section {
    background-color: #E5DFD7;
    width: 100vw;
    position: relative;
    padding: 100px 0;
    box-sizing: border-box;
}

.cabinet-header {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cabinet-header .bg-title-retro {
    font-size: 3.2rem;
    color: #5A534C;
}

.cabinet-header .gold-subtitle {
    font-size: 2.2rem;
    color: #9c8454;
}

.cabinet-container {
    display: flex;
    align-items: center;
    gap: 8%;
    width: 100%;
    padding-left: 170px;
    padding-right: 170px;
}

.cabinet-image-block {
    width: 46%;
}

.cabinet-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cabinet-text-block {
    width: 46%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cabinet-paragraph {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

.cabinet-text-block strong {
    font-weight: 700;
    color: #000000;
}

/* ==========================================================================
   SECTION 7 : TEMPS MÉDICAL
   ========================================================================== */
.medical-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    position: relative;
    max-width: 950px;
    width: 100%;
}

.bg-title {
    font-family: 'Italiana', serif;
    font-size: 2.2rem;
    color: #5A534C;
    letter-spacing: 2px;
    line-height: 1;
    position: relative;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.content-text {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    padding: 15px 15px;
    font-weight: 400;
}

.content-text strong {
    font-weight: 700;
    color: #000000;
}

/* ==========================================================================
   SECTION 8 : MA PHILOSOPHIE
   ========================================================================== */
.philosophie-section {
    width: 100%;
    background-color: #FFF8DC;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.philosophie-container {
    width: 100%;
    max-width: 1100px;
    background-color: #E5DFD7;
    padding: 50px 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.philosophie-text-col {
    width: 55%;
}

.philosophie-title {
    color: #5A534C;
    font-family: 'Italiana', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.1;
    text-align: center;
}

.philosophie-subtitle {
    color: #9c8454;
    font-family: 'Italiana', Times, serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0 0 25px 0;
    line-height: 1.3;
    text-align: center;
}

.philosophie-content p {
    color: #000000;
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    text-align: center;
}

.philosophie-content p:last-child {
    margin-bottom: 0;
}

.philosophie-img-col {
    width: 38%;
    margin-top: 98px;
}

.philosophie-image {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   SECTION 9 : COORDONNÉES / CONTACT
   ========================================================================== */
.contact-section {
    width: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}

.contact-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.contact-info {
    flex: 1;
    text-align: center;
}

.contact-title {
    font-family: 'Italiana', serif;
    font-size: 3.2rem;
    font-weight: bold;
    color: #5A534C;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-text {
    font-size: 2.2rem;
    color: #9c8454;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Italiana', serif;
}

.contact-titre {
    font-size: 22px;
    color: #9c8454;
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.contact-phone {
    font-size: 22px;
    color: #9c8454;
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.contact-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.custom-footer {
    background-color: #94855a;
    color: #ffffff;
    padding: 40px 60px 20px 60px;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 35px;
    font-family: 'Italiana', sans-serif;
}

.footer-logo {
    font-family: 'Italiana', serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.footer-address {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.footer-address p {
    margin-bottom: 4px;
}

.footer-address .phone {
    margin-top: 12px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Figtree', sans-serif;
}

.footer-bottom .author {
    text-decoration: underline;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   11. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

/* --- TABLETTES (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .site-header, .hero-section, .presentation-section, .reflexion-section, .parcours-section, .demarche-section, .formation-section, .philosophie-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .cabinet-container {
        padding-left: 40px;
        padding-right: 40px;
        gap: 4%;
    }

    /* Réflexion Tablette */
    .reflexion-container {
        gap: 5%;
    }
}

/* --- MOBILE (max-width: 768px) --- */
@media (max-width: 768px) {
    
    body {
        padding-top: 10px !important; 
    }

    /* On cache définitivement la barre fixe mobile si elle existait dans le HTML */
    .top-bar-mobile {
        display: none !important;
    }

    /* Bouton Menu Burger / Croix reste en haut du site (position absolue) */
    .menu-toggle {
        position: absolute !important;
        top: 15px !important;
        left: 15px !important;
        margin-top: 0 !important;
        z-index: 9999 !important;
    }

    /* Sélecteur de langue reste en haut du site (position absolue) */
    .lang-selector {
        position: absolute !important;   
        top: 15px !important;         
        right: 15px !important;       
        z-index: 9999 !important;
    }

    .lang-dropdown {
        background-color: #FFF8DC !important;
        border: 1px solid rgba(156, 132, 84, 0.3) !important;
        border-radius: 4px !important;
    }

    /* Ajustements Header & Logo */
    .site-header {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
        padding-top: 10px !important;
    }

    .brand-identity {
        margin-top: 5px !important;
        text-align: center !important;
    }

    .main-content {
        gap: 50px; 
        margin-bottom: 40px;
    }

    .site-header, .hero-section, .presentation-section, .reflexion-section, .parcours-section, .demarche-section, .formation-section, .philosophie-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Typographies Mobiles */
    .bg-title-retro, 
    .reflexion-header .bg-title-retro,
    .parcours-title, 
    .demarche-header .bg-title-retro, 
    .formation-header .bg-title-retro, 
    .cabinet-header .bg-title-retro,
    .philosophie-title,
    .contact-title {
        font-size: 2.4rem !important;
        white-space: normal !important;
        letter-spacing: 0px;
        line-height: 1.2;
    }

    .site-subtitle,
    .gold-subtitle, 
    .reflexion-header .gold-subtitle,
    .parcours-subtitle, 
    .demarche-header .gold-subtitle, 
    .formation-header .gold-subtitle, 
    .cabinet-header .gold-subtitle,
    .philosophie-subtitle,
    .contact-text {
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        margin-top: 5px !important;
        line-height: 1.3;
    }
    
    .header-left, .header-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .menu-toggle {
        font-size: 1rem;
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    .title-sub {
        font-size: 1.6rem;
    }

    /* Hero Section */
    .hero-image {
        height: 280px;
    }

    .hero-info-bar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        font-size: 0.9rem;
    }

    /* Présentation */
    .presentation-body p {
        font-size: 1.1rem;
    }

    /* Réflexion */
    .reflexion-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .reflexion-header {
        margin-bottom: 30px;
    }

    .reflexion-container {
        flex-direction: column;
        gap: 30px;
    }

    .reflexion-images-block {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    .reflexion-img-main {
        height: 280px;
    }

    .reflexion-text-block {
        width: 100%;
        text-align: center;
        gap: 15px;
    }

    .reflexion-text-block .text-intro, 
    .reflexion-text-block .text-body {
        font-size: 1.1rem;
        text-align: center !important;
    }

    .reflexion-text-block .text-accent-title {
        font-size: 1.4rem;
        text-align: center;
    }

    /* Mon Parcours */
    .parcours-container {
        flex-direction: column;
    }

    .parcours-text-block {
        width: 100%;
        padding: 35px 20px;
    }

    .parcours-content p {
        font-size: 1.1rem;
        margin: 15px 0;
    }

    .parcours-image-block {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .parcours-img {
        height: 270px;
    }

    /* Ma Démarche */
    .demarche-container {
        flex-direction: column;
        gap: 30px;
    }

    .demarche-header {
        margin-bottom: 5px;
    }

    .demarche-images-block {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding-bottom: 20px; 
    }

    .demarche-img-main {
        height: 280px;
    }

    .demarche-text-block {
        width: 100%;
        text-align: justify; 
        gap: 15px;
    }

    .text-accent-title {
        font-size: 1.4rem;
        text-align: center; 
    }

    .text-intro, .text-body {
        font-size: 1.1rem;
    }

    /* Formation Internationale */
    .formation-container {
        flex-direction: column; 
        gap: 30px;
    }

    .formation-header { 
        margin-bottom: 30px;
    }

    .formation-text-block {
        width: 100%;
    }

    .formation-text-block p {
        font-size: 1.1rem;
        text-align: justify;
    }

    .formation-images-block {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding-left: 15px;
    }

    .img-stairs {
        height: 280px;
    }

    .img-doctors-wrapper {
        height: 270px;
        position: absolute;
        left: 10%;
        bottom: -65%;
        z-index: 3;
    }

    /* Le Cabinet */
    .cabinet-section {
        padding: 60px 0;
    }

    .cabinet-container {
        flex-direction: column;
        gap: 25px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .cabinet-header { 
        margin-bottom: 30px;
    }

    .cabinet-image-block,
    .cabinet-text-block {
        width: 100%;
    }

    .cabinet-paragraph {
        font-size: 1.1rem;
        text-align: justify; 
    }

    /* Temps Médical */
    .medical-section {
        padding: 50px 20px;
    }

    .bg-title {
        font-size: 1.8rem !important;
        white-space: normal;
        margin-bottom: 5px;
    }
    
    .content-text {
        font-size: 1.1rem;
        padding: 0;
    }

    /* Ma Philosophie */
    .philosophie-container {
        flex-direction: column;
        padding: 35px 20px;
        gap: 20px;
    }
    
    .philosophie-text-col, 
    .philosophie-img-col {
        width: 100%;
    }
    
    .philosophie-content p {
        font-size: 1.1rem;
        text-align: justify;
    }

    .philosophie-img-col {
        margin-top: 10px;
    }

    .philosophie-image {
        height: 250px;
    }

    /* Coordonnées / Contact */
    .contact-section {
        padding: 40px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-phone {
        font-size: 1.5rem; 
    }

    .contact-img {
        max-width: 280px;
    }

    /* Footer */
    .custom-footer {
        padding: 40px 20px 20px 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-logo {
        font-size: 26px;
    }

    .footer-address {
        font-size: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 12px;
    }
}