@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Outfit:wght@100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Outfit:wght@100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jacques+Francois+Shadow&display=swap');
* {
    padding: 0;
    margin: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

::selection{
    background-color: #AB8A62;
    color: white;
}
a{
    text-decoration: none;
}
.navbar {

    -webkit-box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
    box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
    -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    overflow-x: hidden;
    background-color:#1B3A56;

}
.nav-link img {
    width: 25px;
    height: 15px;
}
.navbar-nav a {
    margin-left: 40px;
    text-decoration: none;
    padding: 10px;
    font-size: 22px;
    letter-spacing: 1px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    color: #e9bb82;
    border-bottom: 1px solid transparent;
}

.navbar-nav a:hover {
    color: #F9D883;
}

.navbar-nav a.active {
    color: #F9D883!important;
}
 .navbar-toggler{
    background-color: #F9D883 !important;
}
:root {
    /* Background Color */
    --primary-color: #212122b9;
    --secondary-color: #a3a190;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --bg-black: #000;

    /* Text Style */
    --one: "Barlow Condensed", sans-serif;
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Oswald', sans-serif;
    --tertiary-font: 'Cinzel', serif;
    --fourth: 'Cormorant Garamond', serif;
    --five: 'Outfit', sans-serif;
    --six: 'Satisfy', cursive;
    --seven: "Playfair Display", serif;
    --eight:"Jost", sans-serif;
    --nine: "Forum", serif;
    --primary-text: #212122b9;
    --secondary-text: #201f1f;
    --text-white: #fff;
    --text-black: rgb(79, 79, 79);
    --text-gray: #e4e4e4;
}

  .btn2 {
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    display: inline-block;
    letter-spacing: 1px;
    transition: all .3s;
    border: none;
    font-family: Arial, sans-serif;
    font-weight: 500;
    color: #ffffff;
    background-color: #AB8A62;
    cursor: pointer;
  }
  
  .btn2:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .btn2:active {
    transform: scale(0.95);
    box-shadow: none;
  }
  
  .btn2::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
  }
  
  .btn2::after {
    background-color: #AB8A62;
  }
  
  .btn2:hover::after {
    transform: scaleX(1.2) scaleY(1.4);
    opacity: 0;
  }
  h1 {
    font-size: 2.75rem;
    line-height: 4.25rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    text-transform:capitalize;
    font-family: "Forum", serif;
}
h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var( --primary-text);
    text-transform: capitalize;
    font-family:"Forum", serif;
    color: white;
}
h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-text);
    font-family: var(--secondary-font);
}

h3 span {
    color: var(--secondary-text);
}
h4{
    color: #625859;
    font-size: 20px;
}

h5 {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--secondary-text);
    margin-bottom: .9375rem;
    margin-top: .9375rem;
    font-weight: 600;
    font-family: var(--secondary-font);

}

h6 {
    color: var(--text-white);
    font-weight: 500;
    font-family: var(--secondary-font);
}
p{
    
    font-size: 17px;
}
  section {
    padding: 120px 0;
    position: relative;
}


.footer_wrapper {
    background-color:#1B3A56 !important;
     background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../img/footer_bottom_img.png') !important;
}

.footer_wrapper h5 {
    color:white;
    margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
    margin-bottom: .5rem;
    list-style: none;
}

.footer_wrapper .contact-info li a{
    color:white
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
    color: white;
    font-size: 14px;
    padding-left:1.5rem;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    
}

.footer_wrapper .link-widget li a:hover {
    margin-left: .625rem;
    color:#CDA45E;
}

.footer_wrapper .social-network a {
    width: 2.1rem;
    height: 2.1rem;
    margin: .6rem;
    line-height:2rem;
    font-size: .875rem;
    display: inline-block;
    border: .125rem solid var(--text-gray);
    color: var(--text-gray);
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
    background-color:#AA8453;
    border-color: #CDA45E;
    color: var(--text-white);
    box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
    transform: translateY(-0.1875rem);
}

.footer_wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.footer_wrapper .copyright-section {
    background-color:  #142e46;
    padding: 1.25rem 0 .3125rem;
    color: white;
    text-align: center;
}


.footer_wrapper .copyright-section a {
    color: var(--secondary-text);
}
.banner_wrapper {
    height:80vh;
}

.banner_wrapper .swiper {
    width: 100%;
    height: 100%;
}

.banner_wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner_wrapper .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0.5;
    z-index: 0;
}
.banner_wrapper .swiper-slide::before {
    background: #272535; 
}
.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
    width: .8375rem;
    height: .8375rem;
    margin-bottom: 20px;
    background-color: #AA8453;
    border: .0625rem solid #AA8453;
}

.banner_wrapper .swiper .slide-caption {
    height: 100%;
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_wrapper .swiper .slide-caption p {
    max-width: 37.5rem;
    margin: 0 auto;
    color: var(--text-white);
}
.banner_wrapper .swiper-slide h6{
    font-size: 1.6rem;
    font-weight: 400;
    color: var( --primary-text);
    margin-bottom: 1.25rem;
    text-transform: capitalize;
    font-family:"Forum", serif;
    color: white;
}
.banner_wrapper .swiper-slide h5{
    font-size:18px;
    letter-spacing: 7px;
    color: white !important;
    font-weight: 500;
    font-family: "Playfair Display", serif;
    margin: 60px 0;
        
}
.banner_wrapper .swiper-slide h1{
    font-size:100px;
    letter-spacing: 8px;
    text-shadow: #201f1f 3px 3px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    margin: 60px 0;
        
}
.swiper-pagination .swiper-pagination-bullet{
    color: #CDA45E !important;
    background-color: #CDA45E;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    margin: 0px;
}
.with-svg-item.svg-right-side {
    left: auto;
    right: 0;
    margin-top: -4.5rem;
    margin-right: -3rem;
}
.with-svg-item {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    margin-top: 2rem;
}


.rooms {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #1B3A56;
    color: #fff;
}

.rooms .horizontal-line1 {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.rooms .line1, .rooms .line2 {
    width: 50px;
    height: 1px;
    margin-right: 10px;
    margin-left: 10px;
}

.rooms .text1 h6 {
    text-align: center;
    color: #000000;
    line-height: 1;
    margin: 0;
    letter-spacing: 4px;
    font-family: 'Lora', serif;
}

:root {
    --font-principal: "Roboto";
    --gradient-bg: linear-gradient(30deg, rgba(0, 0, 0, .95) 50%, rgba(0, 0, 0, .9) 50.1%);
    --color-primary: #ffeba7;
    --color-light: #fff;
    --color-dark: #000;
}

.rooms .swiper {
    width: 100%;
    height: 600px;
    margin-right: 0;
    align-items: center;
}

.rooms .swiper-wrapper {
    display: flex;
    align-items: center;
    counter-reset: list-slider;
}

.rooms .swiper-slide {
    position: relative;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    counter-increment: list-slider;
    font-size: 18px;
    opacity: 1;
    transition: opacity 600ms ease;
}

.rooms .swiper-slide::before {
    content: "0" counter(list-slider);
    display: block;
    position: absolute;
    width: 50px;
    left: 0;
    top: 0;
    font-size: 100px;
    font-weight: 600;
    line-height: 0.5;
    font-family: var(--font-principal);
    color: white;
    transform: scale(0.5);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transition: all 350ms ease;
}

.rooms .swiper-slide-active::before {
    opacity: 0.4;
    transform: scale(1);
}

.rooms .swiper-slide-active .c-swiper__text {
    opacity: 1;
}

.rooms .swiper-slide-active .c-swiper__text .c-swiper__title,
.swiper-slide-active .c-swiper__text .c-swiper__link {
    transform: translateY(0);
}

.rooms .swiper-slide-prev {
    opacity: 0;
}

.rooms .swiper-slide-next {
    opacity: 0.5;
}

.rooms .c-swiper__text {
    opacity: 0;
    width: 300px;
    height: 250px;
    position: absolute;
    top: 25%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transition: opacity 350ms ease;
}

.rooms .c-swiper__text .c-swiper__title {
    max-height: 100%;
    font-size: 40px;
    font-weight: 600;
    text-shadow: 1px 1px 2px var(--color-dark);
    text-align: left;
    pointer-events: none;
    transition: transform 500ms ease;
    color: #fff;
    transition-delay: 100ms;
    transform: translateY(-25%);
    z-index: 1;
}

.rooms .c-swiper__text .c-swiper__link {
    position: relative;
    max-width: 100px;
    margin-left: 24px;
    color: var(--color-light);
    font-size: 15px;
    text-decoration: none;
    transform: translateY(25%);
    transition: transform 500ms ease;
    transition-delay: 200ms;
}

.rooms .c-swiper__text .c-swiper__link::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    background-color: var(--color-light);
}

.rooms .c-swiper__image-container {
    width: 90%;
    height: 80%;
    overflow: hidden;
}

.rooms .c-swiper__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rooms .swiper-pagination-bullet {
    width: 36px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 0;
}

.rooms .text-box {
    background: white;
    position: relative;
    padding: 20px;
    margin-top: -80px;
    border-radius: 0px 0px 20px 20px;
    text-align: center;
}

.rooms .horizontal-line2 {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.rooms .line2 {
    width: 50px;
    height: 1px;
    background-color:  #1B3A56;
    margin-right: 10px;
    margin-left: 10px;
}

.Slogan{
    position: relative;
}
.Slogan .box-text{
    position:static;
    padding: 30px 10px;
    background-color: #1B3A56;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    margin-left: -15rem;
    margin-top: 5rem;
}
.facilitiess{
    background: url('../img/fc-bg.png') rgba(0, 0, 0, 0.007);
    background-position: center 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    /* background-attachment: fixed;  */
}
.facilitiess .fc-iconss{
    border: #aa845362 1px solid;
    padding: 20px 30px;
    background: url('../img/9c569e73-42dc-11ed-80d9-cc7941c54fac_710bf382-63ea-11ed-80da-ceea4a5f67d1.jpg') rgba(0, 0, 0, 0);
    background-position: center 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}
.facilitiess .fc-iconss img{
    width: 50px;
}
.facilitiess .fc-iconss h6{
    color:  #222222c2;
    margin: 10px 0;
    font-size: 23px;
    font-weight: 500;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 1px;
}

.Testimonials {
    background: url('../img/') rgba(0, 0, 0, 0.021);
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
   background-attachment: none;
}

/* Page Rooms */
.title-head{
    padding: 100px 0px !important;
    margin: 0 !important;
    color: white;
    font-size:80px;
    font-style: italic;
    letter-spacing: 6px;
    font-weight: 500 !important;
    font-family: "Baskervville SC", serif;
  }
  .Rooms-head{
    background: url('../img/gggg.jpg')rgba(0, 0, 0, 0.425);
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
  }
.Restaurant-head{
     background: url('../img/restaurant/bbbbbbb.avif')rgba(0, 0, 0, 0.425);
    background-position: center 150%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
}
  .room-card{
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  }
  .card-body p{
    font-size: 16px;
    font-family:"Jost", sans-serif;
  }
  .card-title{
    font-size: 20px;
    font-family:"Jost", sans-serif;
    line-height: 2.25rem;
  }
  .card-body hr {
    opacity: 0.6;
    color: #00000034;
  }
  .card-body p i {
    font-size: 15px;
    color: #AB8A62;
  }

.rooms .card-body .btn2{
    width: 100%;
    padding: 6px 10px;
    text-align: center;
}
.About-head{
    background: url('../img/297733644.jpg')rgba(0, 0, 0, 0.425);
    background-position: center 150%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
}
.Gallery-head{
    background: url('../img/323102.webp')rgba(0, 0, 0, 0.425);
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
  }
  .transition {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 0.5s;
  }
  
  .thumb {
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
   
  }
  
  .read-btn {
    background: none;
    border: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    letter-spacing: 2px;
    font-weight: bold;
     transition: all 0.5s;
  }

  .Contact-head{
    background: url('../img/ced6ab3d-39ae-5e87-a1de-4062acc5e5ae.jpg')rgba(0, 0, 0, 0.425);
    background-position: center 80%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
  }


  .icons-inff{
    border: #00000052 1px solid;
    padding: 15px 0;
}
.icons-inff i{
font-size: 30px;
color: #1B3A56;
}
.icons-inff h6{
    color: #000000e0;
    font-size: 19px;
}
.icons-inff p{
    color: #000000e0;
}
.icons-inff:hover{
    background-color: #1B3A56;
    transition-duration: 0.5s;
}
.icons-inff:hover h6, 
.icons-inff:hover p, 
.icons-inff:hover i {
    color: white;
}



@media (max-width: 1399px){
   
    .Slogan{
        margin-bottom: 0px !important;
    }
    .Slogan .box-text{
        position:static;
        padding: 10px 5px;
        background-color: #1B3A56;
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        margin-left: -10rem;
        margin-top: -1.5rem;
    }
}

@media (max-width: 1199px){
   
    .Slogan{
        margin-bottom: 0px !important;
    }
    .Slogan .box-text{
        position:static;
        padding: 10px 5px;
        background-color: #1B3A56;
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        margin-left: -10rem;
        margin-top: -4.5rem;
    }
}

@media (max-width: 991px){
    .Slogan .box-text{
        position:relative !important;
        padding: 10px 5px;
        background-color: #1B3A56;
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        margin-left: 0rem;
        margin-top: -1.5rem;
    }
}
@media (max-width: 430px){
    .banner_wrapper .swiper-slide h1{
        font-size:70px;
        letter-spacing: 8px;
        text-shadow: #201f1f 3px 3px;
        font-weight: 400;
        font-family: "Playfair Display", serif;
        margin: 60px 0;
        line-height: 4.55rem;
    }
    h1 {
        line-height: 2.55rem;
    }
    .container-fluid {
        width: 100% !important;
    }


    .title-head{
        padding: 100px 0px !important;
        margin: 0 !important;
        color: white;
        font-size:50px;
        font-style: italic;
        letter-spacing: 6px;
        font-weight: 500 !important;
        font-family: "Baskervville SC", serif;
      }
      .Rooms-head{
        background: url('../img/gggg.jpg')rgba(0, 0, 0, 0.425);
        background-position: center 50%;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        background-attachment: none;
      }
    .About-head{
        background: url('../img/297733644.jpg')rgba(0, 0, 0, 0.425);
        background-position: center 150%;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        background-attachment: none;
    }
    .Gallery-head{
        background: url('../img/323102.webp')rgba(0, 0, 0, 0.425);
        background-position: center 50%;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        background-attachment: none;
      }
    
      .Contact-head{
        background: url('../img/ced6ab3d-39ae-5e87-a1de-4062acc5e5ae.jpg')rgba(0, 0, 0, 0.425);
        background-position: center 80%;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        background-attachment: none;
      }
      .Restaurant-head{
     background: url('../img/restaurant/bbbbbbb.avif')rgba(0, 0, 0, 0.425);
    background-position: center 150%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: none;
}
.img-resto .col-3{
    padding: 3px;
}
}



/* animation */
.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;
  }
  .fadeinup{
    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,.active-up{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
  }
  .fadein{
  opacity: 0;
  }


  /* Basic calendar styling */
.calendar-container {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
    max-width: 350px; /* Adjust as needed */
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendar-header button {
    background: none;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.calendar-header h4 {
    margin: 0;
    font-size: 1.2em;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-day {
    padding: 8px 5px;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    position: relative;
}

.calendar-day.day-name {
    font-weight: bold;
    background-color: #f2f2f2;
    cursor: default;
}

.calendar-day.empty {
    background-color: #f9f9f9;
    cursor: default;
    border-color: #f9f9f9;
}

.calendar-day.has-price .price-tag {
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    font-size: 0.7em;
    color: #555;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    padding: 1px 0;
}

.calendar-day.past-date,
.calendar-day.unavailable {
    background-color: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.selected {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.calendar-day.selected-start,
.calendar-day.selected-end {
    background-color: #0056b3; 
    color: #fff;
}

.calendar-day.in-range {
    background-color: #aed6f1; 
    color: #333;
}

.booking-details {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.booking-details p {
    margin-bottom: 5px;
    font-size: 1.1em;
    color: #000;
}

.total-price {
    font-weight: bold;
    color: #28a745; 
}

.book-now-btn {
    background-color: #28a745; 
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    width: 100%;
}

.book-now-btn:hover:not(:disabled) {
    background-color: #218838;
}

.book-now-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
.room-listing-title{
    font-size: 25px;
    margin: 20px 0px;
}