@import url('https://fonts.googleapis.com/css2?family=Varela&display=swap');

:root {
  --primary-color: #669ccb;
  --primary-color-dark: #5681a7;
  --secondary-color: #e8f1fa;
  --text-dark: #282d31;
  --text-light: #767268;
  --extra-light: #f3f4f6;
  --bg-subtext: rgb(59, 114, 114);
  --bg-accent: rgba(23, 187, 187, 0.169);
  --bg-primary: darkslategray;
  --swiper-theme-color: darkslategray !important;
  --hover-accent: #3a5f5f;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Varela', sans-serif;
}

.row {
  --bs-gutter-x: 0 !important;
}

.section-title {
  color: darkslategray;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: calc(20px + 1vw);
}

body {
  font-family: 'Roboto', sans-serif;
}

/* ------------------------ */
/* Nav */
.navbar {
  transition: background-color 0.3s ease-in;
}

.navbar.scrolled {
  background-color: darkslategrey;
}

.navbar-brand,
.footer-brand {
  color: white;
  font-weight: 900;
}

.navbar-toggler {
  border: none !important;
  padding: 0 !important;
}

.navbar a {
  color: white;
}

.navbar a:visited,
.navbar a:active {
  color: white;
}

.nav-item {
  font-size: 1.25rem;
}

.offcanvas {
  background-color: var(--bg-primary) !important;
  width: 60vw !important;
}

.logo {
  width: 200px;
  height: 50px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp,
.back-to-top {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: fixed;
  top: 85%;
  right: 15px;
  z-index: 3;
  border: none;
  outline: none;
  background-color: #25d366;
  color: white;
}
.back-to-top {
  top: 92%;
}

.back-to-top:active {
  background-color: var(--bg-accent);
}

/* Hero Section------  -----Hero Section----------------Hero Section-------------Hero Section---------------------- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--extra-light);
  padding: 0 20px;
}

.hero-content p {
  font-size: calc(16px + 0.5vw);
  max-width: 700px;
}

.background-video,
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.background-video {
  display: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content h1 {
  font-weight: 600;
}

.hero-content p {
  text-align: center;
}

.hero-explore,
#hero-explore,
#learn-more {
  border-radius: 0.375rem;
  background-color: var(--bg-primary);
  color: white;
  transition: background-color 0.3s;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  width: 10rem;
}

#learn-more {
  background-color: transparent;
  outline: 1px solid grey;
}

#hero-explore:hover,
.hero-explore:hover {
  background-color: var(--hover-accent);
}

/* About section */

.about-section-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  letter-spacing: 2px;
}

.about-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: var(--bg-subtext);
  padding: 0 1rem;
}

.about-text-container {
  flex: 1;
  text-align: center;
}

.about-text-container p {
  color: var(--text-primary);
  font-size: 24px;
}

@media screen and (min-width: 992px) {
  .whatsapp,
  .back-to-top {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  .whatsapp {
    top: 75%;
  }

  .back-to-top {
    top: 87%;
  }

  .hero-content {
    height: 90%;
  }

  .about-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .about-image-container {
    height: 500px;
  }

  .about-text-container p {
    text-align: left;
  }

  .about-image-container {
    max-width: 50%;
  }

  .about-text-container {
    max-width: 50%;
  }

  .reviews-swiper {
    height: 250px !important;
  }
}

@media screen and (max-width: 991px) {
  .about-text-container,
  .about-text-container p {
    font-size: 17px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-align: center;
    letter-spacing: 2px;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* Destinations Section--------Destinations Section----------------Destinations Section-------------Destinations Section---------------------- */
.destinations {
  width: 100%;
}

.destinations-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.destination-slide {
  position: relative;
  padding-top: 4px;
}

.destination-img-container {
  width: 100%;
  height: 400px;
}

.destination-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 40px;
}

.destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Special Offers */
.special-offers {
  height: 60vh;
}

.offer-container {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  position: relative;
  background-color: var(--bg-primary);
  color: white;
  background-image: url('https://images.unsplash.com/photo-1696492197617-ff44abdd3e1c?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-position: bottom;
  background-size: cover;
}

.offer-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.offer-details {
  position: absolute;
  z-index: 1;
}

.offer-punch-container {
  background: hsla(33, 100%, 53%, 1);

  background: linear-gradient(
    90deg,
    hsla(33, 100%, 53%, 1) 0%,
    hsla(58, 100%, 68%, 1) 100%
  );
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.offer-details h1 {
  text-shadow: 2px 2px 4px rgb(46, 117, 46);
}

.offer-details p {
  font-size: 20px;
  letter-spacing: 1px;
}

.special-btn {
  color: white;
  transition: background-color 0.3s;
  font-size: 1rem !important;
  padding: 0.75rem 2rem !important;
}
/* Packages */
.services {
  background-color: var(--bg-accent);
}

.packages {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('./assets/landing-page/tour-packages-banner.jpg') center/cover;
}

.cabs {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('./assets/landing-page/taxi-services-banner.jpg') center/cover;
}

.content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}

.explore {
  margin-top: 0.5rem;
  background-color: var(--bg-primary);
  color: white;
  padding: 0.7rem 2rem;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border: none;
  outline: none;
  text-decoration: none;
}

@media screen and (min-width: 800px) {
  .packages,
  .cabs {
    height: 400px;
    border-radius: 15px;
  }

  .packages::after,
  .cabs::after {
    border-radius: 15px;
  }
}

.packages::after,
.cabs::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/*===================================== FEATURES========================================= */

.row-services {
  width: 100%;
}

.card-services-one,
.card-services-two,
.card-services-three {
  padding: 1rem 0;
  cursor: pointer;
  text-align: center;
  max-width: 370px !important;
}

.card-services-one h3,
.card-services-two h3,
.card-services-three h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 1em 0;
}

.icon-wrapper-services {
  background-color: var(--bg-primary);
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background-color 0.5s, color 0.5s;
}

.card-services-one:hover .icon-wrapper-services,
.card-services-two:hover .icon-wrapper-services,
.card-services-three:hover .icon-wrapper-services {
  background-color: #ffffff;
  color: var(--bg-primary);
}

/* Gallery */
.gallery {
  background-color: var(--bg-accent);
}

.gallery-swiper {
  width: 100%;
  height: 500px;
}

.gallery-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------TESTMONIAL SECTION-------------------------- */
/* Reviews */

.reviews-swiper {
  width: 90%;
  height: 300px;
}

.reviews-slide {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  font-size: 18px;
  background-color: rgba(23, 187, 187, 0.169);
  padding: 10px 14px;
}

.review-text {
  border-radius: 16px;
  padding: 10px 5px;
  font-size: 16px;
  line-height: 1.8;
  height: 100%;
  overflow: auto;
  margin-bottom: 4px;
}

.reviewer-profile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.picture {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.picture img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  color: #083149;
}

.fa-star {
  color: gold;
}

.google-logo-container {
  text-align: center;
}

.google-logo-container a {
  text-decoration: none;
}

.google-logo-container h3 {
  margin-bottom: 0;
}

/*----------------------------- FOOTER SECTION--------------------------------------------- */

.footer-distributed {
  background-color: darkslategrey;
}

.footer-top,
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 200px;
  height: 30px;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

/* .footer-center div {
  margin: 10px 0;
} */

.footer-center i {
  margin-right: 0.5rem;
  color: white;
}

.footer-center a {
  color: white;
  text-decoration: none;
}

.footer-bottom,
.social-links {
  text-align: center;
}

.social-links h4 {
  font-size: 1.3rem;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.4rem;
  transition: all 0.4s ease;
}

.social-icons a:hover {
  color: darkslategray;
  border-color: #ffffff;
}

.line-footer,
.footer-copyright {
  color: white;
}
.footer-copyright {
  text-align: center;
  font-size: 14px;
}

/* Media Query for larger screens (Desktop) */
