@font-face {
    font-family: 'Miama';
    src: url('fonts/font.otf') format('opentype');
    /* Utilisation du format 'opentype' */
    font-weight: normal;
    font-style: normal;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #F4CDD1;
    background-image: url('img/acupuncture.jfif'); /* Remplacez par votre image */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: auto;
}

::-webkit-scrollbar {
    display: none;
    /* Masque la scrollbar sur Chrome, Safari et Edge */
}

::selection {
    background-color: #c9a5b1;
    /* Couleur de fond de la sélection */
    color: #ffffff;
    /* Couleur du texte sélectionné */
}

::-moz-selection {
    background-color: #c9a5b1;
    /* Couleur de fond de la sélection */
    color: #ffffff;
    /* Couleur du texte sélectionné */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

img{

    border-radius: 5px;
}

header {
    background-color: #F4CDD1;
    padding: 10px;
    z-index: 10;
}

header,
section,
footer {
    position: relative;
    z-index: 2;
}

.logo img {
    width: 50%;
    height: auto;
}


nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #F4CDD1;
    padding: 10px 20px;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 5;
    margin: 0;
    padding: 0;
}


nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}


.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: #333;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;

}


/* Styles pour le menu déroulant */
.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #F4CDD1;
    list-style-type: none;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    margin: 0;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 5px 15px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #F4CDD1;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible !important;
}

/* Pour mobile : menu hamburger */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        padding: 0;
        background: none;
        box-shadow: none;
        width: 90px;
        z-index: 2000;
    }

    .dropdown-menu-active {
        opacity: 1;
    }

}



@media (max-width: 768px) {

    nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #F4CDD1;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        z-index: -1;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        border-bottom-left-radius: 5px;
    }

    .nav-active {
        transform: translateX(0);
        /* Slide-in depuis la droite */
        opacity: 1;
        /* Le rendre visible */
        visibility: visible;
        /* Afficher le menu */
        z-index: 999;
        /* Le menu devient l'élément le plus haut */
    }

    .burger-menu {
        display: flex;
        position: relative;
        top: 0;
        right: 0;
        z-index: 1000;
        /* Toujours au-dessus pour interagir */
        cursor: pointer;

    }

    /* Quand le menu burger est activé (toggle) */
    .toggle span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 7px);
    }

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

    .toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -8px);
    }
}


.hero-section {
    height: 100vh; /* Prend toute la hauteur de l'écran */
    display: flex;
    text-align: justify;
    position: relative;
    color: white;
    background: rgba(0, 0, 0, 0.5); /* Assombrit légèrement l'arrière-plan */
}

.title-div h1 {
    font-size: 3em;
    font-family: 'Miama', sans-serif;
    margin-bottom: -50px    ;
}

/* Section contenu */
.content-section {
    padding: 50px;
    background-color: #F4CDD1;
    width: 50%;
    margin-left: 22%;
    margin-top: 9%;
    z-index: 1;
    height: 1000%;
    opacity: 0.75;
}

.content-div {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    animation: fadeIn 2s ease-in-out; /* Animation à l'apparition */
}



blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-left: 4px solid #801b4e;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.9em;
    text-align: right;
}

/* Par défaut, affiche le logo desktop et cache le logo mobile */
.logo-desktop {
    display: block;
    width: 50%;
    /* Taille par défaut du logo desktop */
}

.logo-mobile {
    display: none;
    /* Cache le logo mobile par défaut */
    width: 50%;
    /* Taille par défaut du logo mobile, à ajuster si nécessaire */
}

.custom-font {
    font-family: 'Miama', sans-serif;
    /* Remplacez par la police que vous souhaitez */
    font-size: 40px;
    /* Ajustez la taille selon vos besoins */
    font-weight: bold;
    /* Optionnel : pour rendre le texte plus gras */
}


@media (max-width: 768px) {
    .logo-desktop {
        display: none;
        /* Cache le logo desktop */
    }

    .logo-mobile {
        display: block;
        /* Affiche le logo mobile */
    }

    .content-section {
        padding: 50px;
        background-color: #F4CDD1;
        width: 50%;
        margin-left: 13%;
        margin-top: 30%;
        z-index: 1;
        height: 1000%;
    }

}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
        /* Légère montée lors de l'apparition */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes pour l'animation slide-in from left */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
        /* Slide de la gauche */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Keyframes pour l'animation slide-in from right */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
        /* Slide de la droite */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.prestations-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Commencez à partir du haut */
    align-items: center;
    /* Centrer horizontalement */
    background-color: #F4CDD1;
    /* Couleur de fond neutre */
    margin-bottom: 20px;
    margin-top: -1px;
    z-index: 1;
}

h2 {
    font-family: 'Roboto', sans-serif;
    /* Changez 'Roboto' par la police de votre choix */
    font-weight: bold;
    /* Optionnel : définit le poids de la police */
    color: #000000;
    /* Ajustez la couleur si nécessaire */
    font-size: 1em;
    font-style: italic;
}


.prestations-item-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centrer horizontalement */
    padding: 20px;
    padding-left: 0px;
    /* Espacement interne */
    border-bottom: 1px solid #F4CDD1;
    /* Ligne de séparation */
    width: 100%;
    /* S'assurer que chaque item prend toute la largeur */
    opacity: 0;
    /* Invisible au début */
    animation: fadeIn 1s ease-out forwards;
    /* Animation fade-in sur 1 seconde */
    z-index: 1;
}


@media (max-width: 768px) {
    .prestations-item-1 {
        flex-direction: column; /* Change l'orientation en colonne sur mobile */
        text-align: center; /* Centre le texte */
        width: 80%;
        margin-left: 6%;
        z-index: 1;
    }
    
    
    .prestations-item-2, 
    .prestations-item-3, 
    .prestations-item-4 {
        flex-direction: column; /* Change l'orientation en colonne sur mobile */
        text-align: center; /* Centre le texte */
        width: 80%;
        margin-left: 6%;
    }


    .text-content {
        text-align: justify; /* Centrer le texte */
    }

    .image-content {
        flex: 1;
        /* Prend l'espace disponible */
        display: flex;
        justify-content: center;
        /* Centrer l'image */
    }

    .prestations-container {
        width: 100%;
        max-width: 100%;
    }

}


.text-content {
    flex: 1;
    /* Prend l'espace disponible */
    text-align: justify;
    /* Centrer le texte */
    padding: 20px;
    /* Espacement autour du texte */
    margin-bottom: 5%;
    width: 100%;
}

.image-content {
    flex: 1;
    /* Prend l'espace disponible */
    display: flex;
    justify-content: center;
    /* Centrer l'image */
    margin-top: 5%;
}

.image-content img {
    max-width: 80%;
    /* Limite la taille de l'image */
    height: auto;
    /* Garder les proportions */
    border-radius: 10px;
    /* Arrondir les coins de l'image */
    flex-direction: column;
}


