
@import url('https://fonts.googleapis.com/css2?family=Coiny&display=swap');



*{
    /* border: 1px solid grey; */
    margin: 0;

}

html{
    scroll-behavior: smooth;
}


#one, #two{
    width: 100%;
    height: 100vh;

}

#two{
    background-color: red;
}


body{
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;

}


#arrowDown{
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 15px;
    opacity: 1;
    animation-name: arrowBottom;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    z-index: 10;
}

@keyframes arrowBottom {
    0%{bottom: 20px;}
    50%{bottom: 40px;}
    100%{bottom: 20px;}
    
}

#arrowDown.scrolled{
    opacity: 0;
}

#arrowDown img{
    width: 100%;
}

#whatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    z-index: 5;
}

#whatsapp img{
    width: 100%;
}


#landingBg{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    
}

.filtered{
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    height: 100%;
    filter: opacity(0.85);
    

}

#landingBg video{
    width: 100vw;
    height: auto;
}

#webTop{
    position: absolute;
    top: 0;
    left: 0;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95vw;
    height: 70px;
    padding: 10px 2%;
    z-index: 10;
}


header.scrolled{
    background-color: aliceblue;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
    transition: 1s ease;
}



#logo img{
    width: 100px;
}

#bookButton{
    display: none;
}

#bookButton a{
    
    text-decoration: none;
    color: white;
}

#menuButton{
    position: absolute;
    top: 60px;
    right: 3%;
    display: none;
    color: #0071bc;
}



nav{
    height: 90px;
    display: flex;
    justify-content: center;
     align-items: center;
}

#menu{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    
}

nav li, button{
    margin-left: 15px;
}

nav ul a{
    text-decoration: none;
    color: #0071bc;
    font-family: 'Roboto', sans-serif;
    
}



#tourMenu{
    position: relative;

}

#tourMenu i{
    color: #0071bc;
    margin-left: 7px;
}

#tourList{
    position: absolute;
    top: 20px;
    left: 0;
    background-color: aliceblue;
    width: 300px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 10px 10px 10px 0px;
    list-style: none;
    display: none;
    
}

#tourMenu:hover #tourList{
    display: block;
    
}

#tourList li{
    padding: 10px 0;
    border-bottom: 1px solid #0071bc;
}

button{
    padding: 10px 10px;
    border: none;
    background-color: #0071bc;
    color: aliceblue;
    border-radius: 10px;
}

#innerButton a{
    color: aliceblue;
}

#landingText{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    font-family: 'Coiny';
    text-align: right;
    padding-top: 150px;
    padding-right: 3%;
    transition: right 0.3s ease;
}


#landingText.scrolled{
    right: 200%;
    transition: right 0.5s ease;
}



#landingText div{
    border-right:6px solid #009245;
    padding: 0 10px;
}

h1{
    font-family: 'coiny';
    color: #ed9c1b;
    
}

#landingText h1{
    color: #ed9c1b;
    font-size:250%;
}

#landingText h2, #landingText h3{
    color: #009245;

}


#tours{
    position: relative;
    background: white url("../images/bgpattern.png") no-repeat fixed center top;
    
    width: 100vw;
    
    padding: 100px 0;
    
}




#tours h1{
    position: relative;
    text-align: center;
    z-index: 2;
}

#toursContainer{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    
    justify-content: space-around;
    padding-top: 30px;
    width: 96%;
    margin: 0 auto;
    z-index: 2;
}

.tour{
    position: relative;
    background-color: white;
    width:220px;
    height: 380px;
    margin-top: 20px;
    padding: 10px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
    overflow: hidden;
}


.tour.border.green{
   border: 1px solid #009245; 
   border-left: 5px solid #009245;
   border-radius: 0 10px 10px 0 ;
   transition: 1s ease;
}

.tour.border.red{
    border: 1px solid red;
    border-left: 5px solid red;
    border-radius: 0 10px 10px 0;
    transition: 1s ease;
}

.tour.border.orange{
    border: 1px solid #ed9c1b;
    border-left: 5px solid #ed9c1b;
    border-radius: 0 10px 10px 0;
    transition: 1s ease;
}

.tour.border.blue{
    border: 1px solid #0071bc;
    border-left: 5px solid #0071bc;
    border-radius: 0 10px 10px 0;
    transition: 1s ease;
}

.tourImg{
    width: 200px;
    height: 250px;
    overflow: hidden;
    margin-bottom: 10px;
}

.tourImg img{
    width: 100%;
}

.tourLabel{
    position: absolute;
    top: 175px;
    right: 200%;
    background-color: white;
    color: #0071bc;
    width: 180px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
    text-align: right;
    padding: 5px 10px;
    border-radius: 5px;
}

.tourLabel.showLabel{

    right: 15px;
    transition: 1s ease;
}

.tourDetails{
    display: flex;
    flex-direction: column;
}

.tourBtn{
    position:absolute;
    bottom: 10px;
    right: -100%;
}

.tourBtn.showBtn{
    right: 10px;
    transition: right 0.3s ease;
}

.tourBtn.changeBtn{
    display: none;
}

.bookingBtn{
    background-color: #0071bc;
    width:140px;
    border-radius: 5px;
    margin: 30px auto 0 auto;
    padding: 5px;
    text-align: center;

}

.bookingBtn a{
    text-decoration: none;
    color: aliceblue;
    
    
}

.fullDetails{
    display: none;
}

.tour.full{

    width: 90%;
    height: auto;
    padding-bottom: 70px;
    transition: 0.5s ease;
    
}

.tour.full .fullDetails{
    display: block;
}



.moreButton{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    z-index: 2;
}

.moreButton button{
    background-color: #009245;
    width: 150px;
}

.toggled{
    display: none;
}

#gallery{
    position: relative;
    background: url("../images/bgpattern.png") no-repeat center top;
   
    width: 100%;
    
    padding: 100px 0;
}

#gallery h1{
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 2;
}

#photos, #galleryPhotos{
    position: relative;
    width: 96%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: start;
    margin: 0 auto;
    z-index: 2;
}



.photo, .galleryPhoto{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    max-height: 200px;
    margin-top: 10px;
    overflow: hidden;
}

.photo img, .galleryPhoto img{
    width: 120%;

}

.photo img:hover, .galleryPhoto img:hover{
    width: 130%;
    transition: 0.5s ease;
}




.more{
    position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 50px 0;
        z-index: 2;
}

#galleryBtn{
    background-color: #0071bc;
    border-radius: 5px;
    padding: 10px;

}

#galleryBtn a{
    text-decoration: none;
    color: aliceblue;
}


#photosArt{
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
   
}

#photosArt img{
    width: 100%;
   
}


#fullPhoto{
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 96%;
    height: 90vh;
    padding: 10% 2% 50px 2%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index:11;
}

#close{
    position:absolute;
    top: 30px;
    right: 30px;
    color: white;
    
    cursor: pointer;
}


#fullPhoto img{
   width: 100%;
   object-fit: contain;
}

#arrowLeft, #arrowRight{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    min-width: 50px;
    color: white;
    cursor: pointer;
}






#about{
    position: relative;
    background: url("../images/ndebelepattern.png") no-repeat center top;
    width: 100%;
    
    
}

#aboutTitle{
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
}

.halfGreen{
    background-color: #009245;
    width: 100%;
    height: 50vh;
    padding-top: 100px;
    display: flex;
    justify-content: end;
}

#halfGreen img{
    height: 100%;
}



#aboutContainer{
    position: relative;
    top: -35vh;
    left: 5%;
    background-color: white;
    width: 86%;
    
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
    padding: 30px 2%;
}

.line{
    background-color: #009245;
    width: 200px;
    height: 1px;
    margin: 0 auto ;
}

#aboutContainer p{
    color: #0071bc;
    text-align: center;
    margin: 20px 0;
}



#contact {
    position: relative;
    background: url("../images/bgpattern.png") no-repeat center top;

    width: 100%;
    height: 100vh;
    padding: 100px 0;
}

#contact h1 {
    position: relative;
    text-align: center;
    z-index: 2;
}

#formContainer{
    position: relative;
    width: 40%;
    min-width: 330px;
    padding: 20px;
    margin: 0 auto;
    z-index: 2;

}

form{
    width: 100%;
}


form input{
    background-color: transparent;
    width: 100%;
    height: 25px;
    margin-bottom: 20px;
    padding-left: 10px;
    border: none;
    border-bottom:1px solid  #ed9c1b;
}

input:active, input:focus{
    border: #ed9c1b;
}

textarea{
    width: 100%;
    height: 150px;
    border:1px solid #ed9c1b;
    border-radius: 5px;
    margin-bottom: 30px;
}




footer{
    background-color: #009245;
    color: #ed9c1b;
    width: 96%;
    padding: 20px 2% ;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}

#footerContainer{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.footerHead{
    font-family: 'coiny';
    margin: 20px 0;
}

.footerLinks{
    width: 33.3%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footerLinks.left{
    text-align: left;
}

.footerLinks.right{
    display: flex;
    justify-content: flex-end;
    align-items: end;
    text-align: right;
}


#tripAdvisor{
    width: 160px !important;
}

#copyrights{
    width: 100%;
    text-align: center;
}

#copyrights p{
    width: 100%;
    text-align: center;
}

footer a{
    text-decoration: none;
    color: #ed9c1b;
}



@media screen and (max-width: 768px){
    #landingBg video{
        width: auto;
        height: 100vh;
    }

    header{
        flex-direction: column;
    }

    #logo{
        width: 100%;
    }

    #bookButton{
        position: fixed;
        top: -10px;
        right: 10px;
        display: block;
        margin: 20px 0;
    
    }

    #menuButton{
        display: block;
    }

    #navigator{
        position: absolute;
        top: 89px;
        padding-left: 10px;
        display: none;
        width: 97%;
    }


    #navigator.showMenu{
        display: block;
        transition: display 1s ease;
    }

    


    #menu{
        display: block;
        background-color: aliceblue;
        flex-direction: column;
        justify-content: flex-start;
        align-items: baseline;
        padding-left: 0;
        
    }

    

    #menu li{
        padding: 7px 7px 7px 0;
        border-bottom: 1px solid #0071bc;
    }

    #menu button{
        display: none;
    }

    #tourList{
        position: relative;
        margin-bottom: 10px;
    }

    #landingText{
        padding-top: 300px;

    }

     #footerContainer {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .footerLinks{
        width: 100%;
    }

    .footerLinks.left{
        text-align: center;
    }

    .footerLinks.right{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}