@import url('static/fonts/delhi.ttf');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

$delhi : "delhi";
$lato : "Lato";

$primaryColor: #257a75;
$primaryDark : #1f2d37;
$secondaryColor: #dc645a;
$accentColor: #fda979;
$greyLight: #f2f2f2;
$primaryLight: #6cb483;
$secondaryDark : #3c4c4c;




// html

html {
    scroll-behavior: smooth;
}

///////////////// CONSTANT
/// 
.ic-accent {
    color: $accentColor;
}

.pointed {
    cursor: pointer;
}

h1.title {

    font-size: 52px !important;
    font-weight: bold !important;
    font-family: $delhi;
}

h2.title {

    font-size: 48px !important;
    font-weight: bold !important;
    font-family: $delhi;
}

.mybtnSpe {
    display: block !important;
    border: 3px solid $primaryColor;
    padding: 13px 35px;
    width: 230px;
    text-decoration: none;
    color: $primaryColor;
    background-color: transparent;
    font-size: 15px;
    font-weight: bold;
    font-family: $lato !important;
    transition: 1s;
    border-radius: 5px;
    cursor: pointer;
}

.mybtnSpe:hover {
    transition: 1s;

}

.accent-color {
    color: $accentColor !important;
}

.primary-dark-color {
    color: $primaryDark !important;
}

.primary-color {
    color: $primaryColor !important;
}

.bg-accent-light {
    background-color: rgba($color: $accentColor, $alpha: .15) !important;
}

.bg-accent-light-2 {
    background-color: rgba($color: $accentColor, $alpha: .60) !important;
}

.bg-accent {
    background-color: $accentColor !important;
    color: $primaryDark;
}

.bg-primary-dark {
    background-color: $primaryDark !important;
}

.bg-primary {
    background-color: $primaryColor !important;
}

.bg-gris-light {
    background-color: rgba($color: $greyLight, $alpha: .7);
}

.primary-color {
    color: $primaryColor !important;
}

button.is-primary {
    background-color: $primaryDark !important;
    color: white;
    transition: 0.5s;
    padding-right: 20px;
}

button.is-primary:hover {
    transition: 0.5s;
    background-color: $accentColor !important;
    color: $primaryDark;
}


.search-input::placeholder {
    color: rgba(255, 255, 255, 0.418);
}

.search-input:active {
    outline: none;
}

.search-input {
    color: white;
}


.search-input2::placeholder {
    color: $primaryColor !important;
}

.search-input2:active {
    outline: none;
}

.search-input2 {
    color: $primaryColor !important;
}


.text-title {
    font-size: 38px !important;
    // text-transform: capitalize !important;
}

.text-desc {
    font-size: 19px !important;
}

.text-title-2 {
    font-size: 13px !important;
    // text-transform: capitalize !important;
}

.text-desc-3 {
    font-size: 16px !important;
}

/* .text-cast { } */

.image-white {
    filter: brightness(0) invert(1);
}

.image.is-120x120 {
    height: 120px;
    width: 120px;
}

.mybtn {
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    background: linear-gradient(to right, $primaryColor 0%, $primaryDark 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.mybtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.custom-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 40px !important;
    border-radius: 8px !important;
    background: linear-gradient(to right, $primaryColor, $primaryDark) !important;
    color: white !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    border: none !important;
    cursor: pointer !important;
    transition: 0.3s ease-in-out !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.custom-btn:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
    filter: brightness(1.15) !important;
}

.mybtn2 {

    border-radius: 6px !important;
    color: white !important;
    font-size: 15px !important;
    background: linear-gradient(to right, rgba($color: $accentColor, $alpha: 0.8), rgba($color: $primaryLight, $alpha: 0.8));
}

.btn-search {
    transition: 0.2s;
    padding: 12px;
    cursor: pointer;
    border-radius: 100px;
    color: white;
    background-color: rgba($color: $accentColor, $alpha: .5);
}



.btn-search:hover {

    transition: 0.2s;
    transform: scale(1.1) !important;
}



.btn-filter {
    transition: 0.2s;
    padding: 12px;
    cursor: pointer;
    border-radius: 100px;
    // color: white;
}

.btn-filter:hover {

    transition: 0.2s;
    transform: scale(1.1) !important;
}



h2.title {

    font-weight: bold;
    font-family: $delhi;
    color: $primaryDark;
}

.slide-right {
    transition: 0.5s;
}

.slide-right:hover {
    margin-left: 15px !important;
    transition: 0.5s;
}

.slide-top {
    transition: 0.5s;
}

.slide-top:hover {
    margin-bottom: 15px !important;
    transition: 0.5s;
}

.slide-in {
    transition: 0.5s;
}

.slide-in:hover {
    transform: scale(0.9);
    transition: 0.5s;
}

.slide-out {
    transition: 0.5s;
}

.slide-out:hover {
    transform: scale(1.2);
    transition: 0.5s;
}

.slide-left {
    transition: 0.5s;
}

.slide-left:hover {
    margin-right: 15px !important;
    transition: 0.5s;
}

/////////////////////////////////////////

body {

    margin: 0;
    padding: 0;
}


/////////////////// HEADER NAVBAR
#navbar {
    .navbar-item {

        z-index: 5;

        /* .login input{ } */
        img {
            transition: 1s;
            max-height: none;
            width: 150px !important;
            margin: 0;
            margin-bottom: -28% !important;
        }

        span {
            transition: 0.4s;

            color: white;
            cursor: pointer;
            margin: 0px 3px;
        }

        span:hover {
            transition: 0.4s;
            padding: 5px 35px;
            background-color: rgba($color: $accentColor, $alpha: .1);
            border-radius: 100px;
        }

    }
}

#navbar.menu-scrolled>div>div.navbar-brand>a>img {
    width: 80px !important;
    transition: 1s;
    margin-bottom: 0 !important;
}

#navbar.menu-scrolled #navbarMenu>div.navbar-start>div {
    margin-top: 23px !important;
    margin-left: 13px !important;
}

.navbar-item.is-active span {
    transition: 0.4s;
    color: $accentColor;
    display: block;
    padding: 5px 35px;
    background-color: rgba($color: $accentColor, $alpha: .1);
    border-radius: 100px;
}

.navbar-item.navbar-item.is-active span:hover {
    background-color: rgba($color: $accentColor, $alpha: .15);
}

.menu-scrolled {
    // a.navbar-item{
    //     color: white;
    // }
    transition: 1s;

    P.navbar-item {
        color: rgba($color: white, $alpha: .8) !important;
    }

    P.navbar-item.is-active {
        color: $accentColor !important;
    }

    background-color: rgba($color: $primaryDark, $alpha: .85) !important;

    div.navbar-brand>span {

        color: $accentColor;
    }

}

.menu-scrolled:hover {
    // a.navbar-item{
    //     color: white;
    // }
    transition: 0.35s;

    p.navbar-item {
        color: $primaryLight !important;
        background-color: transparent;
    }

    p.navbar-item:hover {
        color: $primaryDark !important;
        background-color: transparent;
    }

    background-color:$primaryDark !important;

    #navbar>div>div.navbar-brand>span {

        color: white;
    }

}

#navbar {
    width: 100%;
    position: fixed;
    z-index: 15;
    top: 0;
    background-color: transparent;
    transition: 1s;
}




@media only screen and (max-width: 700px) {
    #navbar>div>div.navbar-brand>a {
        padding: 0;
    }

    #navbar {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .navbar-item {
        #body {
            padding-top: 0 !important;
        }

        img {

            width: 110px !important;
            margin: 0;
            margin-top: 3px;
            margin-bottom: 0 !important;
        }
    }
}

.myTag1 {
    transition: 0.7s;
    padding: 8px 25px !important;
    border: 1 solid $secondaryColor;
    border-radius: 100px !important;
    color: white !important;
    background-color: rgba($color: $primaryLight, $alpha: .1) !important;
    font-weight: 400 !important;
}

.myTag1:hover {
    transition: 0.7s;
    background-color: rgba($color: $primaryLight, $alpha: .2) !important;
}

#navbarMenu>div.navbar-start>div>div.select>select {
    padding: 5px 35px !important;
    color: $accentColor;
    background-color: rgba($color: $accentColor, $alpha: .1) !important;
    border-radius: 100px;
    border: none !important;
    appearance: none !important;
    -moz-appearance: none;
    -webkit-appearance: none;

    option {
        color: $primaryDark;
    }

}


//////////// ///////////////////////////  FOOTER
/// 
/// 

.footer-icone {
    i {
        font-size: 11pt;
        color: white !important;
        display: block;
        margin-left: auto;
        margin-right: auto;

    }

    transition: 0.5s;
    padding: 9px;
    width: 10%;
    background-color: rgba($color: $primaryColor, $alpha: .3) !important;
    border-radius: 4px;
}

.footer-icone:hover {
    background-color: rgba($color: $primaryColor, $alpha: .5) !important;
    transition: .5s;
    cursor: pointer;
}

#footer li {

    cursor: pointer;
}

#footer li:hover {
    transition: 0.5s;
    color: $accentColor;
}

/////////////

/// HEADER HOMEEEE 
/// 
#header-banner {

    height: 86vh !important;
    background-size: cover;
    background-position: center;

    .overlay {
        position: absolute;
        height: 86vh;
        width: 100%;
        z-index: 1;
        //background:linear-gradient(to bottom,  rgba($color: rgb(4, 34, 39), $alpha: 0.8), rgba($color: $primaryLight, $alpha: 0.2));
        background: rgba($color: rgb(8, 34, 32), $alpha: 0.7);
    }

    .contains {
        padding-top: 28vh !important;
        z-index: 5 !important;

        .search {
            width: 80% !important;
            backdrop-filter: blur(5px);
            box-shadow: 2px 3px 25px 2px rgba(0, 0, 0, 0.226);
            border-radius: 5px;
        }
    }

    #search {
        width: 100% !important;
        backdrop-filter: blur(8px);
        box-shadow: 2px 3px 25px 2px rgba(0, 0, 0, 0.295);
        border-radius: 100px;
        min-height: 65px !important;

        input::placeholder {

            color: white;

        }
    }


    .slide-top {
        .item {
            .bottom-title {
                transition: 0.5s;
                position: absolute;
                border-radius: 0 0 5px 5px;
                bottom: 0;
                height: 60px;
                width: 100%;
                backdrop-filter: blur(10px);
            }

            .overlay2 {
                transition: 0.5s;
                width: 100%;
                height: 350px;
                background: rgba($color: $primaryDark, $alpha: 0.3);
            }

            transition: 0.5s;
            min-height: 350px;
            border-radius: 5px;
            cursor: pointer;
        }

        .item:hover {
            transition: 0.5s;
            transform: scale(0.995);
        }
    }

}




/////////// Top home items ==> les biens les plus recommandés
/// 

.top-home-items {
    padding: 45px 0;

    .top-home-item {
        transition: 0.5s;
        cursor: pointer;
        padding: 7px;
        width: 24%;
        max-width: 24% !important;
        min-height: 315px;
        background-color: white;
        border-radius: 5px;
        box-shadow: 1px 1px 12px 2px rgba(0, 0, 0, 0.034);

        .img {
            height: 200px;
            border-radius: 5px;
        }
    }

    .top-home-item:hover {

        transition: 0.5s;
        scale: 1.15;
        z-index: 10;
    }

}


/////////////////////////////// LOGIN 

.login {
    position: fixed;
    transition: 0.5s;
    top: 0;
    width: 100% !important;
    max-width: 100% !important;
    background-color: rgba($color: $primaryDark, $alpha: .5);
    z-index: 15;
    overflow: hidden;
    backdrop-filter: blur(3px);

    .login-card {
        max-width: 28% !important;
        top: 25vh;
        z-index: 17;
        border-radius: 10px;
        box-shadow: 1px 1px 12px 2px rgba($color: $primaryDark, $alpha: .1);
        min-height: 50vh;
        margin: auto;
        background-color: rgba($color: white, $alpha: 1);
    }

    /* input {} */

    button {
        width: 100%;
        background-color: rgba($color: $accentColor, $alpha: .7) !important;
        border-radius: 100px;
        border: 0;
        color: $primaryDark;
        box-shadow: none;
        outline: none;
        outline-offset: 0;
    }

    button.rs {
        width: 100%;
        background-color: rgba($color: $greyLight, $alpha: .7) !important;
        border-radius: 100px;
        border: 0;
        color: $primaryDark !important;
        box-shadow: none;
        outline: none;
        outline-offset: 0;
    }
}



/////////////////// DASHBOARD  //////////////////////////////////////////
/// 

aside.aside {

    background: $primaryDark !important;

    .menu-list a {
        transition: .5s !important;
    }

    .menu-list a:hover {
        transition: .5s !important;
        background-color: rgba($color: $primaryColor, $alpha: .1);
    }

    .menu-list a.is-active {
        transition: .5s !important;
        background-color: rgba($color: $primaryColor, $alpha: .3);
    }
}

#imgaddbtn {
    transition: .5s;
    margin-right: 10px !important;
}

#imgaddbtn:hover {
    transition: .5s;
    transform: scale(0.96);

}

.imgsadded {
    transition: 0.5s;
    margin-right: 6px !important;
}

.imgsadded:hover {
    transition: .5s;
    transform: scale(.98);
}

.equipment-tag {

    transition: .5s !important;
}


.equipment-tag:hover {

    background-color: rgba($color: $accentColor, $alpha: .3);
}

.equipment-tag.is-active {

    background-color: $accentColor !important;
}


//// Boutique

.top-home-items-boutique {
    padding: 45px 0;

    .top-home-item {
        transition: 0.5s;
        cursor: pointer;
        padding: 7px;
        width: 24%;
        max-width: 24% !important;
        //height: 250px;
        background-color: white;
        border-radius: 5px;
        box-shadow: 1px 1px 12px 2px rgba(0, 0, 0, 0.034);

        .img {
            height: 200px;
            border-radius: 5px;
        }
    }

    .top-home-item:hover {

        transition: 0.5s;
        scale: .95;
        z-index: 10;
    }

}


@media only screen and (max-width: 700px) {
    .top-home-items-boutique {
        padding: 45px 0;

        .top-home-item {
            transition: 0.5s;
            cursor: pointer;
            padding: 7px;
            width: 95%;
            max-width: 95% !important;
            //height: 250px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 1px 1px 12px 2px rgba(0, 0, 0, 0.034);

            .img {
                height: 200px;
                border-radius: 5px;
            }
        }

        .top-home-item:hover {

            transition: 0.5s;
            scale: .95;
            z-index: 10;
        }

    }


}


//////////////////////// SINGLE PROPERTY
/// 


.reservebox {

    min-height: 95%;

    input {
        outline-color: $primaryColor !important;
        border-radius: 150px;
        height: 45px !important;
        font-size: 17px;
        outline: none !important;
        border: 0;
        width: 100%;
        background-color: #8080800f;

    }

    input::placeholder {

        align-content: center !important;
    }
}











//////////////////// ABOUT /////////////////
/// 
/// 


#header-banner-about {

    height: 40vh !important;
    background-size: cover;
    background-position: center;

    // background-attachment: fixed !important;

    .overlay {
        position: absolute;
        height: 40vh;
        width: 100%;
        z-index: 1;
        //background:linear-gradient(to bottom,  rgba($color: rgb(4, 34, 39), $alpha: 0.8), rgba($color: $primaryLight, $alpha: 0.2));
        background: rgba($color: rgb(8, 34, 32), $alpha: 0.7);
        background-position: center;
        background-size: cover;
    }

    .contains {
        padding-top: 18vh !important;
        z-index: 5 !important;

        .search {
            width: 80% !important;
            backdrop-filter: blur(5px);
            box-shadow: 2px 3px 25px 2px rgba(0, 0, 0, 0.226);
            border-radius: 5px;
        }
    }

    #search {
        width: 100% !important;
        backdrop-filter: blur(8px);
        box-shadow: 2px 3px 25px 2px rgba(0, 0, 0, 0.295);
        border-radius: 100px;
        min-height: 65px !important;
    }


    .slide-top {
        .item {
            .bottom-title {
                transition: 0.5s;
                position: absolute;
                border-radius: 0 0 5px 5px;
                bottom: 0;
                height: 60px;
                width: 100%;
                backdrop-filter: blur(10px);
            }

            .overlay2 {
                transition: 0.5s;
                width: 100%;
                height: 43vh;
                background: rgba($color: $primaryDark, $alpha: 0.3);
            }

            transition: 0.5s;
            min-height: 43vh;
            border-radius: 5px;
            cursor: pointer;
        }

        .item:hover {
            transition: 0.5s;
            transform: scale(0.995);
        }
    }

}



///////////////////////////////// ASSISTANCE  /////////////////////////////
/// 

#header-banner-assistance {

    height: 51vh !important;
    background-size: cover;
    background-position: center;

    // background-attachment: fixed !important;

    .overlay {
        position: absolute;
        height: 51vh;
        width: 100%;
        z-index: 1;
        //background:linear-gradient(to bottom,  rgba($color: rgb(4, 34, 39), $alpha: 0.8), rgba($color: $primaryLight, $alpha: 0.2));
        background: rgba($color: rgb(8, 34, 32), $alpha: 0.7);
        background-position: center;
        background-size: cover;
    }

    .contains {
        padding-top: 10vh !important;
        z-index: 5 !important;

        .search {
            width: 80% !important;
            backdrop-filter: blur(5px);
            box-shadow: 2px 3px 25px 2px rgba(0, 0, 0, 0.226);
            border-radius: 5px;
        }
    }

    #search {
        width: 41% !important;
        backdrop-filter: blur(8px);
        box-shadow: 2px 3px 25px 2px rgba(0, 0, 0, 0.295);
        border-radius: 100px;
        min-height: 65px !important;

        @media only screen and (max-width: 768px) {
            width: 90% !important;
        }
    }


    .slide-top {
        .item {
            .bottom-title {
                transition: 0.5s;
                position: absolute;
                border-radius: 0 0 5px 5px;
                bottom: 0;
                height: 60px;
                width: 100%;
                backdrop-filter: blur(10px);
            }

            .overlay2 {
                transition: 0.5s;
                width: 100%;
                height: 43vh;
                background: rgba($color: $primaryDark, $alpha: 0.3);
            }

            transition: 0.5s;
            min-height: 43vh;
            border-radius: 5px;
            cursor: pointer;
        }

        .item:hover {
            transition: 0.5s;
            transform: scale(0.995);
        }
    }

}

.home-resume {
    width: 55% !important;
}




////////// SEARCH ASSISTANCE
/// 

#show-result-ass {

    position: absolute;
    max-height: 20vh;
    overflow-y: auto;
    z-index: 999999 !important;
    min-width: 100%;

    a h5 {
        font-size: 10pt !important;
        font-weight: 600 !important;
    }

    a:hover {
        background-color: $greyLight !important;
    }

    hr {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }
}


#show-result-ville {

    position: absolute;
    max-height: 19vh !important;
    overflow-y: auto;
    z-index: 999999 !important;

    a h5 {
        font-size: 10pt !important;
        font-weight: 600 !important;
    }

    a:hover {
        background-color: $greyLight !important;
    }

    hr {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }
}


//////// VERSION 2


#myentete {

    width: 100%;
    height: 450px;
    position: relative;

    #my-header-video {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 0;
        min-width: 100%;
        min-height: 60vh;
    }

    /* #imgflot {} */

    .overlay {
        position: absolute;
        z-index: 1;
        top: 0;
        width: 100vw;
        height: 450px;
        background: linear-gradient(to left, rgba($color: $primaryDark, $alpha: .83) 40%, rgba($color: $primaryDark, $alpha: .45));
    }
}

@media only screen and (min-width: 1450px) {

    #myentete {

        width: 100%;
        height: 470px;


        .overlay {

            height: 470px;
        }
    }
}



@media only screen and (max-width: 700px) {
    #myentete>div.column.is-7-desktop.is-12-mobile.is-flex.is-flex-direction-column.is-justify-content-center.pb-0.pl-6>p {
        width: 100% !important;
        padding-right: 0 !important;
    }

    #searchAdr {
        margin-top: 0.5rem !important;
    }

    #myentete>div.column.is-7-desktop.is-12-mobile.is-flex.is-flex-direction-column.is-justify-content-center.pb-0.pl-6>div>form>div>div.column.p-0.m-0.buttons>button {
        margin-top: 0.5rem !important;
    }

    #myentete>div.column.is-7-desktop.is-12-mobile.is-flex.is-flex-direction-column.is-justify-content-center.pb-0.pl-6 {

        padding-left: 1rem !important;
    }

    #myentete>div.column.is-7-desktop.is-12-mobile.is-flex.is-flex-direction-column.is-justify-content-center.pb-0.pl-6>h1 {
        width: 100% !important;
        text-align: left !important;
        padding-left: 0 !important;
        // padding-top: 15vh;
    }

    #myentete {

        height: 95vh !important;

        .overlay {
            height: 95vh !important;
            background: linear-gradient(to bottom, rgba($color: $primaryDark, $alpha: .98), rgba($color: $primaryDark, $alpha: .3));
        }

        background-position: center !important;

        #my-header-video {

            bottom: 0;
            left: 0 !important;
            z-index: 0 !important;
            //min-width: 495vw !important;
            min-height: auto !important;
        }
    }


}



///// NEW MENUUUUU
/// 
/// 


#menu-2 {

    #menu-items {
        margin-top: 16%;
        width: 60%;
    }

    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 100 !important;

    background-size: cover;
    background-position: center;
    background-color: $primaryDark;
    background-repeat: no-repeat;

    .menu-item {
        .active {
            border: 3px solid $accentColor !important;
        }

        h3 {
            font-size: 18px !important;
        }

        border: 3px solid $primaryLight;
        cursor: pointer !important;
        background-color: rgba($color: $primaryColor, $alpha: .3);
        transition: .7s;
        min-width: 32% !important;
        margin-top: 10px;
        margin-left:8px;
        margin-right: 8px;
    }

    .menu-item:hover {
        border: 3px solid $primaryLight;
        cursor: pointer !important;
        background-color: rgba($color: $primaryColor, $alpha: .8);
        transition: .5s;
    }

    .overlay {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        background-color: rgba($color: $primaryDark, $alpha: 0.5);
    }
}