@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Ephesis&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*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*/




  .fade-in-nav{
    animation-name: fadeinnav;
    animation-duration: 0.9s;
  }



.carousel-1{
    background: url('../img/bluesky-1.webp')rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    height: 105vh;
}

.carousel-2{
    background: url('../img/bluesky-2.webp')rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    height: 105vh;
}

.carousel-3{
    background: url('../img/bluesky-3.webp')rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    height: 105vh;
}


.navbar{
    margin-bottom: -7em;
    background-color: transparent!important;
    z-index: 10;
    padding: 1em 0em;
}

.navbar li a{
    color: white;
    font-family: 'Roboto';
    font-weight: 500;
    border-bottom: 3px solid transparent;
}

.navbar li a.active{
    color: white!important;
    border-bottom: 3px solid #f76e2a;
}

.navbar li a:hover{
    color: white!important;
    border-bottom: 3px solid #f76e2a;
}

.navbar li{
    margin: 0em 1em;
}

.sec-navbar li a:hover{
    color: black!important;
}

.primary-btn{
    background-color: #f76e2a;
    font-family: "Belleza";
    color: white;
    border-radius: 0px;
    font-weight: 500;
    font-size: 18px;
    padding: 0.8em 2em;
}

.primary-btn:hover{
    background-color: #e05e1d;
    color: white;
}

.carousel-caption{
    bottom: 35%;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Belleza';
}
p{
    font-family: 'Roboto';
}

.about-grid{
    padding: 3em;
}


.sticky{
    position: fixed;
    top: 0;
    z-index: 1000!important;
    background-color: rgb(255, 255, 255)!important;
    padding: 0.4em 0em;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 4px!important;
    width: 100%;
    transition-duration: 0.6s;
  }

  @keyframes fadeinnav {
    from {opacity: 0;}
    to {opacity: 1;}
  }

 


  .sticky li a{
    color: black;
  }

  .sticky li a.active,.sticky li a:hover{
    color: black!important;
  }

  #banner{
    background: url('../img/banner-bg.jpeg')rgba(0, 0, 0, 0.65);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    height: 60vh;
    display: flex;
    align-items: center;
  }

  .sec-btn{
    background-color: #f76e2a00;
    font-family: "Belleza";
    color: white;
    border-radius: 0px;
    font-weight: 500;
    font-size: 18px;
    padding: 0.8em 2em;
    box-shadow: none!important;
    text-decoration: underline;
  }

  .sec-btn:hover{
    background-color: transparent;
    color: white;
    text-decoration: underline;
  }

  .hours-box{
    background-color: white;
    display: flex;

    align-items: center;
    justify-content: center;
    padding: 3em;
  }

  .hours-desc{
    color: #1a2f33;
  }




  .book-section {
    height: fit-content;
    width: 100%;
    padding: 40px 0;
    text-align: center;
  }
  .book-section > .container {
    height:80vh;
    width: 60%;
    position: relative;
   left:30%;
    transform: translateX(-50%);
    border-radius: 2%;
    margin-bottom: 30px;
    perspective: 1200px;
  }
  .container > .right {
    position: absolute;
    height: 100%;
    width: 50%;
    transition: 0.7s ease-in-out;
    transform-style: preserve-3d;
  }
  .book-section > .container > .right {
    right: 0;
    transform-origin: left;
    border-radius: 10px 0 0 10px;
  }
  .right > figure.front,
  .right > figure.back {
    margin: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 200%;
    background-repeat: no-repeat;
    backface-visibility: hidden;
    background-color: white;
    overflow: hidden;
  }
  .right > figure.front {
    background-position: right;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 2px 15px -2px rgba(0, 0, 0, 0.2);
  }
  .right > figure.back {
    background-position: left;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 2px 15px -2px rgba(0, 0, 0, 0.2);
    transform: rotateY(180deg);
  }
  .flip {
    transform: rotateY(-180deg);
  }
  .flip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 0 10px 10px 0;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .book-section > button {
    border: 2px solid #ef9f00;
    background-color: transparent;
    color: #ef9f00;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s ease-in-out;
  }
  .book-section > button:focus,
  .book-section > button:active {
    outline: none;
  }
  .book-section > p {
    color: rgba(0, 0, 0, 0.7);
    font-family: calibri;
    font-size: 24px;
  }
  .book-section > p > a {
    text-decoration: none;
    color: #ef9f00;
  }
  .book-section > button:hover {
    background-color: #ef9f00;
    color: #fff;
  }
  .front#cover,
  .back#back-cover {
    background-color: #ffcb63;
    font-family: calibri;
    text-align: left;
    padding: 0 30px;
  }
  .front#cover h1 {
    color: #fff;
  }
  .front#cover p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
  }

  .menu-box{
    padding: 2em;
  }

  .review-box{
    border: 1px solid rgba(0, 0, 0, 0.281) ;
    border-style: dashed;
    padding: 3em;
  }

  .review-box i {
    color: gold;
  }

  .pree-footer{
    background: url('../img/pree-footer-banner.jpg')rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    height: 60vh;
  }
  .footer-link{
    color: black;
  }


  .gallery-head{
    background: url('../img/bluesky-1.webp')rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    height: 50vh;
    display: flex;
    align-items: center;
  }

  
  .about-head{
    background: url('../img/bluesky-3.webp')rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: 0% 30%;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    height: 50vh;
    display: flex;
    align-items: center;
  }


  .contact-head{
    background: url('../img/banner-bg.jpeg')rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    height: 50vh;
    display: flex;
    align-items: center;
  }


  @media only screen and (max-width: 870px) {
    .navbar {
      background-color: white!important;margin-top: -1px;
    }
    .navbar li a{
        color: black;
    }
    .navbar li a.active{
        color: black!important;
    }
    #banner{
        height: auto;
        padding: 4em 0em;
    }
    .book-section > .container {
        height:40vh;
        width: 98%;
        position: relative;
       left:49%;
        transform: translateX(-50%);
        border-radius: 2%;
        margin-bottom: 30px;
        perspective: 1200px;
      }

     .menu-box h1{
        font-size: 14px;
     } 

     .menu-box h4,.menu-box p{
        font-size: 12px;
     }
      .menu-box{
    padding: 1em;
  }

     
  }