/*Animations*/
.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}



.fadein{
opacity: 0;
}   


/* End Animations*/






/***************************
    CUSTOM SCROLL BAR
****************************/

 header{
    scroll-behavior: smooth;
    
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root{
    --white:#FFF;
    --black:#232323;
    --lite:rgba(255,255,255,0.6);
    --gray:rgba(1,1,1,0.6);
    --dark:#3c3d3c;
    --primary:linear-gradient(145deg,#ff2f09,#c24a4e);
    --primary_dark:#970104;
    --primary_lite:#c24a4e;
    --secondary:#000a17;
    --default_font:'Ysabeau Infant', sans-serif;
    --title_font:'Outfit', sans-serif;
}

::-webkit-scrollbar {
    height: 12px;
    width: 8px;
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: gray;
    -webkit-box-shadow: 0px 1px 2px var(--dark);
}

::-webkit-scrollbar-corner {
    background: var(--dark);
}



/***************************
            DEFAULT
****************************/
body{
    margin:0;
    overflow-x:hidden !important;
    
}

a{
    text-decoration:none !important;
    min-width: fit-content;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
}

a, button{
    transition:0.5s;
}

em{
    font-style:normal;
    color: #d89762!important;
}

a, p, .btn{
    font-size:17px;
}

p{
    line-height:1.5em;
   font-family: Outfit;
   
}

a, button, input, textarea, select{
    outline:none !important;
}

fieldset{
    border:0;
}

h1, h2, h3, h4, h5, h6{
    font-family: Cinzel!important;
}

.title, .sub_title{
    font-family:var(--title_font);
    font-weight:400;
    margin:0;
}

.flex, .fixed_flex{
    display:flex;
}

.flex_content{
    width:100%;
    position:relative;
}

.padding_1x{
    padding:1rem;
}

.padding_2x{
    padding:2rem;
}

.padding_3x{
    padding:3rem;
}

.padding_4x{
    padding:4rem;
}

.big{
    font-size:3.5em;
}

.medium{
    font-size:2em;
}

.small{
    font-size:1.3em;
}

.btn{
    padding:1rem;
    border-radius:5px;
    color:var(--white);
    position:relative;
    border:0;
    text-align:center;
    
}

.btn_3{
    display:block;
    background-color:0;
    color:white!important;
    position:relative;
    font-family:var(--default_font);
    font-weight:400;
    text-transform:uppercase;
}

.btn_3:before{
    content:"";
    border-radius:50%;
    background-color:#94653f71;
    position:absolute;
    left:0;
    top:50%;
    width:40px;
    height:40px;
    transition:0.5s;
    transform:translate(0%, -50%);
}

.btn_3:after{
    content:"\f178";
    font-family:"FontAwesome";
    margin-left:5px;
}

.btn_3:hover:before{
    border-radius:40px;
    width:100%;
}

@media (max-width:920px){
    .flex{
        flex-wrap:wrap;
    }
    
    .padding_1x, .padding_2x, .padding_3x, .padding_4x{
        padding:1rem;
    }
    
    .big{
        font-size:1.8em;
    }
    
    .medium{
        font-size:1.3em;
    }
    
    .small{
        font-size:1.1em;
    }
    
    .btn{
        padding:0.5rem 1rem;
    }
    
    a, p, .btn{
        font-size:12px;
    }
}

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

ul{
    padding:0;
    margin:0;
}

.slider .title{
    font-weight:400;
}

.slider li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    transition: clip .7s ease-in-out, z-index 0s .7s;
    clip: rect(0, 100vw, 100vh, 100vw);
    display:flex;
    align-items:center;
    justify-content:left;
}

.slider li:nth-child(1){
    background:linear-gradient(to right, rgba(1, 1, 1, 0.945) 10%, rgba(1, 1, 1, 0.911) 20%, rgba(255, 255, 255, 0) 100%), url("../img/slider-1.jpg");
    background-size: cover;
    background-position:center;
}

.slider li:before{
    content:"";
    position:absolute;
    top:10%!important;
    right:0;
    width:100px;
    height:100px;
    
    background-size:100% 100%;
    transition-delay: 1s;
    transform: rotate(-90deg);
    z-index:1;
}

.slider li:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:300px;
    height:300px;
    background-image:url("https://i.postimg.cc/KjKbwDfR/slider-shape-2.png");
    background-size:100% 100%;
    transform:rotate(360deg);
	transition: all 1.5s cubic-bezier(0,0,.2,1);
    z-index:1;
    background-position:center left;
}

.slider li:nth-child(2){
    background:linear-gradient(to right, rgba(1, 1, 1, 0.945) 10%, rgba(1, 1, 1, 0.911) 20%, rgba(255, 255, 255, 0) 100%), url("../img/slider-2.jpg");
        background-size: cover;
    background-position:top left;
}

.slider li:nth-child(3){
    background:linear-gradient(to right, rgba(1, 1, 1, 0.774) 10%, rgba(1, 1, 1, 0.692) 20%, rgba(255, 255, 255, 0) 100%), url("../img/slider-3.jpg");
        background-size: cover;
    background-position:center;
}

.slider article{
    width:60%;
    margin-top:4rem;
    color: #fff;
    z-index:11;
}

.slider h3 + p {
    display: inline-block;
    color: var(--lite);
    font-weight:300;
}

.slider h3, .slider h3 + p, .slider p + .btn, li:after{
    opacity: 0;
    transition: opacity .7s 0s, transform .5s .2s;
    transform: translate3d(0, 50%, 0);
}

li.current h3, li.current h3 + p, li.current p + .btn, li.current:after {
    opacity: 1;
    transition-delay: 1s;
    transform: translate3d(0, 0, 0);
}

.slider li:before{
    transition: 0.5s;
    top:-250px !important;
}

li.current:before{
    transition-delay: 1s;
    transform: rotate(-90deg);
    top:-20px !important;
}

li.current {
    z-index: 1;
    clip: rect(0, 100vw, 100vh, 0);
}

li.prev {
    clip: rect(0, 0, 100vh, 0);
}

.slider aside {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    text-align: center;
    z-index: 10;
}

.slider aside a {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    background-color: var(--white);
    margin: 0 0.2rem;
    transition: transform .3s;
}

.slider em{
    background: var(--primary);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

a.current_dot {
    transform: scale(1.4);
    background:#925c2f !important;
}

@media screen and (max-width: 920px) {
    header{
        height:70vh;
        position:relative;
    }
    
    .cs-down{
        display:none;
    }

    .slider{
        height:70vh;
    }
    
    .slider article{
        width:100%;
        margin-top:2rem;
    }
    
    .slider li:nth-child(2){
        background-position:top center;
    }
    
    .slider li:nth-child(3){
        background-position:top center;
    }
    
    li.current:before{
        top:-30px;
        right:-10px;
    }
}


.navbar{
    background-color: #00000054;
    box-shadow: none;
    position: relative;
    z-index: 100;
}

.navbar li{
    margin: 0 10px;
}

.navbar li a{
    font-family: Cinzel;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.navbar li a:hover{
    color: #b1815a;
}


.navbar li a.active{
    color: #b1815a!important;
}

#aboutandrooms{
    background: url('../img/shape-2.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.about-hidden-box{
    margin: 25px 0;
    border-left: 2px solid #925c2f;
}

.hidden-p{
    
    display: none;
}

.about-hidden-box:hover{
    background: rgb(146,92,47);
background: linear-gradient(90deg, rgba(146,92,47,1) 0%, rgba(255,255,255,1) 100%);

    transition-duration: 0.3s;
}

.about-hidden-box:hover h2{
    color: white!important;
    transition-duration: 0.3s;

}

.review-box{
    width: 360px;
    padding: 0 25px;
}


.rooms-box{
    
    color: black;
    padding: 37px 20px;
}

.btn-1{
    width: 240px;
    background-color: #b1815a;
    color: white;
    font-family: Outfit;
    border: 1px solid #b1815a;
    padding: 10px 20px;
}

.btn-1:hover{
    background-color: white;
    color: #925c2f;
    border: 1px solid #b1815a;
}

.hidden-desc-1,.hidden-desc-2,.hidden-desc-3,.hidden-desc-4{

    display: none;
    padding: 4%;
    color: white;
    margin-top: 20px;
    
}

.item-1:hover .hidden-desc-1,.item-2:hover .hidden-desc-2,.item-3:hover .hidden-desc-3,.item-4:hover .hidden-desc-4{
    display: block!important;
    
    background-color: #9b7b61;
    position: relative;
    z-index: 100;
    transition-duration: 0.5s;

}

.item-1:hover .item-1-img,.item-2:hover .item-2-img,.item-3:hover .item-3-img,.item-3:hover .item-4-img{
    filter: brightness(40%)!important;

}

.item-1:hover .room-title-1,.item-2:hover .room-title-2,.item-3:hover .room-title-3,.item-4:hover .room-title-4{
    
    margin-top: -51%!important;

    position: relative;
    z-index: 100;

    transition-timing-function: ease;
    transition-duration: 0.5s;

}

#banner-service{
    background: url('../img/wines-banner.jpg')rgba(0,0,0,0.6);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 80vh;
    display: flex;
    align-items: center;
    
}

.menu-grid{
    background: url('../img/menu-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-blend-mode: multiply;
    height: 180vh;
    
}



#testimonials{
    background-size: cover;
background-color: #ffffff;
padding: 100px 0;
}

.review-boxes{
    background-color: #e9e5e5ec;
    color: #000000;
    padding: 0 25px;
    padding-top: 60px;
    
    
    transition-duration: 0.5s;
    height: 400px;

}

.review-boxes:hover{
    background-color: #ffffff;
    transition-duration: 0.5s;
}


.footer-info{
    background: url('../img/footer-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}


    .navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

@media only screen and (max-width: 920px) {
    .navbar {
      background-color: black;
    }
    .about-right{
        margin-left: 0%!important;
    }
    #rooms{
        padding: 25px 0!important;
    }
    .img-no-display{
        display: none;
    }

    .review-boxes{
        padding: 10px;
        height: auto;
        margin: 2vh;
    }
  }


  .navbar-2{
    background-color: white!important;
  }

  .navbar-2 .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")!important;
}


.navbar-2 li a{
    color: rgb(146, 92, 47)!important;
}

.navbar-2 li a:hover{
    color: black!important;
}

.navbar-2 li a.active{
    color: black!important;
}

#room-head,#gallery-head,#about-head,#contact-head{
    background-color: #f9f7f1;
    height: 250px;
    display: flex;
    align-items: center;
}

.room-desc-row{
    background-color:#a78c5a!important ;
    margin-top: -100px;
    width: fit-content;
    position: relative;
    z-index: 100;
    padding-top: 10px;
    height: 50px;
    color: white;
    padding-left: 10px;
    padding-right: 20px;
    font-family: Outfit;
}

.room-desc-text{
    margin-top: 75px;
    color: #925c2f;
    padding: 10px;
    
}

.room{
    transition-duration: 0.4s;
}
.room-img{
    transition-duration: 0.4s;

}

.img-wrapper{
    overflow: hidden;
}


.room:hover{
    background-color: #925c2f;
    transition-duration: 0.4s;
}

.room:hover p{
    color: white;
}

.room:hover .room-img{
    transform:scale(1.2);
    transition-duration: 0.4s;
    filter: brightness(80%)!important;
}

.fa-icon{
    display: none!important;
}

.rooms-btn:hover .fa-icon{
    display: inline!important;
    transition-duration: 0.4s!important;
}

