:root{
    --blanc : #ffffff;
    --noir : #000000;
    --move : #500472;
    --vert : #79cbb8;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
body{
    
}
/*============================================================
                    navbar
===============================================================*/
.navbar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 15px;
    color: var(--blanc);
}
.navbar .logo h1,.footer .item h1{
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}
.navbar .links a{
    text-decoration: none;
    margin: 10px;
    padding: 10px;
    font-weight: 600;
    color: var(--blanc);
    font-size: 14px;
    transition-duration: .2s;
}
.navbar .links a:hover{
    color: var(--vert);
}
.navbar .menu{
    padding: 10px 15px;
    cursor: pointer;
    display: none; 
}
.navbar .menu img{
    width: 25px;
}
@media screen and (max-width:850px){
    .navbar{
        justify-content: space-between;
    }
    .navbar .logo h1{
        font-size: 20px;
    }
    .navbar .links{
        display: none;
    }
    .navbar .menu{
        display: block;
    }
    .navbar .links{
        background-color: var(--noir);
        background-image: linear-gradient(320deg, #000000, #d814ff );
        position: absolute;
        top: 78px;
        right: 0;
        flex-direction: column;
        width: 200px;
        height: 50vh;
        z-index: 999;
    }
    .navbar .links a{
        border-radius: 10px;
        color: var(--blanc);
    }
    .navbar .links a:hover{
        background-color: #363636;
    }
}
/*============================================================
                    header
===============================================================*/
.tete{
    background-image: linear-gradient(rgba(72, 84, 96, 0.5), rgba(53, 68, 84, 0.5)), url(../img/header1.jpg) ;
    background-position: center; 
    background-size: cover;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.header{
    color: var(--blanc);
    padding: 120px 30px;
    text-align: center;
    max-width: 1080px;
    margin-inline: auto;
}
.header h1{
    margin-bottom: 10px;
    font-size: 45px;
}
.header p{
    opacity: .8;
    margin-bottom: 40px;
}
.header a{
    text-decoration: none;
    color: var(--blanc);
    background-color: var(--move);
    padding: 10px 32px;
    border-radius: 4px;
    font-size: 14px;
    transition-duration: .3s;
    display: inline-block;
    font-weight: 600;
}
.header a:hover,.recherche form input:hover{
    background-color: #7807ac;
}
@media screen and (max-width:800px){
    .header{
        padding: 80px 30px;
    }
    .header h1{
        font-size: 25px;
    }
}
.recherche{
    margin: 10px 8%;
    margin-top: -70px;
    background-color: var(--blanc);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.recherche form{
    text-align: center;
}
.recherche form input,.recherche form select{
    width: 30%;
    height: 35px;
    margin: 10px 1%;
    padding: 4px 10px;
    outline: none;
    border: 1px solid var(--move);
    font-weight: 600;
    border-radius: 4px;
}
.recherche form input{
    background-color: var(--move);
    color: var(--blanc);
    cursor: pointer;
    width: 20%;
    border: none;
}
@media screen and (max-width:600px) {
    .recherche form input,.recherche form select{
        width: 90%;
    }
}
/*============================================================
                    main
===============================================================*/
.main{
    margin-top: 80px;
    background: linear-gradient(to top, #383535 40%, rgba(0, 128, 255, 0) 50%);
}
.main .voir_tous{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12%;
}
.main h1{

}
#voir_tous{
    text-align: center;
    text-decoration: none;
    color: var(--move);
}
.main .partie{
    margin: 30px 0;
}
.main .partie a{
    color: var(--noir);
}
.owl-carousel{
    max-width: 980px;
    margin-inline: auto;
}
.owl-carousel a,.affichage a,.page-bien a{
    text-decoration: none;
}
.owl-carousel .item,.page-bien a{
    margin: 30px 5px;
}
.owl-carousel .bien,.page-bien .bien{
    background-color: var(--blanc);
    width: 100%;
    position: relative;
    height: 400px;
    border-radius: 2px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
}
.owl-carousel .bien img,.affichage .item img,.page-bien .bien img{
    width: 100%;
    height: 220px;
    object-fit: cover; /* Ajuste l'image pour remplir le conteneur sans déformation */
    object-position: center;
}
video{
    height: 220px;
    width: 100%;
}
.owl-carousel .bien:hover,.affichage .item:hover,.page-bien .bien:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.owl-carousel .bien:hover img,.affichage .item:hover img,.page-bien .bien img:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.owl-carousel .bien h3,.bien p,.bien h4,.affichage .item h3,.affichage .item p,.affichage .item h4,.page-bien .bien h3,.page-bien .bien p
.page-bien .bien h4{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px;
    color: var(--noir);
}
.owl-carousel .bien p,.affichage .item p,.page-bien .bien p{
    opacity: .7;
}
.owl-carousel .bien h4,.affichage .item h4,.page-bien .bien h4{
    color: var(--vert);
    font-weight: bold;
}
.owl-carousel .bien .superficie,.affichage .item .superficie,.page-bien .bien .superficie{
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.owl-carousel .bien .superficie img,.affichage .item .superficie img,.page-bien .bien .superficie img{
    width: 25px;
    height: 25px;
}
.cta-btn {
    background-color: var(--move);
    color: var(--blanc);
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #4947d3; /* Couleur au survol */
}
@media screen and (max-width:1080px){
    .main .voir_tous{
        padding: 10px 4%;
    }
}
@media screen and (max-width:600px){
    .main h1{
        font-size: 22px;
    }
    .owl-carousel .item,.affichage .item,.page-bien .bien{
       width: 90%;
       margin-inline: auto;
    }
}
@media screen and (max-width:400px){
    .main .voir_tous{
        padding: 10px 2%;
    }
    .main h1{
        font-size: 18px;
    }
    #voir_tous{
        font-size: 14px;
    }
}
/*============================================================
                    comment
===============================================================*/
.comment{
    background-color: #383535;
    color: var(--blanc);
    text-align: center;
    padding: 30px 10px;
}
.comment h2{
    margin-top: 40px;
}
.comment .marches{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 980px;
    margin: 40px auto;
}
.comment .marches .marche{
    margin: 20px 1%;
    width: 30%;
    transition-duration: .3s;
}
.comment .marches .marche:hover{
    transform: scale(1.04);
}
.comment .marches .marche img{
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}
.comment .marches .marche p{
    font-size: 12px;
    opacity: .8;
    margin: 15px;
}
@media screen and (max-width:600px){
    .comment .marches .marche{
        width: 90%;
        margin: 20px auto;
    }
}
/*============================================================
                    propos
===============================================================*/
.propos{
    margin-bottom: 80px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 80px 40px;
}
.propos .image{
    flex: 1;
    overflow: hidden;
    padding: 20px;
    text-align: center;
}
.propos .image img{
    border-radius: 6px;
    width: 80%;
    height: 80%;
}
.propos .info{
    flex: 1;
}
.propos .info h1{
    font-family: "Qwitcher Grypen", cursive;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 25px;
}
.propos .info p{
    font-size: 14px;
    opacity: .9;
    line-height: 25px;
    margin-bottom: 40px;
}
.propos .info a{
    text-decoration: none;
    background-color: var(--move);
    color: var(--blanc);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    transition-duration: .3s;
}
.propos .info a:hover{
    background-color: #5d0fbc;
}
@media screen and (max-width:700px){
    .propos ,.contact{
        flex-direction: column;
    }
    .propos .image{
        margin-top: 40px;
    }
    .propos .image img{
        width: 90%;
        height: 90%;
    }
}
/*============================================================
                    Contact Style
===============================================================*/
.contact {
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    padding: 30px;
    background-image: linear-gradient(rgba(59, 31, 57, 0.6), rgba(53, 68, 84, 0.6)), url(../img/contact.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    overflow: hidden;
}

.contact .item {
    flex: 1;
    margin: 15px;
    padding: 25px;
    border-radius: 10px;
    color: #f8f8f8;
}
.contact .globale{
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.15);
}
.contact .item h1, .contact .item h2 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact .description {
    color: #d3d3d3;
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.4;
}

.contact .donnee {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    transition-duration: .3s;
}

.contact .donnee:hover {
    transform: translateY(-3px);
}

.contact .donnee img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.contact .donnee:hover img {
    filter: grayscale(0%);
}

.contact .donnee p,
.contact .donnee a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0;
}

.contact .globale form {
    margin-top: 15px;
}

.contact .globale form input,
.contact .globale form textarea {
    width: 100%;
    padding: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff; !important
    font-size: 0.95rem;
    border-radius: 6px;
    margin: 10px 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact .globale form input:focus,
.contact .globale form textarea:focus {
    border-color: #5d0fbc;
    box-shadow: 0 0 8px rgba(93, 15, 188, 0.3);
}

.contact .globale form textarea {
    height: 90px;
    resize: none;
}

.contact .globale form input[type=submit] {
    background-color: #5d0fbc;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact .globale form input[type=submit]:hover {
    background-color: #4a0ca6;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .contact {
        flex-direction: column;
    }
    
    .contact .item {
        margin-bottom: 20px;
    }
}

/*============================================================
                    footer
===============================================================*/
.footer{
    background:#000;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
}
    
.footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
}
    
.footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
}
    
.footer .row a:hover{
    color:#fff;
}
    
.footer .row ul{
    width:100%;
}
    
.footer .row ul li{
    display:inline-block;
    margin:0px 30px;
}
    
.footer .row a i{
    font-size:2em;
    margin:0% 1%;
}
    
@media (max-width:720px){
    .footer{
        text-align:left;
        padding:5%;
    }
    .footer .row ul li{
        display:block;
        margin:10px 0px;
        text-align:left;
    }
    .footer .row a i{
        margin:0% 3%;
    }
}
/*============================================================
                    page biens
===============================================================*/
.panel{
    background-image: linear-gradient(rgba(72, 84, 96, 0.5), rgba(112, 128, 144, 0.5)), url(../img/panel.jpg) ;
    background-position: center; 
    background-size: cover;
    height: 70vh;
    margin-bottom: 40px;
    overflow: hidden;
    text-align: center;
    color: var(--blanc);
}
#nos_prop{
    margin-top: 20vh;
}
.affichage{
    margin: 80px 10%;
}
.affichage form{
    background-color: var(--move);
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
}
.affichage form select,.affichage form input{
    width: 120px;
    height: 35px;
    border-radius: 5px;
    padding: 2px 10px;
    outline: none;
    border: none;
    margin: 5px;
}
.affichage form input{
    cursor: pointer;
    background-color: green;
    color: white;
    letter-spacing: 1px;
    transition-duration: .2s;
}
.affichage form input:hover{
    background-color: rgb(3, 68, 3);
}
.affichage .container,.page-bien .biens{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}
.affichage .container a{
    width: 33%;
}
.page-bien a{
    width: 32%;
}
.affichage .container .item{
    position: relative;
    height: 400px;
    border-radius: 4px;
    margin: 15px 2%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination a, .pagination span.dots {
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #ccc;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
    margin: 2px;
    text-align: center;
    min-width: 40px;
}

.pagination a.active {
    background-color: #6200ea;
    color: white;
    border-color: #6200ea;
}

.pagination a:hover {
    background-color: #ddd;
    color: black;
}

.pagination a.prev, .pagination a.next {
    font-weight: bold;
}

.pagination span.dots {
    border: none;
    pointer-events: none;
}

@media screen and (max-width: 600px) {
    .pagination {
        gap: 3px;
    }
    
    .pagination a, .pagination span.dots {
        padding: 6px 8px;
        min-width: 30px;
        font-size: 14px;
    }
    
    .pagination a.prev, .pagination a.next {
        padding: 6px 10px;
    }
}

@media screen and (max-width: 800px) {
    .affichage{
        margin-inline: 8%;
    }
    .affichage .container a{
        width: 50%;
    }
    .page-bien a{
        width: 48%;
    }
}
@media screen and (max-width: 550px) {
    .affichage .container a,.page-bien a{
        width: 100%;
    }
}
/*============================================================
                    page bien
===============================================================*/
.page-bien{
    margin: 80px 4%;
}
.splide__slide img {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Ajuste l'image pour remplir le conteneur sans déformation */
    object-position: center;
}
.information{
    margin: 40px 10px;
    display: flex;
}
.information .desc,.information .form{
    flex: 1;
    margin: 20px;
}
.information form{
    text-align: center;
    background-color: #f4f2ff;
    border: 2px solid #6a11cb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px;
}
.information h1,.information h3{
    margin: 15px 0;
}
.information .desc h3{
    color: var(--move);
    font-size: 22px;
    font-weight: 800;
}
.information .desc .qartier {
    color: #575555;
    font-size: 16px;
    font-weight: bold;
}
.information .desc .caracter{
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
}
.information .desc .caracter .type{
    width: 30%;
    margin: 10px 0;
}
.information .spec{
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.information .spec p{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    margin: 10px;
    padding: 5px 10px;
    background-color: rgb(218, 218, 218);
    border-radius: 10px;
}
.information .spec img{
    width: 20px;
    height: 20px;
}
.information .desc p{
    margin: 10px 0;
    font-size: 14px;
}
.information .call{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}
.information .call a{
    background-color: var(--vert);
    padding: 8px 12px;
    border-radius: 10px;
    margin: 5px;
    width: 150px;
    font-size: 14px;
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-weight: 600;
    transition-duration: .3s;
}
.information .call a:hover{
    transform: scale(1.04);
}
.information .call img{
    width: 20px;
    height: 20px;
}
.information form p{
    font-size: 10px;
    opacity: .8;
    margin-bottom: 10px;
}
.information form input,.information form textarea{
    height: 30px;
    width: 80%;
    margin: 10px;
    border-radius: 6px;
    border: none;
    outline: none;
    background-color: #eae6ff;
    border: 1px solid #c2bbff;
    padding: 10px;
}
.information form textarea{
    height: 60px;
}
.information form input[type="submit"]{
    background-color: #6a11cb;
    padding: 2px;
    color: var(--blanc);
    letter-spacing: 1px;
    cursor: pointer;
    transition-duration: .2s;
}
.information form input[type="submit"]:hover{
    background-color: #5d0fbc;
}
@media screen and (max-width: 800px) {
    .information{
        flex-direction: column;
        margin-inline: 0;
    }
    .information h1{
        font-size: 24px;
    }
    .information .desc,.information .form{
        margin-inline: 10px;
    }
    .information form input,.information form textarea{
        width: 90%;
    }
    .information .desc .caracter h4{
        font-size: 14px;
    }
    .information .call a{
        width: 120px;
        font-size: 12px;
        padding: 8px;
    }
}
.numeros{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
}
.numeros a{
    text-decoration: none;
    color: var(--noir);
    display: flex;
    align-items: center;
    margin: 10px;
    width: auto;
    font-size: 14px;
}
.numeros a img{
    margin-right: 10px;
}
.commentaire{
    max-width: 600px;
}
.commentaire form input{
    height: 30px;
    width: 70%;
    margin: 20px 2%;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--move);
}
.commentaire form input[type=submit]{
    cursor: pointer;
    width: 20%;
    border: none;
    background-color: #eae6ff;
    font-weight: 500;
    border-radius: 8px;
    transition-duration: .2s;
}
.commentaire form input[type=submit]:hover{
    background-color: #c2bbff;
}
.commentaire .avis{
    display: flex;
    margin: 30px 5px;
}
.avis img{
    width: 30px;
    height: 30px;
    margin-right: 15px;
}
.avis .avi h4{
    margin-bottom: 5px;
}
#similaire{
    margin-top: 60px;
}
#whatsapp{

}
#whatsapp img{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    animation-name: example;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-iteration-count: infinite;
}
@keyframes example {
    0%{bottom: 20px;}
    25%{bottom: 30px;}
    50%{bottom: 20px;}
}