:root{
    --orange:#ffa500
}
*{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none; border: none;
    text-decoration: none;
    transition: all .2s linear;
}
*::selection{
    background: var(--orange);
    color: #c89999;
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}




section{
    padding: 2rem 9%;
}

.heading{
    text-align: center;
    padding: 2.5rem 0 ;
}

.heading span{
    font-size: 3.5rem;
    background: rgba(255, 165, 0,.2);
    color: var(--orange);
    border-radius: .5rem;
    padding: .2rem 1rem;

}

.heading span.space{
    background: none;
}




header{
    position: fixed;
    top: 0; left: 0; right: 0;
    background:#333;
    z-index: 1000;
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding: 2rem 9%;
}


header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: #fff;
    text-transform: uppercase;
}


header .logo span{
    color:var(--orange)

}

header .navbar a{
    color: #fff;
    font-size: 2rem;
    margin: 0 .8rem;
}

header .navbar a:hover{
    color: var(--orange);
}

header .icons i{
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 2rem;
}


header .icons i:hover{
    color: var(--orange);

}

header .search-bar-container{
    position: absolute;
    top: 100%; left:0; right:0;
    padding: 1.5rem 2rem;
    background: #333;
    border-top: .1rem solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    z-index: 1001;
    
}

 header .search-bar-container #search-bar{
    width: 100%;
    padding: 1rem;
    text-transform: none;
    color: #333;
    font-size: 1.7rem;
    border-radius: .5rem;
 }

header .search-bar-container button{
    color: #1a0202;
    cursor: pointer;
    font-size: 2rem;
    margin-left: 1.5rem;
    border-radius: .5rem;
}

header .search-bar-container button:hover{
    color:rgb(1, 9, 6)
}


#checkbtn{
    float: right;
    font-size: 30px;
    color: #fff;
    display: none;


}


#check{
    display: none;
}

.home{
    background: url(Images/zvsjvuiiih891.jpg);
    
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;


}







.home .content{
    text-align:center; 
    
}

.home .content h3{
    font-size: 3.5rem;
    color: #ded0d0;
    text-transform:uppercase;
    text-shadow: 0 .3rem .5rem rgba(0,0,0,.1);


}

.home .content p{
    font-size: 2.0rem;
    color: #f9f0f0;
    padding: .5rem 0;

}


.home .content a{
    font-size: 2.45rem;
    color: var(--orange);
    padding: .5rem;
}

.home .content a:hover{
    color: var(--orange);
    text-decoration: underline;
    padding: .5rem;
}
.home .video-container video{
    position: absolute;
    top:0; left:0;
    z-index: -1;
    height: 100%;
    width:100%;
    object-fit: cover;
}

.home .controls{
    padding:1rem;
    border-radius: 5rem;
    background: rgba(0,0,0,.7);
    position: relative;
    top: 10rem;

}


.home .controls .vid-btn{
    height:2rem;
    width: 2rem;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin: 0 .5rem;
}




.home .controls .vid-btn.active{
    background: var(--orange);
}




.btn:hover{
    background: rgba(255, 165, 0,.2);
    color: var(--orange);
}
.book .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.book .row .image{
    flex: 1 1 .5rem;
}


.book .row .image img{
    width: 100%;
}


.book .row form{
    flex: 1 1 40rem;
    padding: 1rem;
    box-shadow: 0 1rem 2rem rgba(4, 177, 111, 0.474);
    border-radius: .5rem;
}

.book .row form .inputBox{
    padding: .5rem 0;
}

.book .row form .inputBox input{
    width: 100%;
    padding: .5rem;
    border: .1rem solid rgba(13, 211, 10, 0.773);
    font-size: 1.7rem;
    color: #2ad79d;
    text-transform: none;
    cursor: pointer;
}


.book .row form .inputBox input:hover{
    color: (var(--orange));
    text-decoration: underline;
}




.book .row form .inputBox h3{
    font-size: 1.5rem;
    padding: 1rem 0;
    color: #950d0d;
}


.packages .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.packages .box-container .box{
    flex: 1 1 30rem;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);

}


.packages .box-container .box img{
    height:25rem ;
    width: 100%;
    object-fit: cover;
}


.packages .box-container .box .content{
    padding: 2rem;
}


.packages .box-container .box .content h3{
    font-size: 2rem;
    color: #333;
}

.packages .box-container .box .content h3 i{
    color: var(--orange);
}


.packages .box-container .box .content p{
    font-size: 1.7rem;
    color: #666;
    padding: 1rem 0;
}

.packages .box-container .box .content a{
    font-size: 2.5rem;
    color: var(--orange);
    padding: 1rem;
}

.packages .box-container .box .content a:hover{
    color: (var(--orange));
    text-decoration: underline;
}
.packages .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--orange);
}


.packages .box-container .box .content .price{
    font-size: 2rem;
    color: #333;
    padding-top: 1rem;
}

.packages .box-container .box .content .price span{
    color: #666;
    font-size: 1.5rem;
    text-decoration: line-through;
}



.services .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.services .box-container .box{
    flex: 1 1 30rem;
    border-radius: .5rem;
    padding: 1rem;
    text-align: center;
}

.services .box-container .box i{
    padding: 1rem;
    font-size: 5rem;
    color: var(--orange);
}

.services .box-container .box h3{
    font-size: 2.5rem;
    color: #333;
}

.services .box-container .box p{
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
}

.services .box-container .box:hover{
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
}



.gallery .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery .box-container .box{
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border: 1rem solid #fff;
    border-radius: .5rem;
    flex: 1 1 30rem;
    height: 25rem;
    position: relative;
}

.gallery .box-container .box img{
    height: 80%;
    width: 80%;
    object-fit: cover;
}


.gallery .box-container .box .content{
    position: absolute;
    top: 0%; left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,.7);
    padding: 2rem;
    padding-top: 5rem;
}


.gallery .box-container .box .content h3{
    font-size: 2.5rem;
    color: var(--orange);
}

.gallery .box-container .box .content p{
    font-size: 1.5rem;
    color: #d12c2c;
    padding: .5rem 0;
}





.footer{
    background: #333;
}

.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer .box-container .box{
    padding: 1rem 0;
    flex: 1 1 25rem;
}

.footer .box-container .box h3{
    font-family: 2.5rem;
    padding: .7rem 0;
    color: #fff;
}
.footer .box-container .box p{
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #fff;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #fff;
}

.footer .box-container .box a:hover{
    color: var(--orange);
    text-decoration: underline;
}

.footer .credit{
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    border-top: .1rem solid rgba(255,255,255,.2);
}

.footer .credit span{
    color: var(--orange);

}































/* media queries */

@media (max-width:1200px){
    html{
        font-size: 55%;
    }
}

@media (max-width:991px){
    header{
        padding: 2rem;
    }

    section{
        padding: 2rem;
    }
}



@media (max-width:768px){
    #menu-icon{
        display:initial;
    }
    header .navbar{
        position: absolute;
        top: 100%; right: 0; left: 0;
        background: #e3dbdb;
        border-top: .1rem solid rgba(30, 238, 47, 0.2);
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);

    
    }

    header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

   header .navbar a{
    display: block;
    border-radius: .5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: #333;
   }
}

@media (max-width:450px){
    html{
        font-size: 50%;
    }

    .heading span{
        font-size: 2.5rem;
    }


}


