@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.btn-delete {
    background-color: red;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 10px;
}

.btn-delete:hover {
    background-color: #a80000;
}

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #303030 #000000;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 22px;
}

*::-webkit-scrollbar-track {
    background: #000000;
}

*::-webkit-scrollbar-thumb {
    background-color: #303030;
    border-radius: 10px;
    border: 3px solid #ff0000;
}

.wrap {
    padding-right:7em;
    padding-left:7em;
}



body{
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: black;
    overflow-x: hidden;
}

.header_index {
    background-image: url("/images/Foret.png");
    background-size: cover;
    height: 100vh;
    padding-bottom: 15em
}

.header_trajets {
    background-image: url("/images/bg_2.png");
    background-size: cover;
    height: 100vh;
    padding-bottom: 15em
}


nav ul li{
    margin-top: 1rem;
    font-weight: bold;
}

nav ul li a:hover{
    color: #9DFF00;
    transition: all 0.3 ease;
}

nav{
    position: fixed;
    width: 100%;
    background-color: transparent;
    z-index: 9999;
    transition: background-color 0.5s ease;
}

.logo_header img{
    height: 80px;
    margin-top: 0.5rem;
}

.btn-connexion{
    padding: 0.5rem;
    border-radius: 10px;
}

.btn-more {
    padding: 0.5rem;
    border: 2px solid #9DFF00;
    border-radius: 10px;
}

#menu__toggle {
    opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
    right: 0 !important;
}
.menu__btn {
    position: fixed;
    top: 2.5em;
    right: 20px;
    width: 26px;
    z-index: 101;
    height: 26px;
    cursor: pointer;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition-duration: .25s;

}
.menu__btn > span::before {
    content: '';
    top: -8px;
}
.menu__btn > span::after {
    content: '';
    top: 8px;
}
.menu__box {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    z-index: 100;
    margin: 0;
    padding: 80px 0;
    padding: 2em;
    list-style: none;
    background-color: black;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: .25s;
}
.menu__item {

    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 10pt;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
}
.menu__item:hover {
    background-color: #CFD8DC;
}

@media screen and (max-width: 768px) {
    /* Cacher le menu principal */
    .menu-primary {
        display: none;
    }

    /* Afficher le burger menu */
    .menu__box {
        display: none; /* On masque le menu burger par défaut */
    }

    #menu__toggle:checked + .menu__btn > span {
        transform: rotate(45deg);
    }

    #menu__toggle:checked + .menu__btn > span::before {
        top: 0;
        transform: rotate(0deg);
    }

    #menu__toggle:checked + .menu__btn > span::after {
        top: 0;
        transform: rotate(90deg);
    }

    #menu__toggle:checked ~ .menu__box {
        display: block; /* Afficher le menu burger lorsqu'il est coché */
    }

    .plante img{
        display: none;
    }


    .title-home li {
        font-size: 2pt;
    }

    .fs4 {
        font-size: 2pt;
    }


}

/* CSS pour les écrans de taille supérieure à 768px */
@media screen and (min-width: 769px) {
    /* Afficher le menu principal */
    .menu-primary {
        display: flex;
    }

    /* Cacher le burger menu */
    .hamburger-menu {
        display: none;
    }

}



.plante img{
    height: 500px;
    top: 0;
    left: 30px;
    margin-left: 138px;
    margin-top: 173px;
    position: absolute;
    filter: brightness(0.7);
}

.title-home li{
    color: white;
    font-size: 12rem;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: -19px;
    text-shadow: 11px 8px 12px rgba(0, 0, 0, 1);

}

.title-home_2{
    color: white;
    font-size: 10rem;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 15px;
    background-image: linear-gradient(to top, rgb(237, 237, 198), rgba(237, 237, 189, 0.2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.text-content-header{
    padding: 9rem;
}

.pre-title{
    color: white;
    font-weight: 500;
    letter-spacing: 20px;
    margin-bottom: -3rem;
    text-shadow: 11px 8px 12px rgba(0, 0, 0, 1);

}


.prologue{
    width: 70%;
    text-align: center;
}

.btn-base{
    padding: 0.8rem;
    border: 2px solid #9DFF00;
    border-radius: 10px;
    background-color: #9DFF00;
    font-weight: bold;
    width: 100px;
    text-align: center;
}

.btn-base a:hover{
    background-color: #64a200;
    cursor: pointer;
}

.ae{
    margin-top: 100rem;
}

svg{
    width: 22%;
    height: 100%;
    margin: auto;
}



/* svg circle{
    stroke: #ffffff;
    stroke-width: 2;
    stroke-dasharray: 39;
    transition: all 1.5s ease;

} */

.circle1{
    stroke: #ffffff;
    stroke-width: 1;
    stroke-dasharray: 328;
    transition: all 1.2s ease;
    z-index: 1;
}

.bouge{
    stroke-dasharray: 39;
    transition: all 1.2s ease;
}

.circle2 {
    stroke: #9DFF00;
    stroke-width: 2;
    stroke-dasharray: 0;
    z-index: 2;
    pointer-events: none;
}

.svg-container {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feuillebtn {
    height: 40px;
    pointer-events: none;
    position: absolute;
    left:10em;
}

.leaf{
    border-right: 5px solid #42424230;
}

.title_leaf{
    color: #9DFF00;
    font-size: 2.6rem;
    margin-top: 25px;

}

.text_leaf{
    width: 70%;
    font-size: 1rem;
    margin-top: -10px;
}

.nav-scrolled {
    background-color: black;
    position: fixed;
    width: 100%;
    z-index: 9999;
    transition: background-color 0.5s ease;
}

.btn-decouvrir {
    cursor: pointer;
    z-index: 9998;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 0.7em 1em;
    border-radius: 15px;
    background-color: #9DFF00;
    font-weight: bold;
    font-size: 16pt;
    width: 10em;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    border: none;
}

.btn-decouvrir:hover {
    background-color: #6dcf22;
    color: black;
    transform: scale(1.02);
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
}


.slider-container {
    position: relative;
}

.slider {
    position: relative;
}

.slide {
    position: relative;
    display: inline-block;
}

.slide-image {
    display: block;
    width: 100%;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Couleur noire semi-transparente */
    pointer-events: none;
}

.slide-content {
    position: absolute;
    bottom: 5em;
    left: 15em;
    color: white;
    width: 35em;
}

.slide-content h2 {
    margin: 0;
    font-size: 32px;
    padding-bottom: 1em;
}

.slide-content p {
    margin: 0;
    font-size: 16px;
}



.prev, .next {
    position: absolute;
    top: 40%;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.prev {
    left: 10px;
    width: 5em;
    height: 5em;
    transform: scaleX(-1);
}

.next {
    right: 10px;
    width: 5em;
    height: 5em;
}

.container_bar {
    padding-top: 5em;
    position: relative; /* Nécessaire pour que les points positionnés absolument soient relatifs à ce conteneur */
    display: flex;
    align-items: center;
    height: 100%;
    color: white; /* Changement de la couleur du texte en blanc pour contraster avec le fond noir */
}

.container_bar {
    padding-top: 5em;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: white;
}

.bar {
    margin: auto;
    width: 1px; /* Ajustement de la largeur de la barre */
    height: 50em;
    background-color: rgb(155, 155, 155);
    position: relative;
}



.point {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #9DFF00;
    position: absolute;
    left: 50%; /* Positionnement au centre de la barre */
    transform: translateX(-50%); /* Centrage horizontal */
}

/* Ajustez la position verticale des points sur la barre */
.point_1 {
    top: 10%; /* Premier point */
}

.point_2 {
    top: 30%; /* Deuxième point */
}

.point_3 {
    top: 55%; /* Troisième point */
}

.point_4 {
    top: 75%; /* Troisième point */
}

.point_5 {
    top: 90%; /* Troisième point */
}


.text_1 {  position: absolute;
    color: white;
    font-size: 14px;
    text-align: center;
    text-align: left;
    width: 18em;
    top: 10%; /* Alignement des textes avec les points */
    left: 55%;
}

/* Ajustez la position verticale des textes pour les aligner avec les points */
.text_2 {
    position: absolute;
    color: white;
    font-size: 14px;
    text-align: center;
    text-align: left;
    width: 18em;
    top: 30%; /* Alignement des textes avec les points */
    left: 55%;
}

.top_footer{
    width: 50%;
    border-bottom: 1px solid white;
    padding-top: 10rem;
}

.top_footer a{
    font-weight: 400;
    font-size: 1.6rem;
}



.text_3 {
    position: absolute;
    color: white;
    font-size: 14px;
    text-align: center;
    text-align: left;
    width: 18em;
    top: 55%; /* Alignement des textes avec les points */
    left: 25%;
}


.text_4 {
    position: absolute;
    color: white;
    font-size: 14px;
    text-align: center;
    text-align: left;
    width: 18em;
    top: 75%; /* Alignement des textes avec les points */
    left: 25%;
}

.text_5 {
    position: absolute;
    color: white;
    font-size: 14px;
    text-align: center;
    text-align: left;
    width: 18em;
    top: 90%;
    left: 55%;
}

.circle-image {
    width: 20em;
    height: 20em;
    border-radius: 50%;
    background-image: url('../../images/round/1.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 8em;
    top: 3em;
    z-index: 1;
}

.circle-image2 {
    width: 15em;
    height: 15em;
    border-radius: 50%;
    background-image: url('../../images/round/1_2.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 17em;
    top: 10em;
    z-index: 1;
}

.circle-image3 {
    width: 20em;
    height: 20em;
    border-radius: 50%;
    background-image: url('../../images/round/2.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 8em;
    top: 25em;
    z-index: 1;
}

.circle-image4 {
    width: 15em;
    height: 15em;
    border-radius: 50%;
    background-image: url('../../images/round/2_2.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 3em;
    top: 18em;
    z-index: 1;
}

.circle-image5 {
    width: 20em;
    height: 20em;
    border-radius: 50%;
    background-image: url('../../images/round/3.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 8em;
    top: 50em;
    z-index: 1;
}

.footer {

    margin-top: 5em;
    background-color: #0f0f0fbc; /* Couleur de fond du footer */
    color: white; /* Couleur du texte */
    padding: 20px;
    text-align: center;
}

.footer-content {
    padding-left: 7em;
    padding-right: 7em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: 200px; /* Taille de votre logo */
}

.footer-center {
    font-size: 16pt;
    flex-grow: 1;
    letter-spacing: 2px;
}

.footer-center a {
    margin: 0 10px; /* Marge entre les liens */

    color: white; /* Couleur du texte des liens */
    text-decoration: none; /* Supprimer la soulignement des liens */
}

.footer-right a {
    color: white; /* Couleur du texte du lien "Se connecter" */
    font-size: 16pt;
    text-decoration: none; /* Supprimer la soulignement du lien */
}

.bi-person-circle {
    font-size: 22pt;
    padding-right: 0.2em;
}

.see-more:hover {
    color: #9DFF00;
    transition: all 0.3 ease;
}


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

.triple-card {
    display: flex;
    justify-content: center;
    padding-bottom: 20vw;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100vh;
    position: absolute;
    top:35vw;
}

.cards {
    width: 330px;
    height: 550px;
    margin: 0 10px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.title-cards {
    color: white;
    font-family: 'Archivo Black', sans-serif;
    font-weight: bold;
    font-size: 4vw;
    width: 1px;
    position: absolute;
    top:7vw;
    right: 13vw;
    height: 200px;
    width: 10px;
}

.title-cards_2 {
    color: white;
    font-family: 'Archivo Black', sans-serif;
    font-weight: bold;
    font-size: 4vw;
    width: 1px;
    position: absolute;
    top:7vw;
    right: 10vw;
    height: 200px;
    width: 10px;
}

.title-cards_3 {
    color: white;
    font-family: 'Archivo Black', sans-serif;
    font-weight: bold;
    font-size: 4vw;
    width: 1px;
    position: absolute;
    top:5vw;
    right: 13vw;
    height: 200px;
    width: 10px;
}

.cards-content {
    position: absolute;
    bottom: -2vw;
    left: 0;
    width: 100%;
    height: 50%;
    padding: 20px;
    padding-top: 5px;
    color: white;
    z-index: 1;
    box-sizing: border-box;
    overflow: auto;
    text-align: center;
}

.cards {
    transition: transform 0.3s ease; /* Ajout de la transition pour l'animation */
}

.cards:hover {
    transform: scale(1.03);

}

.cards-content p {
    text-align: left;
}

.cards-content h2 {
    margin: 0;
}

.cards-content p {
    margin-top: 10px;
}

.card1 {
    background-image: url(../../images/card/card_1.png); /* Image de fond pour la carte 1 */
    background-position: 50% 50%;
}

.card2{
    background-image: url(../../images/card/card_2.png); /* Image de fond pour la carte 2 */
    background-position: 50% 53%;
    top: -2vw;
}

.card3 {
    background-image: url(../../images/card/card_3.png); /* Image de fond pour la carte 3 */
    background-position: 50% 55%;
}

.detail-btn {
    font-weight: bold;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2vw;
    border: none;
    padding: 1vw;
    padding-left: 4vw;
    padding-right: 4vw;
    margin-bottom: 1vw;
}
.detail-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;

}

.detail-btn2 {
    font-weight: bold;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2vw;
    border: none;
    padding: 1vw;
    padding-left: 4vw;
    padding-right: 4vw;
    margin-bottom: 1vw;
    height: 20px;
}
.detail-btn2:hover {
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;

}

.horizontal-card-section {
    display: flex;
    justify-content: center;
}

.horizontal-card {
    width: 60vw;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px;

    transition: transform 0.3s ease;


}

.horizontal-card:hover {
    transform: scale(1.03);
    cursor: pointer;

}

.horizontal-card-img{
    max-height: 400px;
}

.horizontal-card-bg {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    z-index: 0;

}

.horizontal-card-bg img {
    width: 100%;
    display: block;
}

.horizontal-card-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    filter: blur(5px);
    transform: translateY(-50%);
}


.horizontal-card-content {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 1;
    margin-top: -200px;
}

.horizontal-card-content h2, .horizontal-card-content h3 {
    margin: 0;
}

.horizontal-card-content p {
    margin-top: 10px;
}

.horizontal-card-content button {
    padding: 3vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    margin-top: 3vw;
    height: 3vw;
    font-weight: bold;
    font-size: 1vw;
}

.horizontal-card-content h2 {
    color: white;
    font-size: 3vw;
    font-weight: bold;
}


.horizontal-card-content h3 {
    color: #9DFF00;
    font-weight: bold;
    font-family: 'Archivo Black', sans-serif;
}

.text-content {
    width: 60vw;
}

.ligne{
    background-color: #FFFFFF;
    height: 45px;
    width: 1px;
    margin-top: 1rem;
}


.form-part-content input{
    width: 100%;
    background-color: transparent;
    color: white;
    height: 30px;
    border: 2px solid white;
    margin-top: 10px;
    transition: all .4s ease;
    border-radius: 2px;
    margin-bottom: 2rem;
    padding-left: 10px;
}

.form-part-content input:focus-within{
    border: 2px solid #9DFF00;
    outline: 2px solid #9DFF00;
    transition: all .4s ease;
}

.form-login{
    width: 50%;
}

.form_back{
    background-image: url("/images/bgfooter.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.btn-decouvrir2 {
    cursor: pointer;
    z-index: 9998;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 0.7em 1em;
    border-radius: 2px;
    background-color: #9DFF00;
    font-weight: bold;
    font-size: 13pt;
    width: 10em;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    border: none;
    margin: auto;
    margin-bottom: 5rem;
}

.btn-decouvrir2:hover {
    background-color: #6dcf22;
    color: black;
    transform: scale(1.02);
}

.img_perso{
    border-radius: 10px;
    height: 400px;
    width: 700px;
}

/* BACK OFFICE STYLE */
.wrap_back {
    padding-top: 150px;
}

.section-title {
    margin-bottom: 20px;
}

/* Styles généraux */
.wrap_back {
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
}

.card {
    margin-top: 25px;
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 20px);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    height: fit-content;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: forestgreen;
    color: #fff;
    padding: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 20px;
    font-weight: bold;
}

.card-content {
    padding: 20px;
    max-height: 1200px; /
overflow: hidden;
    transition: max-height 0.5s ease;
}

.user, .lieu, .parcours {
    padding: 15px 5px;
    border: 1px solid black;
    overflow: hidden;
}

.btn-add-guide {
    background-color: #007bff;
    margin-top: 5px;
    padding: 2px;
    color: white;
}

.user-info a,
.lieu-info a,
.parcours-info a {
    margin: 30px;
    border-radius: 10px;
    border: 1px solid white;
    color: black;
}

.user-info a:hover,
.lieu-info a:hover,
.parcours-info a:hover {
    text-decoration: underline;
}

.show-more-btn-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: center;
}

.show-more-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.show-more-btn:hover {
    background-color: #0056b3;
}

.show_lieux p {
    text-align: center;
    font-size: 28px;
    margin-left: 50px;
}

.show_lieux ul {
    display: flex;
    flex-wrap: wrap; /* Permettre le passage à la ligne */
    justify-content: space-around;
    text-align: center;
    list-style: none;
    padding: 0;
}

.lieu-item {
    display: flex;
    flex-direction: column;
    flex-basis: 20%; /* Largeur de 20% pour 5 éléments par ligne */
    margin-bottom: 20px; /* Espacement entre les lignes */
}

.show_lieux ul div li img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
}

.lieu-image {
    width: 150px;
    height: 150px;
    border-radius: 100%;
}

.lieu-name {
    font-size: 18px;
    margin-top: 5px;
}

/* Styles pour l'infobulle */
.gm-style-iw {
    width: 800px;
    height: 450px;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 0;
}

#content {
    background-color: black;
    padding: 10px;
}

/* Style pour le titre */
#content h3 {
    text-align: center;
    margin: 0 0 5px; /* Marge inférieure */
    font-size: 18px; /* Taille de la police */
}

/* Style pour le texte */
#content p {
    text-align: center;
    margin: 0; /* Supprime la marge par défaut */
    font-size: 14px; /* Taille de la police */
}

#content p:nth-child(3){
    padding: 10px 0;
    color: #9DFF00;
    font-weight: bold;
}

/* Style pour l'image */
#content img {
    max-width: 100%; /* Largeur maximale de l'image */
    height: auto; /* Hauteur automatique pour conserver les proportions */
    margin-left: 10%;
}

/* Style pour la barre de défilement */
.gm-style-iw::-webkit-scrollbar {
    width: 5px; /* Largeur de la barre de défilement */
}

.gm-style-iw::-webkit-scrollbar-thumb {
    background-color: #ccc; /* Couleur de la poignée de la barre de défilement */
    border-radius: 5px; /* Bordures arrondies de la poignée */
}



/* Media query pour les écrans plus petits */
@media screen and (max-width: 768px) {
    .info-field,
    .info-value {
        flex: 0 0 100%;
    }
}

.form-part-content textarea {
    width: 100%;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-top: 10px;
    transition: all .4s ease;
    border-radius: 2px;
    padding: 10px;
    margin-bottom: 2rem;
}

.form-part-content textarea:focus {
    border: 2px solid #9DFF00;
    outline: 2px solid #9DFF00;
    transition: all .4s ease;
}

/* Styles pour les boutons radio */
.radio-container {
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
}

.radio-item {
    display: flex;
    align-items: center;
    width: 100%;
}

.radio-label {
    color: white;
    margin-left: 10px;
}


.radio-item label {
    position: relative;
    display: inline-flex;
    align-items: center; /* Centrer verticalement le texte et le bouton radio */
    margin-right: 10px; /* Marge à droite pour l'espacement entre le bouton radio et le texte */
    cursor: pointer;
}

.radio-item input[type="radio"] {
    margin-right: 5px; /* Marge à droite pour l'espacement entre le bouton radio et le texte */
    width: 20px; /* Largeur du bouton radio */
    height: 20px; /* Hauteur du bouton radio */
    appearance: none; /* Masquer le style par défaut du bouton radio */
    border: 2px solid white; /* Bordure blanche */
    border-radius: 50%; /* Bordure arrondie pour créer un cercle */
    cursor: pointer;
}

.radio-item input[type="radio"]:checked {
    background-color: #9DFF00; /* Couleur de fond lorsqu'il est coché */
}


.lieu-checkform{
    width: calc(33% - 1em);
}

.oh{
    margin: 1em 0 3em;
    flex-wrap: wrap;
    gap: 1em;
}


.overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px; /* Hauteur du dégradé */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); /* Dégradé vers le bas */
}

#map {
    height: 500px;
    width: 100%;
}

.avatar {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.row2 {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.review {
    width: 200px;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: center;
    margin: 0 30px; /* Ajoute une marge horizontale de 10px entre chaque avis */
}


.profile-pic {
    width: 60px;
    height: 60px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 auto 5px;
}

.rating {
    font-size: 16px;
    margin-bottom: 5px;
}

.text {
    font-size: 14px;
}



.filter-container {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-label {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
}


.filter-select-container {
    position: relative;
}

.filter-toggle {
    display: none;
}

.filter-toggle-label {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 10px;
    background-color: #444;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 15vw;
}

.filter-select {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    background-color: #444;
    border-radius: 5px;
    overflow: hidden;
    width: 15vw;
}

.filter-select a {
    display: block;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.filter-select a:hover {
    background-color: #555;
}


.filter-toggle:checked + .filter-toggle-label + .filter-select {
    display: block;
}



.admin-btn-horizontal-card i {
    font-size: 2em;
}

.create-new-btn {
    display: block;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    background-color: #007a00;
    transition: background-color 0.3s;
    text-align: center;
    font-size: 1.2rem;
}

.create-new-btn:hover {
    background-color: #555;
}

.user-info.account-info label {
    font-weight: bold;
}

.user-info.account-info p {
    margin: 5px 0;
}

.action-buttons.account-buttons {
    text-align: center;
}

.action-buttons.account-buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #222222;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.action-buttons.account-buttons a:hover {
    background-color: #535353;
}

.action-buttons.account-buttons .disconnect-account {
    background-color: #c91313;
    margin-bottom: 10rem;
}

.body_account {
    background-image: url("/images/bg_account.jpg");
    background-size: cover;
}

.container-account{
    background-color: #363636;
    padding: 3rem;
}

.background-contact {
    background-image: url("/images/bg_contact.png");
    background-size: cover;
}


.contact-section {
    padding-top: 10vw;
}

.contact-container {
    padding-top: 50vw;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgb(28, 28, 28);
    border-radius: 5px;
}
.contact-form-group {
    margin-bottom: 20px;
}
.contact-form-group label {
    display: block;
    margin-bottom: 5px;
    color: white;
    font-weight: b;
}
.contact-form-group input[type="text"],
.contact-form-group input[type="email"],
.contact-form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: rgb(68, 68, 68);
    color: rgb(196, 196, 196);
}
.contact-form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 150px; /* Fixe la hauteur de la zone de texte */
    resize: none; /* EmpÃªche le redimensionnement */
}
.contact-form-group input[type="submit"] {
    background-color: #141313;
    color: white;
    padding: 10px 30px;
    border: none;
    font-size: 1.5vw;
    border-radius: 5px;
    cursor: pointer;
    margin: auto;
}
.contact-form-group input[type="submit"]:hover {
    background-color: #000000;
}


.avatar {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.row2 {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.review {
    width: 200px;
    padding: 50px;
    background-color: #000;
    border: 1px solid white;
    border-radius: 5px;
    text-align: center;
    margin: 0 30px;
}


.profile-pic {
    width: 60px;
    height: 60px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 auto 5px;
}

.rating {
    color: #9DFF00;
    font-size: 20px;
    margin-bottom: 5px;
}

.text {
    color: white;
    font-size: 14px;
}


