@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=ubuntu:wght@400;500;700&display=swap");

:root{
--primary-color:#115983;
--white-color:#fff;
--light-gray:#ddd;
--green-color: #01456b;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
  
}

html {
  font-size: 16px;
}


/* ******************** UTILITY CLASSES STARTS ***************** */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow: hidden;
}

li {
  list-style: none;
} 

.section-text {
  color: var(--primary-color);
  letter-spacing: 3px;
}

.section-heading {
  padding:0 0  1rem 0;
  font-family: 'ubuntu';
  font-size: 2.5rem;
}

.section-heading span {
  color: var(--primary-color);
   font-family: 'ubuntu';
}

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

.price-label {
 position: absolute;
 right: 10px;
 top: 10px;
 background-color: var(--primary-color);
 color: var(--white-color);
 padding: 0.5rem 1rem;
 border-radius: 5px;
}

a {
  text-decoration: none;
}

.heading-normal-text {
  font-size: 1rem;
  letter-spacing: 6px;
  color: var(--primary-color);
}

.headings {
  font-size: 3rem;
  font-family: 'ubuntu';
  padding-bottom: 2rem;
  letter-spacing: 2px;
}

.headings span {
  color: var(--primary-color);
}

.secondary-headings {
  font-size: 2.5rem;
  font-family: 'ubuntu';
  padding: 1rem 0;
}

.lead {
font-size: 1.1rem ;
line-height: 2;
text-align: justify;

}

.primary-btn {
  width: 50%;
  outline: none;
  background-color: var(--primary-color);
  border: none;
  padding: 0.7rem;
  font-size: 1rem;
  border-radius: 4px;
  color: var(--white-color);
  cursor: pointer;
}


.card-pagination {
    --swiper-pagination-bottom: -20px;
    --swiper-pagination-color: var(--primary-color);
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-inactive-color: var(--white-gray);
}

.card-prev, 
.card-next {
  --swiper-navigation-size: 30px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 0;
  --swiper-navigation-color: var(--white-color);
}

.card-prev:hover, 
.card-next:hover {
  --swiper-navigation-color: var(--primary-color);
}
/* ******************** UTILITY CLASSES CLOSES ***************** */

/* ******************** ANIMATION CLASSES STARTS ***************** */

@keyframes text-animate {
   0% {
    opacity: 0;
    transform: translateX(-50%);
   }
   50% {
    opacity: 0.2;
   }
   70%{
    opacity: 0.5;
   }
   100%{
    opacity: 1;
    transform: translateX(0);
   }
 }

@keyframes animate-card {
  0% {
    opacity:0;
    transform:translateY(30px)
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ******************** ANIMATION CLASSES CLOSES ***************** */

/* ********************* HEADER SECTION STARTS  ********************/
header {
  padding: 0.5rem; 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

header.sticky{
  background-color: var(--primary-color);
  border-bottom: 1px var(--light-gray);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
}

nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  gap: 2rem;
}

nav ul li {
  margin: 0;
  position: relative;

}

nav ul li a {
  color: var(--white-color);
  font-size: 1rem;
}

nav ul li a.active-link {
  position: relative;
}
   
nav ul li a.active-link::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width:100%;
  height: 3px;
  background-color: var(--white-color);
  transition: all 0.3s ease-in;
}


nav ul li::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--white-color);
  opacity: 0;
  transition: all 0.3s ease-in;

}

nav ul li:hover::before {
  opacity: 1;
  width: 100%;
}

.btn {
  display: none;
  
}

.social-icons{
  display: none;
}




/* ********************* HEADER SECTION CLOSES  ********************/

/* ********************* HERO CAROUSEL SLIDES STARTS  ********************/
 main {
  width: 100%;
  height: 100%;
  z-index: 0;
  margin: auto;
 }
 .swiper {
  height: 100vh;
 }

 .carousel-container {
  width: 100%;

 }

 .carousel-slides {
  width: 100%;
  height: 100%;
 }

 .carousel-slide {
  width: 100%;
  height: 100%;
 }
 
 .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .overlay {
  position: relative;
 }

 .overlay::after {
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width:100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
 }
 .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  text-align: center;
  font-family: "ubuntu";
  z-index: 5;
  width: 100%;
  color: var(--white-color);
 }

 .caption h2 {
  font-size: 5rem;
  letter-spacing: 8px;
  padding-bottom:4px ;
  color: transparent;
  -webkit-text-stroke:1px var(--white-color);
  animation: text-animate 2s forwards;
  transition: all 0.4s ease-in-out;
 }

 .caption p {
  font-size: 1rem;
  letter-spacing: 4px;
  animation: text-animate 2s forwards;
  transition: all 0.4s ease-in-out;
 }

 
 .hero-pagination {
  --swiper-scrollbar-bg-color: var(--white-color);
  --swiper-scrollbar-drag-bg-color: var(--primary-color);
  --swiper-pagination-color: var(--primary-color);
  --swiper-pagination-bullet-inactive-color: var(--white-color);
  --swiper-pagination-bullet-inactive-opacity:1;
 }

 .hero-prev, .hero-next {
  --swiper-navigation-size: 20px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 20px;
  --swiper-navigation-color: var(--white-color);
 }

 .hero-prev:hover, .hero-next:hover {
  color: var(--primary-color);
 }



 

/* ********************* HERO CAROUSEL SLIDES CLOSES  ********************/


/* ********************* DESTINATION SEARCH FORM STARTS  ********************/
#location{
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  
}

.form-wrapper{
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  width: 90%;
  margin: 0 auto;
  animation: animate-card 0.8s ease-in;
}

 form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
 }

 .form-control {
  width: 100%;
 }

  

 form select, input {
  padding:0.6rem;
  outline: none;
  font-size: 1.1rem;
  color: var(--primary-color);
  border:1px solid var(--light-gray);
 }

 #search-btn {
  border-radius: 0 20px 20px 0;
 }

 #destination{
 border-radius: 20px 0 0 20px;
 } 

 #travellers::placeholder {
    color: var(--primary-color);
    margin-left: 2rem;
 }
/* ********************* DESTINATION SEARCH FORM CLOSES  ********************/


/* ********************* POPULAR TOURS STARTS  ********************/

#popular-tours{
  padding: 6rem 3rem;

}



.tour-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 2rem;
  margin: 2rem 0;

}


.lg-card  {
  position: relative;
  cursor: pointer;
  height: 50vh;
  animation: animate-card 0.8s ease-in;
}


.lg-card:hover  {
  transform: scale(1.02);
}

.lg-card:hover::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.card-content {
  position: absolute;
  bottom: 0px;
  left: 10px;
  color: var(--white-color);
  z-index: 2;
}



.card-content h3 {
  font-size: 1.1rem;
}

.hidden-content {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  transform: translateY(117%);

}
.lg-card:hover .hidden-content {
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}

.swiper-3 {
  position: relative;
  width: 100%;
  height: 50vh;
}

.swiper-3 .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-3 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ********************* POPULAR TOURS CLOSES  ********************/

/* ********************* WEATHER CHECK STARTS  ********************/
#weather {
  padding: 6rem 0;
  position: relative;
}

#weather video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  max-height: 650px;
}

.video-bg {
  position: relative;
}

.video-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.weather-overlay {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  padding: 0 3rem;

}

.weather-overlay.positionChange {
  top: 17%;
}

.weather-overlay .section-text {
  color:var(--white-color);
}

.weather-wrapper {
  background: linear-gradient(to right, #527fb6, #8cc1cf);
  opacity: 0.8;
  padding: 3rem;
  
}

.weather-wrapper.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-input input {
  width: 100%;
}


.weather-result {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 0.5rem;
}



.Not-Found {
  text-align: center;
}

.Not-Found i {
  font-size: 3rem;
  color: goldenrod;
}
.Not-Found p{
  color: red;
  font-weight: 400;
}

.emptyField {
  text-align: center;
}

.emptyField i {
  font-size: 3rem;
  color: goldenrod;
}
 
.emptyField p{
  color: var(--green-color);
  font-weight: 400;
}

.weather-result h3 {
  color: var(--primary-color);
  text-transform: capitalize;
}

.weather-content {
  color: var(--primary-color);
  font-weight: 400;
  padding-left: 0.5rem;
} 



/* ********************* WEATHER CHECK CLOSES  ********************/

/* ********************* POPULAR DESTINATIONS STARTS  ********************/

#popular-destinations{
  padding: 6rem 3rem;
}
.destination-wrapper {
  width: 100%;
  height: 50vh;
}


.swiper-2 {
    position: relative;
}


.destination-card {
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  animation: animate-card 0.8s ease-in;
 
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.destination-card:hover .destination-card img {
  transform: scale(1.2);
}

.destination-card:hover .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

}

.destination-card .card-content {
  width: 90%;
  margin: 0 auto;
}

.destination-card .card-content h3 {
  font-size: 1.1rem;
}

.destination-hidden-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  transform: translateY(117%);
  margin-bottom: 10px;
}
.destination-card:hover .destination-hidden-content {
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}

.destination-hidden-content a {
  color: var(--primary-color);
  font-weight: 500;

}

.destination-hidden-content a:hover {
  color: var(--white-color);
}






/* ********************* POPULAR DESTINATIONS CLOSES ********************/

/* ********************* POPULAR COUNTRIES STARTS ********************/

#travel-countries {
  padding: 3rem 3rem;
}

.travel-countries-wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  width: 100%;
  grid-gap: 2rem;
}

.countries-content {
  margin-top: 2rem;
}

.countries-content ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
}

.countries-content ul li {
  margin: 1.5rem 0;
  font-size: 0.8rem;
}

.countries-content ul li i{
  margin: 0rem 0.5rem;
}

.slider-content-wrapper {
  overflow: hidden;
}

.destination-card .card-content {
  margin-bottom: 1rem;
  transform: translateY(70%);
  transition: all 0.5s ease-in-out;
}

.destination-card:hover .card-content{
transform: translateY(0);
}
/* france */

.france-content {
  padding: 8rem 0;
  display: grid;
  grid-template-columns: 3fr 2fr;
  width: 100%;
  grid-gap: 2rem;
}
/* ********************* POPULAR COUNTRIES CLOSES ********************/

/* ********************* TRAVEL BLOG STARTS ********************/

#travel-blog {
  background-color: var(--primary-color);
  padding: 6rem 3rem;
}

#travel-blog h2 span,  #travel-blog p {
   color: var(--white-color);
}

.blog-card h3 {
  color: var(--light-gray);
  
}

.blog-card p {
  font-size: 0.8rem;
 
}
.blog-card {
  position: relative;
  animation: animate-card 0.5s ease-in-out;
}

.blog-card:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.blog-img-overlay {
  width: 100%;
}
.blog-content {
  position: absolute;
  bottom: 20px;
}

.blog-content {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  padding: 1rem 1rem;
  transform: translateY(-50%);
  color: var(--white-color);
  transition: all 0.3s ease-in;

}

.blog-card:hover .blog-content {
  transform: translateY(0%);
}


/* ********************* TRAVEL BLOG CLOSES ********************/


/* ********************* TESTIMONIALS STARTS ********************/

#testimonials {
  padding: 6rem 3rem;
  width: 100%;
  background: url("../Images/profiles/backgroud.jpg") no-repeat center center/cover;
  background-attachment: fixed;
}
#testimonials .section-heading span, #testimonials p {
 color: var(--white-color);
}

.testimonials-wrapper {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--white-color);
  padding: 2rem 6rem;
}

.testimonials-wrapper i {
  color: var(--primary-color);
}
.testimonials-wrapper p {
  text-align: center;
}

.test-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-img img {
  width: 170px;
  height: 170px;
  margin: 1rem 0;
  object-fit: cover;
  border: 1px transparent;
  border-radius: 50%;
}

.icons {
  text-align: center;
}
.guest {
  font-size: 0.75rem;
}

/* ********************* TESTIMONIALS CLOSES ********************/


/* ********************* FOOTER STARTS ********************/


#footer {
  padding: 6rem 3rem 2rem 3rem;
  background: var(--green-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--light-gray);
}

.ft-content {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  color: var(--white-color);
}

.ft-content .icon {
  padding: 0.5rem;
  font-size: 1.5rem;
  background-color: var(--primary-color);
}

.ft-content .content {
  padding: 1rem;
  font-size: 0.8rem;
}

.footer-wraper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1rem 0;
  grid-gap: 2rem;
  color: var(--white-color);
  margin: 4rem 0;
}

.img-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.img-logo p {
  font-size: 1rem;
  font-weight: 400;
}



.about img {
  width: 20%;
  object-fit: cover;
}

.social-media {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 1rem;
}

.social-media li {
  padding: 0.1rem;
  border-radius: 10%;
}

.social-media li:hover {
  background-color: var(--primary-color);
}
.social-media i {
  
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.about .lead {
  font-size: 0.95rem;
  margin-top: 1rem;
}

.links {
  margin-left: 3rem;
}
.links ul {
  list-style-type: none;
}

.links ul li {
  margin: 1rem;
  font-size: 1rem;
}
.links ul li a:hover {
  color: var(--primary-color);
}

.links ul li a {
  color: var(--white-color);
}

.subscribe .lead {
  font-size: 1rem;
  letter-spacing: 1;
}

form {
  position: relative;
}


.subscribe input {
  width: 100%;
  outline:none;
  border: 1px solid var(--light-gray);
  padding: 0.7rem 1rem;
  border-radius: 5px;
  margin-top: 1rem;
}


.subscribe button {
  display: block;
  position: absolute;
  top: 35%;
  transform: translateY(-10%);
  right: 2%;
  padding: 0.5rem 1.5rem;
  outline: none;
  border: none;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: var(--white-color);
  cursor: pointer;
  font-size: 1rem;
}

.footer {
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.footer p {
  text-align: center;
  padding: 0.2rem 0;
  color: var(--white-color);
  margin-top: 0.5rem;
}

.webOwner {
  font-size: 0.8rem;
  color:var(--light-gray);
  padding: 0.2rem;
}
/* ********************* FOOTER CLOSES ********************/

