
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
}
a{
    text-decoration: none;

}
ul{
    list-style: none;

}
.active{
    color:#fc036b;
    text-decoration: underline;
    font-weight: bold;
}
body , html{
    /*overflow: hidden;*/
}
/*navbar*/
.navbar{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
    color: whitesmoke;
}
.nav-links{
    display: flex;
    align-items:center;

}
.nav-links li{
    margin: 0 30px;
}
header{
    width: 100vw;
    height: 100vh;
    /* background-image: url(img/nature-4k-wallpaper.jpg); */
    background-image: url(img/pexels-cliford-mervil-988071-2469122.jpg);
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.header-content{
    margin-bottom: 150px;
    color: whitesmoke;
    text-align: center;

}
.header-content h2{
    font-size: 4vmin;
}
.line{
    width: 150px;
    height: 4px;
    background: #fc036b;
    margin: 10px auto;
    border-radius: 5px;
}
.header-content h1{
    font-size: 7vmin;
    margin-top: 50px;
    margin-bottom: 30px;
}
.ctn{
    padding: 8px 15px;
    background: #fc036b;
    border-radius: 30px;
    color: rgba(5, 61, 77, 0.728)

}
.icon-tabler{
    position: relative;
    top: 30px;
    right: 30px;
    width: 40px;
    cursor: pointer;
    display: none;
}
/*Events*/
Section{
    width: 80%;
    margin: 80px auto;

}
.title{
    text-decoration: center;
    font-size: 4vmin;
    color: rgb(73, 73, 126);
    text-align: center;
}
.row{
    display: flex;
    align-items:center;
    width: 100%;
    justify-content: space-between;
}
.row .col{
    display: flex;
    flex-direction: column;
    align-items:center;
}
.row .col img{
    width: 80%;
    
}
.events .row{
    margin-top: 50px;

}
h4{
    font-size: 3vmin;
    color:#484872;
    margin: 20px auto;
}
p{
    color: #7c7c7c;
    padding: 0px 40px;
}
.events .ctn{
    margin-top: 30px;
}
.explore{
    width: 100%;
    height: 80vh;
    background-image: url(./img/hiking\ 1.jpg);
    background-position: center;
    background-size:cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.explore-content{
    width: 60%;
    padding: 50px;
    color: rgba(17, 5, 5, 0.74);
    display: flex;
    align-items:center;
    flex-direction: column;
}
.explore-content h1{
    font-size: 7vmin;
    margin: 50px;

}
.explore-content .line{
    margin-bottom: 50px;
}
.explore-content p{
    color: whitesmoke;
}
.explore-content .ctn{
    margin-top: 40px;
    
}



.content-col{
   width: 40%; 
}
.content-col h1{
    font-size: 7vmin;
    color:#484872
}
.content-col .line{
    margin-left: -1px;
}
.content-col p{
    padding: 0;
    margin: 30px auto;
}
.content-col .ctn{
    margin-left: -100px;
}
.footer{
    width: 100%;
    min-height: 100px;
    padding: 20px 80px;
    margin: 0;
    background:rgba(5, 61, 77, 0.728);
    text-align: center;
}
.footer p{
    color: whitesmoke;
    margin: 20px auto;
    padding: 20px auto;
}
.image-col{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60%;
}

.img-row {
    display: flex;
    width: inherit;
    margin: 0 0;
    gap: 10px;
}
.img-row img{
    /* width: 0px; */
}
/*Animations*/
img{
    transition: transform .3s ease;
}
img:hover{
    transform: scale(1.1);
}

.ctn:hover {
    background-color: whitesmoke;
    color: #fc036b;
}
/*Mobile Device*/
@media only screen and (max-width:850px){
    .navbar{
    padding: 0;
}
.logo{
    position: absolute;
    top: 30px;
    left: 30px;
}
.nav-links{
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    background: #484872;
    margin-top: -900px;
    transition: all 0.5s ease;
}
.mobile-menu{
    margin-top: 0px;
    border-bottom-right-radius: 30%;
}
.nav-links li{
    margin: 30px auto;
}
.row{
    flex-direction: column;
}
.row .col{
    margin: 20px auto;
}
.col img {
    max-width: 90%;
}
.explore-content{
    width: 100%;
}
.tours .col{
    width: 100%;
}
image-gallery{
    justify-content: center;
    align-items: center;
}
.image-gallery img{
    width: 90%;
}
.footer{
    padding: 10px;

}
/*Animations*/
img{
    transition: transform .3s ease;
}
img:hover{
    transform: scale(1.1);
}
.ctn:hover {
    background-color: whitesmoke;
    color: #fc036b;
}

.icon-tabler{
    display: block;
}

.Tours {
    margin-top: 50px;
}

.Tours .row {
   display: flex;
   flex-direction: column;
   width: 100%;
}

.content-col{
    width: 100%; 
 }

 .content-title{
    font-size: medium;
    margin-bottom: 10px;
 }

 .content-text{
    text-align: justify;
    margin-bottom: 10px;
    width: 100%;
 }
 .ctn {
    margin-bottom: 10px;

 }
 
 .image-col{
     display: flex;
     flex-direction: column;
     gap: 10px;
     width: 100%;
 }
 
 .img-row {
     display: flex;
     flex-direction: column;
     width: inherit;
     margin: 0 0;
     gap: 10px;
     flex-grow: 100%;
     flex-basis: 100%;
 }
 .img-row img{
     width: 100%;
     background-size: cover;
 }

}



