@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');
html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}
body{
    color:white!important;
}

.container{
    max-width: 1400px;
}

h1,h2,h3,h4,h6{
    font-family: Cormorant;
    font-weight: 500!important;
}
p{
    font-family: Raleway;
    color: rgb(173, 173, 173);
    font-size: 16px;
}

.navbar{
    background-color: #211c18;
   
}

.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%28181, 105, 83%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")!important;
}

@media only screen and (min-width: 1200px) {
    .navbar {
      padding: 0 45px;
    }
  }

.navbar li a {

    color: white;
    font-family: Raleway;
    font-size: 14px;
    margin: 0 15px;
}

.navbar li a:hover{
    color: rgb(190, 84, 13)!important;
}

.dropdown-menu li a{
    color: rgb(190, 84, 13)!important;
}


.dropdown-toggle.active{
    color: white!important;
}

.dropdown-item{
    width: 50px!important;
}
.dropdown-menu {
    --mdb-dropdown-border-radius: 0!important;
    --mdb-dropdown-zindex: 1000;
    --mdb-dropdown-min-width: 5rem;
}

.navbar li a.active {

    color: rgb(190, 84, 13)!important;
    font-weight: 600;
}



.navbar-2{
  background: rgb(219,219,219);
background: linear-gradient(90deg, rgba(219,219,219,1) 0%, rgba(172,132,91,0.8743872549019608) 100%, rgba(251,252,252,1) 100%);
padding: 5px 45px!important;
 
}



#main-header{
    margin: 40px 0;
    background: url('../img/main-header.jpg');
    animation: animatedBackground 2.5s  ease-in forwards  ;
    background-position: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 850px;
    padding-left: 20px;
}

@media only screen and (max-width: 600px) {
    #main-header {
      margin: 0;
      height: 750px;
    }
  }

@keyframes animatedBackground {
    from {
       
        opacity: 0;
      }
      to {
        
        opacity: 1;
    }
  }


@keyframes slideInDown{
    from{
        transform: translateY(-100px);
        opacity: 0;
    }

    to{
        transform: translateX(0);
        opacity: 1;
        
        
        
    }
}

@keyframes slideInLeft{
    from{
        transform: translateX(100px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp{
    from{
        transform: translateY(100px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight{
    from{
        transform: translateX(-100px);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}



.header{
    animation-name: slideInDown;
    animation-duration: 1.2s;
    animation-timing-function:ease ;
    animation-delay: 0;
    
    
}

.life-button{
    animation-name: slideInRight;
    animation-duration: 2.5s;
    animation-timing-function:ease ;
    animation-delay: 0;
}


.quote{
    font-family: Tangerine;
    padding-left: 15px;
    font-size: 45px;
    margin-top: 35px;
}


@media only screen and (max-width: 600px) {
    .quote {
      font-size: 50px!important;
    }
  }



















/*Lifegallery Button */
button {
    position: relative;
    padding: 0px 105px;
    background: rgb(181, 105, 83);
    font-size: 40px;
    transition-duration: 0.5s;
    font-weight: 500;
    font-family: Cormoran;
    color: #e9e5e0;
    border: 1px solid #b56953;
    border-radius: 0px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .2));
  }


  @media only screen and (max-width: 600px) {
    button {
      margin-left: 0px!important;
      padding: 5px 5px;
      line-height: 40px;
    }
  }
  
  button:hover {
    border: 1px solid rgb(243, 177, 130);
    background: linear-gradient(85deg, #FEC195, #fcc196, #fabd92, #fac097, #fac39c);
    animation: wind 2s ease-in-out infinite;
    color:#6e3d1a ;
    transition-duration: 0.5s;
  }
  
  @keyframes wind {
    0% {
      background-position: 0% 50%;
    }
  
    0% {
      background-position: 50% 100%;
    }
  
    0% {
      background-position: 0% 50%;
    }
  }
  
  .icon-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    transform-origin: 0 0;
    transform: rotate(10deg);
    transition: all .5s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .3));
  }
  
  button:hover .icon-1 {
    animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
    transform: rotate(10deg);
  }
  
  @keyframes slay-1 {
    0% {
      transform: rotate(10deg);
    }
  
    50% {
      transform: rotate(-5deg);
    }
  
    100% {
      transform: rotate(10deg);
    }
  }
  
  .icon-2 {
    position: absolute;
    top: 0;
    left: 25px;
    width: 12px;
    transform-origin: 50% 0;
    transform: rotate(10deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .5));
  }
  
  button:hover .icon-2 {
    animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
  }
  
  @keyframes slay-2 {
    0% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(15deg);
    }
  
    100% {
      transform: rotate(0);
    }
  }
  
  .icon-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    transform-origin: 50% 0;
    transform: rotate(-5deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .5));
  }
  
  button:hover .icon-3 {
    animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
  }
  
  @keyframes slay-3 {
    0% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(-5deg);
    }
  
    100% {
      transform: rotate(0);
    }
  }









  #home-about{
    margin-top: 150px;
  }


  .content-box{
    background-color: #302b26;
    padding: 40px;
    
  }

  .book-btn{
    background-color: #b56953;
    border: 1px solid #b56953;
    color: white;
    font-family: Comorant;
    margin-top: 25px;
    padding: 15px 55px;
    border-radius: 0;
    transition-duration: 0.3s;


  }

  .book-btn:hover{ 
    border: 1px solid #b56953;
    transition-duration: 0.3s;  
  }


  #rooms{
    margin-top: 120px;
    background: url('../img/rooms-header.jpg')rgba(0, 0, 0, 0.4) ;
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center;
    height: 900px;
    display: flex;
    align-items: center;
  }

  #spaces{
    background: url('../img/image.jpg')rgba(0, 0, 0, 0.2) ;
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    height: 900px;
    display: flex;
    align-items: center;
  }

  #events{
    background: url('../img/about.jpg')rgba(0, 0, 0, 0.4) ;
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    height: 900px;
    display: flex;
    align-items: center;
  }


  #rooms-head{
    
    display: flex;
    background: url('../img/rooms-life.jpg')rgba(0, 0, 0, .3);
    align-items: center;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
  }


  .room-list li{
    color: rgb(117, 117, 117);
    font-family: Urbanist;
  }

  
 .room-intimate,.budget-db-room{
  margin-top: 180px;
 }

 


.reserve-box{
  border: 1px solid grey;
  text-align: center;
  max-width: 860px;
  padding: 25px;
  box-shadow: 5px 10px #b1b1b1;
  transition-duration: 0.4s;
  
  
}

.reserve-box:hover{
  background-color: #d4b19a;
  box-shadow: none;
  transform: translateX(5px);
  transform: translateY(10px);
  transition-duration: 0.4s;
}

#gallery-head{
  display: flex;
    background: url('../img/gallery/gallery15.jpg')rgba(0, 0, 0, .5);
    align-items: center;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

#spaces-head{
    display: flex;
    background: url('../img/spaces-head.jpg')rgba(0, 0, 0, .4);
    align-items: center;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}


#about-head{
  display: flex;
  background: url('../img/gallery/gallery12.jpg')rgba(0, 0, 0, .4);
  align-items: center;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

#contact-head{
  display: flex;
  background: url('../img/gallery/gallery14.jpg')rgba(0, 0, 0, .4);
  align-items: center;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

