*{
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth ;
  scroll-padding-top: 5rem;
}

body{
  font-family: 'Poppins', sans-serif;
}


img{
    display: block;
    object-fit: cover;
    width: 100%;
}

.container {
    width: 80%;
    max-width: 1920px;
    margin-inline: auto;
}

nav{
  height: 5rem;
  width: 100vw;
  display: grid;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  z-index: 1000;
  position: fixed;
}

.nav__links{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
}

.nav-item a {
   font-size: 1.1rem;
   font-weight: 400;
   color: #333;
   transition: all 0.5s ease-in-out;
}
.active{
  color: #c22525 !important;
}


.nav-item a:hover{
  color: blue;
}

.logo{
  height: 4rem;
}

.toggle-btn{
   background: transparent;
   cursor: pointer;
}

.toggle-btn{
  display: none;
}


.toggle-btn span {
  font-size: 1.8rem;
}






h1{
    font-family: 'Dancing Script', cursive;
}
h2{
    font-family: 'Dancing Script', cursive;
}

.hero-section {
background-image: url('../images/hero.jpg');
background-size: cover;
  background-position: center;
  background-color: #58565677;
  background-blend-mode: darken;
  color: #fff;
  padding: 100px 0; 
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-heading {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #fff;
}

.hero-subtext {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.hero-button {
  font-size: 1.2rem;
  display: inline-block;
  padding: 1rem 5rem;
  background: rgb(194, 37, 37); 
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgb(194, 37, 37);
  transition: background-color 0.3s ease-in-out;
}

.hero-button:hover {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}



/* Gallery Section */

.section-heading{
  font-size: 2.5rem;
  text-align: center;
}

.gallery-section {
   margin-top: 5rem;
   margin-bottom: 5rem;
}



.carousel-container {
   overflow: hidden;
   width: 100%;
 }
 
 .carousel-wrapper {
    display: flex;
    animation: scroll 50s linear infinite;
 }

 .carousel-item {
     margin: 3rem;
     box-sizing: border-box;
     transition: transform 0.5s ease-in-out;
     box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
     cursor: pointer;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-50%);
    }
    50% {
      transform: translateX(-100%);
     }
    75% {
      transform: translateX(-200%);
     }
    100% {
      transform: translateX(0);
     }
 }

.carousel-item img {
   width: 600px;
   height: 400px;
}




/* Activities section  */

.activities-section {
  margin-top: 3rem;
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.items {
   font-size: 1.2rem;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 3rem;
}

.item {
  padding: 2rem;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.item img {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.item img:hover{
  transform: scale(1.05);
}



.item img,
video{
  display: block;
  height: 300px;
  object-fit: cover;
}

.item h3 {
   margin: 2rem 0;
   font-size: 1.2rem;
   font-weight: 500;
}

.item p{
  color: #666;
}


/* About us Section */

.about-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
}

.left img {
  padding: 2rem;
  border-radius: 30%;
  padding-bottom: 1rem;
  cursor: pointer;
}


.about-para{
  width: 100%;
  padding: 1rem;
  padding-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  color: #666;
}

.about-title{
  padding: 5rem 0;
}


/* price and group trips */

.price-items{
  margin: 5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  text-align: center;
}

.price-item{
  padding: 2rem;
  border-radius: 10% 0 10% 0;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.price-item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1.5rem 0;
  color: #c22525;
}

.price-item p{
  /* border: 1px solid blueviolet; */
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  margin: 1rem;
}

.price-item p span {
  margin: 0 5px 0 10px;
  color: #c22525;
}


/* contact section */
.contact{
  padding: 5rem 0;
}

.contact-content{
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap:15%;
   color: #666; 
   font-size: 1.2rem;
  
}

.contact-left a {
   width: 20rem;
   padding: 0.6rem 3rem;
   font-size: 1.1rem;
   color: #fff;
   background: #46d046;
   cursor: pointer;
   border-radius: 10px;
   border: 1px solid #46d046;
   transition: all 0.5s ease-in-out;
   font-family: "poppins";
   margin-top: 0.5rem;
}
.contact-left a:hover{
    background: #46d046;
}

.contact-left video {
   width: 80%;
   padding: 1rem;
   margin: 5rem auto;
   border-radius: 10px;
   box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.whatsapp {
   display: flex;
   align-items: center;
   justify-content: center;
   margin: auto;
}


.whatsapp img {
  width:2.5rem;
  margin-right: 1rem;
}

.contact-right{
  padding: 2rem;
}

.contact-right h3{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.form-group input{
  width: 100%;
   padding: 1rem 1rem;
   font-size: 1rem;
   border-radius: 10px;
   box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
   font-family: 'Poppins', sans-serif;
}

textarea {  
   width: 100%;
   padding: 1rem  ;
   font-size: 1rem;
   font-family: 'Poppins', sans-serif;
   border-radius: 20px;
   box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
}

.form-group button{
   margin-top: 3rem;
   padding: 1rem 3rem;
   font-size: 1.1rem;
   color: #fff;
   background: rgb(194, 37, 37);
   cursor: pointer;
   border-radius: 10px;
   border: 1px solid rgb(194, 37, 37);
   transition: all 0.5s ease-in-out;
   font-family: "poppins";
}
.form-group {
  margin-bottom: 20px;
}

.form-group button:hover{
  background: transparent;
  color: #333;
  border: 1px solid black;
}







 /* Custom CSS for Footer Section */
 .footer-section {
  background-color: #333; /* Background color for the footer */
  color: #fff;
  padding: 50px 0; /* Adjust padding as needed */
}

.footer-content {
  text-align: center;
}

.footer-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  font-size: 24px;
  color: #fff;
  margin: 0 10px;
  transition: color 0.3s ease-in-out;
}

.social-icons a:hover:nth-child(1){
  color: rgb(54, 54, 170);
}

.social-icons a:hover:nth-child(2){
  color: rgb(94, 98, 208);
}

.social-icons a:hover:nth-child(3){
  color: rgb(233, 106, 127);
}

.social-icons a:hover:nth-child(4){
   color: rgb(223, 47, 47);
}


.author a{
  color: #f9f9f9;
  font-size: 0.5rem;
  margin-top: 5rem;
}


/* for medium devices */

@media screen and (max-width : 1024px )  {
      
     .navbar-nav{
       gap: 2rem;
     }

     .hero-heading {
       font-size: 3rem;
     }
     .hero-subtext{
      font-size: 1.2rem;
     }

     .section-heading {
        font-size: 2rem;
     }

     .carousel-item img {
        width: 500px;
        height: 350px;
      }

      .items{
        grid-template-columns: 1fr 1fr;
      }

      .price-items {
        grid-template-columns: 1fr 1fr;
      }

      .about-content{
         display: grid;
         grid-template-columns: 1fr;
         place-items: center;
         gap: 5%;
      }

      .left img{
        width: 30rem;
      }

      .right{
        padding: 2rem;
      }

      .about-para {
        font-size: 1.2rem;
        padding-top: 1rem;
      }

      .hero-button {
        padding: 1rem 4rem;
      }
     .contact-left a{
        margin-bottom: 3rem;
     } 
}

@media screen and (max-width : 768px ) {
    .container{
      width: 90%;
      margin-inline: auto;
    }
    
    .hero-heading {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .toggle-btn{
      display: inline-block;
       background: transparent;
      font-size: 1.1rem;
      cursor: pointer;
    }
    nav{
      position: fixed;
    }

    .navbar-nav {
       position: absolute;
       top: 100%;
       right: 0%;
       flex-direction: column;
       gap: 1rem;
       margin-right: 1rem;
       display: none;
    }
    .nav-item {
      padding: 10px 20px;
      background: #fff;
      width: 10rem;
      text-align: center;
      color: #333;
      font-weight: 500;
      margin: 1rem;
    }

    .carousel-item {
      margin: 1rem;
    }

    .price-items {
        grid-template-columns: 1fr;
      }

    .carousel-item img {
       width: 350px;
       height: 300px;
    }

    .show-menu{
      display: block;
    }

    .items{
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .contact-content {
       display: flex;
       flex-direction: column;
    }

}

@media screen and (max-width: 600px){

    .logo{
        height: 3rem;
      }

   .hero-button{
     padding: 1rem 1rem;
     font-size: 1rem;
   }
  
   .carousel-item img {
     width: 200px;
     height: 200px;
   }

   .left img{
      width: 250px;
      height: 250px;
      border-radius: 50px;
   }
   .contact-content {
     margin-inline: auto 0;
   }

   .about-content {
    gap: 1%;
   }

    .items{
      grid-template-columns: 1fr;
      gap: 2rem;
    }

   .price-items {
     grid-template-columns: 1fr;
     font-size: 1rem;
   }

   .price-item {
     padding: 1rem;
   }

   .contact-left video {
     width: 100%;
   }
   .contact-left a{
     width: 80%;
     font-size: 1rem;
     padding: 0.2rem;
   }
   .contact-left a img {
      width: 2rem;
      margin-right: 0.5rem;
   }
   .form-group button{
     padding: 1rem 1rem;
   }
}
