@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


html, body {
    margin: 0;
    padding: 0;
}


body {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    --text-color: #000;
    --main-color: #67944C;
    --main-color-hover: #37633f;
    --main-hue: 200;
    --nav-color:#37633f ;
    --bg-color: #fff;
    --light-text-color: #37633f;
    --input-bg: hsla(var(--main-hue), 50%, 50%, 6.5%);
    --input-bg-hover: hsla(var(--main-hue), 50%, 50%, 14%);
    --input-text: #37633f;
    --light-main-color:#37633f;
}

span{
    color: #37633f;
}
main{
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;

}
a {
    text-decoration: none;
}

h1{
    text-align: center;
}
/*Header*/
#a_deconnexion{
    margin:30px 0 30px 30px;
    color: black;
}

#connexion_pc{
    display: flex;
    align-items: center;
}
#photo_de_profil{
    height: 40px;
    margin:30px
}
nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.nav {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
}
i.fa-bars:before{
    display: none;
}

#connexion_burger{
    display: none;
}

header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}



header ul {
    display: flex;
    list-style: none;
    align-items: center;
}

#drapeau_francais{
    height: 30px;
}

#drapeau h4{
    margin-left: 0.5rem;
    font-size: 17px;
    --input-bg: hsla(var(--main-hue), 50%, 50%, 6.5%);
}
#drapeau{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 2.5rem;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
}

.logo .images {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.logo img {
    height: 40px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    margin-right: 0.8rem;
    margin-left:-50px;
    margin-top:-18px;
}

.logo img.logo-forDark {
    opacity: 0;
}

.partie_droite{
    margin-left: 2.5rem;
}

.nav-link {
    margin-left: 2.5rem;
    padding: 0 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: hsl(var(--main-hue), 17%, 79%);
    transition: 0.3s;
}

.nav-link .picto_nav{
    fill:hsl(var(--main-hue), 17%, 79%);
}

.nav-link:hover {
    color: var(--main-color);
}

.nav-link .theme-toggle {
    cursor: pointer;
}

.theme-toggle .fa-moon {
    display: none;
}

.theme-toggle .fa-sun {
    display: inline;
}

/*Contact*/

.contact {
    margin-left: 10rem;
    width: 100%;
    overflow: hidden;
    z-index: 3;
    background-color: var(--bg-color);
    position: relative; /* Needed for absolute positioning of child elements */
}

.container{
    margin: 0;
}

.contact .container {
    height: 100vh;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Adjusted to have two columns */
    grid-template-rows: 1fr;
    position: relative; /* Needed for absolute positioning of child elements */
}

.left, .right {
    width: 100%;
    padding: 65px 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Needed for absolute positioning of child elements */
    z-index: 3; /* Ensure they are above the wave image */
}

.left {
    max-width: 40rem;
}

.contact-heading h2 {
    font-weight: 600;
    color: var(--text-color);
    font-size: 3.5rem;
    line-height: 0.9;
    white-space: nowrap;
    margin-bottom: 1.2rem;
}

.contact-heading h1 span {
    color: var(--main-color);
}

.text {
    color: var(--light-text-color);
    line-height: 1.1;
    font-size: 1rem;
}

.text a {
    color: var(--main-color);
    transition: 0.3s;
}

.text a:hover {
    color: var(--main-color-hover);
}

select {
    width: 100%;
    padding: 1.5rem 1.35rem;
    border: none;
    border-radius: 20px;
    background-color: var(--input-bg);
    color: var(--input-text);
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 0 2px transparent;
}

select:hover {
    background-color: var(--input-bg-hover);
}

select:focus {
    background-color: var(--bg-color);
    box-shadow: 0 0 0 2px var(--light-main-color);
}

select option {
    background-color: var(--bg-color);
    color: var(--input-text);
    padding: 1.5rem 1.35rem;
}


.contact-form {
    display: grid;
    margin-top: 2.55rem;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 1rem;
}

.input-wrap {
    position: relative;
}

.w-100 {
    grid-column: span 2;
}

.input-wrap.w-50 {
    grid-column: span 1;
}

.contact-input {
    width: 100%;
    background-color: var(--input-bg);
    padding: 1.5rem 1.35rem calc(0.75rem - 2px) 1.35rem;
    outline: none;
    font-family: inherit;
    border-radius: 20px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 0 0 0px hsla(var(--main-hue), 92%, 54%, 0.169);
}

.contact-input:hover {
    background-color: var(--input-bg-hover);
}

.input-wrap label {
    position: absolute;
    top: 50%;
    left: calc(1.35rem + 2px);
    transform: translateY(-50%);
    color: var(--light-text-color);
    pointer-events: none;
    transition: .25s;
}

.input-wrap .icon {
    position: absolute;
    right: calc(1.35rem + 2px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--input-text);
    font-size: 1.25rem;
    transition: .3s;
}

textarea.contact-input {
    resize: none;
    width: 100%;
    min-height: 150px;
}

textarea.contact-input ~ label {
    top: 1.2rem;
    transform: none;
}

textarea.contact-input ~ .icon {
    top: 1.3rem;
    transform: none;
}

.input-wrap.focus .contact-input {
    background-color: var(--bg-color);
    border: 2px solid var(--light-main-color);
    box-shadow: 0 0 0 5px hsla(var(--main-hue), 91%, 55%, 0.11);
}

.input-wrap.focus label {
    color: var(--light-main-color);
}

.input-wrap.focus .icon {
    color: var(--light-main-color);
}

.input-wrap.not-empty label {
    font-size: .66rem;
    top: 0.75rem;
    transform: translateY(0);
}

.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 1rem;
    column-gap: 1rem;
    width: 100%;
    grid-column: span 2;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2rem;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 40px;
    border: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin:30px;
}
.btn_header{
    display: inline-block;
    padding: 0.75rem 1rem;
    background-color:var(--input-bg);
    color: #fff;
    border-radius: 40px;
    border: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 2.5rem;
}

a .btn_header {
    color: var(--input-text);
}
.btn_header:hover{
    background-color: var(--input-bg-hover);
}

.btn:hover {
    background-color: var(--main-color-hover);
}
.btn_header_compte{
    display: inline-block;
    padding: 0.75rem 1rem;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 40px;
    border: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 2.5rem;
}

.btn_header_compte:hover{
    background-color: var(--main-color-hover);
}

.btn_header_compte a{
    color:white;
}

.btn.upload {
    position: relative;
    background-color: var(--input-bg);
}

.btn.upload span {
    color: var(--light-text-color);
}

.btn.upload:hover {
    background-color: var(--input-bg-hover);
}

.btn.upload input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}
.contact .container {
    background: url("/assets/images/Contact_jardinon (1).png") no-repeat;
    background-size: 1100px 1000px;
    background-position: 200px 0;

}
#arrosoir{
    height: 900px;

}
/*Accueil*/
.label_accueil, .icon_accueil{
    top:25% !important;
}
#h1_form_responsive{
    display: none;
}

#formulaire_accueil {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: -20px auto 0 auto;
    z-index: 2;
    padding: 20px;

}

.formulaire_recherche_accueil{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100% !important;
    margin-top: 20px;
}

.baniere{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:0;
}


.baniere h1{
    z-index: 1;
    color: white;
    position: absolute;
    width: 600px;
    text-align: center;
}
.baniere img{
    z-index: -1;
}

#baniere_accueil img{
    width: 100dvw;
}


#button_recherche{
    display: flex;
    justify-content: center;
}

.cojardinage_images{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 50px auto 0 auto;
}

.contenu_cojardinage{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
    margin: 40px;
}

.contenu_cojardinage h4{
    font-size: 30px;
    right: 0;
    text-align: center;
    margin:30px;
}

#cojardinageimage1{
    width: 400px;
    margin: 40px;
}


.partie_slider{
    margin: 0 auto;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}
.container_slider {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

.container_slider h2, .jardins_favoris h2{
    font-size: 50px;
    margin:50px;
    text-align: center;
}

.slider-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 1;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #67944C;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
    background: #37633f;
}

.slider-wrapper .slide-button#prev-slide {
    left: -25px;
    display: none;
}

.slider-wrapper .slide-button#next-slide {
    right: -25px;
}

.slider-wrapper .image-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    font-size: 0;
    list-style: none;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
}

.slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
}

.slider-wrapper .image-list .image-item {
    width: 325px;
    height: 400px;
    object-fit: cover;
}

.container_slider .slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider-scrollbar .scrollbar-track {
    background: #ccc;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
    height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
    position: absolute;
    background:#37633f;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: grab;
    border-radius: inherit;
}

.slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}
.img_hover_paragraphe {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 325px; /* Assurez-vous que la taille correspond à celle de vos images */
    height: 400px; /* Assurez-vous que la taille correspond à celle de vos images */
}

.image-item {
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

#image3_contenu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;

}

#image3_contenu h4, #image3_contenu p {
    z-index: 10002;
    width: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img_hover_paragraphe:hover #image3_contenu {
    opacity: 1; /* Change l'opacité à 1 lors du survol */
}



img#petitspots{
    border-radius: 10px;
}
#ul_gallery_accueil{
    margin: 50px auto 80px auto;
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: space-evenly;
    width: 1300px;
}
#ul_gallery_accueil li{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    cursor: pointer;
}
#ul_gallery_accueil h4{
    margin-bottom:10px;
}

#ul_gallery_accueil li:hover{
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

#ul_gallery_accueil li h4{
    text-align: center;
    font-size: 18px;
}

#ul_gallery_accueil li p{
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

#ul_gallery_accueil img{
    padding: 5px;
}
#liens_mentions_legales{
    color:white;
}

footer {
    text-align: center;
    padding: 20px 0;
    width: 100%;
    height: fit-content;
}

.list_favicon{
    display: flex;
    align-items: center;
}
#list_footer{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom:50px;
}
#list_footer h4{
    margin-top: 50px;
}


#list_footer li{
    list-style: none;
    cursor: pointer;
}

#list_footer h4:hover{
    text-underline: #37633f;
    color:#37633f;
}

#list_footer li p{
    padding-bottom: 5px;
}

#list_footer li li:hover{
    text-underline: #37633f;
    color:#37633f;
}

.footer_vert{
    height: 80px;
    background:#37633f ;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_vert ul{
    margin:10px auto 10px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 1300px;
}
.footer_vert li{
    list-style: none;
    color:white;
    cursor: pointer;
}

.headervert{
    height: 100px;
    background:#37633f;
}




/*Connexion*/

#heading_connexion{
    text-align: center;
    margin-top: 50px;
}

.connexion_form{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin:0 auto;
}

.connexion_form .btn{
    width: 200px;
}

.champ_connexion{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 600px;
}

.page_connexion{
    height: 90vh;
}

.custom-separator {
    border: 0;
    height: 1px;
    background: #37633f;
    width: 30vw;
    margin: 20px auto;
}


/*Inscription form*/
.inscription-form{
    width: 800px;
    margin:0 auto
}

#btn_inscription{
    width: 200px;
}




/*Admin Main*/

.stat_admin {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin:30px;
}

.stat_admin p{
    background-color: var(--input-bg);
    padding: 20px;
    margin:20px;
    border-radius: 15px;
}
.stat_admin p:hover{
    background-color: var(--input-bg-hover);
}
.main_admin{
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}
.main_admin_page{
    height: 55vh;
}
.main_admin a{
    display: inline-block;
    padding: 1.1rem 2rem;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 40px;
    border: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    width: 150px;
    text-align: center;
}
.main_admin a:hover{
    background-color: var(--main-color-hover);
}
.admin_retour{
    background-color: #37633f;
}
#retour_modifier{
    margin: 0 auto;
}

/*User gestion*/
.haut_de_page_gestion{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80vw;
    margin:20px auto;
}
.erreur{
    color:red;
    margin-left: 50px;
}
.succes{
    color: #67944C;
    margin-left: 150px;
}
table {
    width: 75vw;
    border-collapse: collapse;
    margin: 20px auto;
}
tbody{
    border: transparent;
}

table, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 8px;
    text-align: left;
}

thead {
    background-color: #f2f2f2;
}



tr:hover {
    background-color: #f1f1f1;
}

.a_gestion{
    text-decoration: none;
    color: black;
}
.a_gestion:hover{
    text-decoration: underline;
}

.end{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.btn_retour btn{
    width: 200px;
    margin: 0 auto;
}
a .btn_retour{
    color:white;
}

select{
    border-radius: 10px;
    font-family: inherit;

}

.gestion_form{
    width: 75vw;
    margin: 50px auto;
}
label{
    height: fit-content;
}
.label_gestion{
    margin-top: -60px;
}

/*Page profil*/

a .en_attente{
    color:black;
    font-size: 13px;
    margin: 30px;
}
a .a_profil{
    font-size: 13px !important;
}
.en_attente_annulation{
    display: flex;
    flex-direction: row;
}
.en_attente{
    background-color: #FFE768;
    padding: 10px;
    width: fit-content;
    border-radius: 5px;
}
.section_profil{
    width: fit-content;
    margin-left: 50px;
}
.main_profil{
    display: flex;
    flex-direction: row;
    width: 90vw;
    justify-content: space-between;
}
.form_profil{
    width: 30vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    left: 0;

}

.background_profil{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.noprofile{
    margin: -15% auto 0 auto;
}

/*Jardins listing*/
#contact-form_jardin {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    grid-gap: 20px;
    width: fit-content;
}
#select1, #select2{
    grid-row: 2;
}

/*Listing*/
.listing {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.listing .contenu_listing_img {
    width: 30%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.listing .contenu_listing_img:hover{
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}


.listing .contenu_listing {
    padding: 20px;
}

.listing h2 {
    width: 100%;
    color: var(--input-text);
    font-size: 30px;
}

.listing div img {
    width: 100%;
    height: 300px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    margin-top: 0;
}

.statut_listing {
    margin-left: 220px;
}

.contenu_listing {
    height: 75%;
}

.button_container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.button_reservation button {
    font-size: 13px;
    padding: 10px 20px;
    background-color: #67944C;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
}

#button_reservation button:hover {
    background-color: #37633f;
}


@media screen and (max-width: 768px) {
    html{
        flex-direction: row;
    }
    /*Navigation*/
    .burger-menu {
        display: block;
        cursor: pointer;
        z-index: 999;
        font-size: 50px; /* Ajustez la taille de l'icône */
    }

    #burger-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;

    }
    i.fa-bars:before{
        display: block;
    }
    .fas .fa-bars {
        height: 80px;
    }

    header {
        height: fit-content;
        position: fixed;
        z-index: 1000;
        width: 100dvw;
        flex-direction: row;
        display: flex;
        justify-content: space-between;
        padding: 0;
    }

    nav {
        display: flex;
        justify-content: space-evenly;
        flex-direction: row-reverse;
        width: 100%;
        padding: 10px 0;
    }

    .logo {
        margin: 0;
        padding: 0;
    }

    .logo img {
        margin: 0;
        z-index: 1; /* Logo au-dessus du header */
    }

    .nav {
        background-color: transparent; /* Fond initial transparent */
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 65px; /* Ajustez selon la hauteur de votre header */
        left: 0;
        z-index: 998; /* Z-index inférieur au logo et au header */
        transition: background-color 0.3s ease; /* Transition fluide */
    }

    .nav.open {
        display: flex;
        background-color: white;
        z-index: 2;
        margin-top: -50px;
        padding-top: 20px;
    }

    .nav.open .logo-forLight img{
        display: none;
    }

    .nav li {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-link, a{
        padding: 1.5rem;
        font-size: 15px;
        color: black;
    }
    #nav-links{
        margin-top: 5px;
    }

    #connexion_burger{
        display: block;
    }

    #connexion_pc{
        display: none;
    }
    #drapeau h4{
        font-size: 15px;
    }



    /*Banieres*/
    #h1_accueil{
        display: none;
    }
    .baniere {
        position: relative;
    }

    .baniere img {
        width: 100dvw;
    }
    /*Formulaire recherche*/
    #h1_form_responsive{
        display: block;
        font-size: 25px;
        text-align: center;
    }

    .formulaire_recherche_accueil{
        justify-content: center;
        flex-direction: column;
        width: 100vw;
    }
    #formulaire_accueil{
        padding:20px;
        box-shadow: none;
        margin-top: 0;
    }
    #formulaire_accueil.container{
        display: flex;
        flex-direction: column;
    }
    .formulaire_recherche_accueil_responsive {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .formulaire_recherche_accueil_responsive .contact-input,
    .formulaire_recherche_accueil_responsive .btn {
        width: 100%; /* Utilisation de la largeur totale */
        max-width: 300px; /* Largeur maximale pour les champs */
        margin: 10px 0;
    }

    .formulaire_recherche_accueil_responsive .btn {
        margin-top: 20px; /* Espacement supplémentaire en haut du bouton */
    }

    .icon .fa-solid .fa-mailbox{
        width: 20px;
        height: 25px;
        z-index: 1001;
    }
    .formulaire_recherche_accueil label{
        font-size: 15px;
    }
    .btn{
        font-size: 15px;
        margin:10px;
    }

    .cojardinage_images{
        background-color: #67944C;
        width: 88%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        margin:20px auto;
    }
    img#cojardinageimage1{
        width: 80dvw;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }

    #cojardinageimage1{
        margin:20px;
    }
    .cojardinage_images h4{
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }

    .cojardinage_images p{
        font-size: 15px;
    }
    .slider-wrapper{
        width: 100%;
        box-shadow: none;
        margin: 0 0;
    }

    .contenu_cojardinage{
        width: 88%;
    }

    /*Sldier*/
    .container_slider h2{
        font-size: 25px;
    }
    .partie_slider{
        width: 90vw;
    }

    .slider-scrollbar .scrollbar-thumb {
        width: 20%;
    }

    /*Gallery accueil*/
    .jardins_favoris h2{
        font-size: 25px;
        margin: 40px auto 20px auto;
    }
    #ul_gallery_accueil{
        flex-direction: column;
        align-items: center;
        width: 100vw;
        margin:0;
    }
    #ul_gallery_accueil li{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 20px;
    }

    #ul_gallery_accueil h4{
        font-size: 20px;
    }

    #ul_gallery_accueil p{
        font-size: 15px
    }
    .gallery_favoris{
        margin-top: 0;
    }

    /*Footer*/
    #list_footer{
        flex-direction: column;
        justify-content: center;
    }
    .list_favicon img{
        margin: 10px auto;
    }
    .footer_vert li{
        font-size: 13px !important;
    }
    #list_footer h4{
        margin-top: 20px;
    }

    /*Contact*/
    .headervert{
        height: 70px;
    }
    .left{
        width: 100vw;
        padding:0;
        height: fit-content;
    }
    .contact{
        margin:0 auto;
    }
    .contact .container{
        height: fit-content;
        width: 100vw;
    }
    .form-wrapper{
        width: 100vw;
        margin: 0 auto;
        padding: 0;
    }
    .contact-heading h2{
        width: 100%;
        font-size: 30px;
    }
    .contact-form{

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-form div{
        width: 100%;

    }
    .right{
        display: none;
    }
    .contact-heading{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin:20px auto;
        width: 280px;
    }
    .contact-heading p, .contact-heading a{
        font-size: 15px;
        margin:0;
        padding: 0;
    }
    .contact-buttons .w-100 button, .contact-buttons .w-100 input[value="Envoyer"]{
        width: 10px;
    }

    /*Connexion*/
    .champ_connexion{
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .contact-form{
        width: 100vw;

    }
    .contact-input input, .contact-input label{
        width: 50%;
    }
    .input-wrap .icon{
        right: 20px;
    }
    .input-wrap .w-50{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .champ_connexion .input-wrap input{
        width: 100%;
    }
    .champ_connexion .input-wrap .icon{
        right: 20px;
    }

    /*Main Admin*/
    .main_admin_page{
        height: 100vh;
    }
    .stat_admin {
        flex-direction: column;
    }

    .stat_admin p{
        width: 75%;
    }

    .main_admin{
        flex-direction: column;
    }
    .main_admin a{
        margin:10px;
    }
    /*Users gestion*/
    table {
        width: 70%;
        border-collapse: collapse;
        margin: 0 auto;
    }
    tbody {
        border: transparent;
    }

    th, td {
        padding: 8px;
        text-align: left;
        border: 1px solid #ddd;
        font-size: 13px;
    }
    .a_gestion{
        font-size: 13px;
        text-decoration: underline;

    }

    thead {
        display: none;
    }

    td:first-child {
        font-weight: bold;
        background-color: #67944C;
    }

    tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .main-container {
        margin-top: 20px;
    }
    .haut_de_page_gestion div p{
        font-size: 10px;
    }
    .haut_de_page_gestion h1{
        font-size: 18px;
    }
    table{
        border: transparent;
    }
    .succes{
        margin-left: 0;
    }
    /*Form profil responsive*/
    .section_profil{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main_profil{
        flex-direction: column;
    }
    .form_profil{
        width: 100vw;

    }
    .background_profil{
        width: 100%;
    }
    .noprofile{
        height: 100px;
        width: 100px;
    }
    .listing{
        flex-direction: column;
        align-items: center;
    }




    .listing .contenu_listing_img {
        width: 80%;

    }
    .listing .contenu_listing_img:hover{
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    }


    .listing .contenu_listing {
        padding: 20px;
    }

    .listing h2 {
        width: 100%;
        color: var(--input-text);
        font-size: 30px;
    }

    .listing div img {
        width: 100%;
        height: 300px;
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
        margin-top: 0;
    }

    .statut_listing {
        margin-left: 220px;
    }

    .contenu_listing {
        height: 75%;
    }

    .button_container {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }

    #button_reservation button {
        font-size: 13px;
        padding: 10px 20px;
        background-color: #67944C;
        color: #fff;
        text-decoration: none;
        border: none;
        border-radius: 5px;
    }

    #button_reservation button:hover {
        background-color: #37633f;
    }


}