.elementor-41 .elementor-element.elementor-element-8438f4e{--display:flex;--min-height:100px;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}.elementor-41 .elementor-element.elementor-element-678b74f > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0% 0% 0% 0%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-41 .elementor-element.elementor-element-8438f4e{--min-height:100px;--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}}@media(min-width:768px){.elementor-41 .elementor-element.elementor-element-8438f4e{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-678b74f *//* style.css */

/* Styles de base de l'en-tête */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-area.transparent {
    background-color: transparent;
}

.header-area.scrolled {
    background-color: transparent;
}

/* Effet de rétrécissement */
.header-area.shrink {
    height: 80px;
}

.classy-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.header-area.shrink .classy-navbar {
    height: 80px;
}

.header-area.scrolled .classy-navbar {
    background-color: rgba(254, 244, 235, 0.63);
    backdrop-filter: blur(8px) saturate(70%);
    -webkit-backdrop-filter: blur(8px) saturate(70%);
    border-radius: 35px;
    border: 1px solid rgba(209, 213, 219, 0.3);
    margin: 10px 2%;
    width: calc(100% - 4%);
}

.nav-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-brand img {
    height: 70px;
    width: auto;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-area.shrink .nav-brand img {
    height: 60px;
}

/* Menu desktop */
.classynav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.classynav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.classynav ul li {
    margin: 0 16px;
    position: relative;
}

.classynav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.classynav ul li a:hover {
    color: #E1BBB4;
}

/* Couleur du lien parent actif */
.classynav ul li.active > a {
    color: #E1BBB4;
}

/* Flèches du menu desktop */
.arrow-icon {
    width: 14px;
    height: 14px;
    margin-left: 5px;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

/* Avant le défilement - les icônes de flèche sont blanches */
.classynav ul li a .arrow-icon {
    filter: invert(1);
}

/* Après le défilement - les icônes de flèche correspondent à la nouvelle couleur du texte */
.header-area.scrolled .classynav ul li a .arrow-icon {
    filter: invert(0);
}

.has-megamenu:hover .arrow-icon {
    transform: rotate(180deg);
}

/* Styles du méga-menu */
.has-megamenu {
    position: relative;
}

.has-megamenu .megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    border-radius: 8px;
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
}

.megamenu-item {
    text-align: center;
}

.megamenu-item a {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.megamenu-item img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.megamenu-item span {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
    color: #000;
}

/* Mettre en avant les liens des sous-menus */
.megamenu-item a:hover {
    transform: translateY(-5px);
    color: #E1BBB4;
}

.megamenu-item a:hover img {
    transform: scale(1.1);
}

.megamenu-item a:hover span {
    color: #E1BBB4;
}

/* Effet de soulignement */
.megamenu-item a::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: #E1BBB4;
    display: block;
    margin: 5px auto 0 auto;
    transition: width 0.3s ease;
}

.megamenu-item a:hover::after {
    width: 50%;
}

/* Changement de couleur du texte après défilement */
.header-area.scrolled .classynav ul li a,
.header-area.scrolled .classy-btn,
.header-area.scrolled .mobile-menu-toggle span {
    color: #000;
}

.header-area.scrolled .classynav ul li a:hover {
    color: #E1BBB4;
}

.header-area.transparent .classy-btn,
.header-area.transparent .mobile-menu-toggle span {
    color: #000;
}

/* Styles du bouton */
.classy-btn {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-left: 20px;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
    text-align: center;
}

.classy-btn:hover {
    background-color: #E8E8DE;
    color: #000;
}

/* Bouton du menu mobile */
.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin-left: 20px;
    border-radius: 50%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    transition: border-color 0.3s;
    background: #FEF4EB;
    border: 2px solid #FEF4EB;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 60%;
    background: #423735;
    border-radius: 3px;
    left: 20%;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 33%;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 67%;
}

.mobile-menu-toggle.active span {
    background: #423735;
}

.header-area.scrolled .mobile-menu-toggle span {
    background: #FEF4EB;
}

.header-area.scrolled .mobile-menu-toggle {
    border-color: #423735;
    background: #423735 !important;
}

.mobile-menu-toggle.active {
    border-color: #fff;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 48%;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 48%;
}

/* Menu mobile */
.mobile-nav {
    display: none;
}

/* Styles pour l'icône du menu mobile */
.toggle-icon {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.toggle-icon::before {
    content: '+';
    position: absolute;
    font-size: 24px;
    color: #000;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

/* Changement de l'icône lorsqu'elle est active */
.has-dropdown.active > a .toggle-icon::before {
    content: '-';
}

/* Lien actif dans le menu mobile */
.mobile-nav ul li a.active-link {
    color: #E1BBB4;
}

/* Styles du menu mobile */
.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li {
    margin: 0;
    width: 100%;
    position: relative;
}

.mobile-nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: #E1BBB4;
}

/* Dropdown Menu */
.mobile-nav ul li .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav ul li.active > .dropdown {
    max-height: 1000px;
}

.mobile-nav ul li .dropdown li a {
    color: #000;
    padding: 10px 20px;
    font-size: 16px;
    padding-left: 40px;
    border-left: 3px solid #d1d1d1;
    display: flex;
    align-items: center;
}

.mobile-nav ul li .dropdown li a img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.mobile-nav ul li .dropdown li a:hover {
    color: #E1BBB4;
}

/* Styles spécifiques pour les boutons supplémentaires dans le menu mobile */
.additional-buttons {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40px);
    margin:5px auto;
}

.additional-buttons .small-btn {
    width: 48%;
    padding: 10px;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.additional-buttons .small-btn:hover {
    background-color: #E8E8DE;
}

.additional-buttons .small-btn:first-child {
    margin-right: 4%;
}

/* Informations de contact */
.contact-info {
    margin: 20px auto;
    text-align: center;
}

.contact-info a {
    display: block;
    color: #000;
    font-size: 16px;
    margin-bottom: 5px;
    text-decoration: none;
}

.contact-info a:hover {
    color: #E1BBB4;
}

/* Styles responsives */
@media (max-width: 1024px) {
    /* Cacher le menu desktop */
    .classynav {
        display: none;
    }

    /* Bouton du menu mobile */
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 3%;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Menu mobile */
    .mobile-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100%;
        background-color: #E8E8DE;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        padding: 40px 0;
        border-radius: 0 35px 35px 0;
        overflow-y: auto;
    }

    .mobile-nav.active {
        left: 0;
    }

    /* Ajustement du bouton "Prendre rendez-vous" */
    .mobile-nav .classy-btn {
        margin: 10px auto;
        width: calc(100% - 40px);
        text-align: center;
        font-size: 18px;
        background-color: #fff;
        color: #000;
        border: 1px solid #000;
    }

    /* Affichage des boutons supplémentaires sur mobile */
    .additional-buttons {
        display: flex;
    }

    /* Ajustement de l'alignement du logo */
    .nav-brand {
        position: absolute;
        left: 2%;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        height: auto;
    }

    .classy-navbar {
        overflow: visible;
    }

    /* Augmentation de la hauteur de l'en-tête mobile avant le scroll */
    .header-area {
        left: 3%;
        right: 3%;
        width: auto;
        height: 125px;
    }
}

/* Cacher les boutons supplémentaires et les infos de contact sur le desktop */
@media (min-width: 1025px) {
    .additional-buttons,
    .contact-info {
        display: none;
    }
}/* End custom CSS */