@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:ital,wght@0,300;0,400;0,500;1,400&display=swap");

/* Swatches in Hex */
:root {
  --voyage-1-hex: #5679a6;
  --voyage-2-hex: #96c6d9;
  --voyage-3-hex: #d9d15f;
  --voyage-4-hex: #d9c7b8;
  --voyage-5-hex: #a68776;
  --voyage-1-rgba: rgba(86, 120, 165, 1);
  --voyage-2-rgba: rgba(149, 197, 216, 1);
  --voyage-3-rgba: rgba(216, 208, 95, 1);
  --voyage-4-rgba: rgba(216, 199, 184, 1);
  --voyage-5-rgba: rgba(165, 135, 117, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: (var(--voyage-4-hex));
}

::-webkit-scrollbar-thumb {
  background-color: var(--voyage-1-hex);
  border-radius: 1px;
}

.loader {
  background: #000;
  background: linear-gradient(45deg, var(--voyage-1-hex), var(--voyage-2-hex));
  backdrop-filter: blur(100px);
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
  transition: 1s ease all;
}

.loader-inner {
  bottom: 0;
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap {
  animation: spin 1200ms cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  width: 100px;
}

.loader-line {
  border: 4px solid transparent;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap:nth-child(1) {
  animation-delay: -50ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
  border-color: #fff;
  height: 70px;
  width: 70px;
  top: 7px;
}

@keyframes spin {
  0%,
  15% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

nav {
  position: absolute;
  width: 80%;
  left: 10%;
  z-index: 99;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--voyage-1-hex);
  border-bottom: 2px solid #384f3d;
  transition: 0.5s all ease-in-out;
}

nav.active {
  position: fixed;
  width: 90%;
  left: 5%;
  z-index: 99;
  top: 0;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--voyage-1-hex);
  border-bottom: 2px solid #384f3d;
  transition: 0.5s all ease-in-out;
  background-color: #ffffff5b;
  backdrop-filter: blur(20px);
  padding: 0 50px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-box-shadow: 5px 5px 24px 1px rgba(86, 120, 165, 0.03);
  box-shadow: 5px 5px 24px 1px rgba(86, 120, 165, 0.79);
}

.brand-logo {
  max-width: 320px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}

.brand-logo img {
  width: 30px;
}

.links {
  width: 600px;
  display: flex;
  font-size: 1.1rem;
  font-weight: 500;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  list-style: none;
  transition: 0.5s all ease-in-out;
}

.links a {
  color: var(--voyage-1-hex);
  text-decoration: none;
}

.link {
  transition: 0.3s all ease;
  cursor: pointer;
}

.link a:hover {
  color: var(--voyage-3-hex);
}

.hamburger div {
  width: 30px;
  height: 4px;
  background-color: #232323;
  margin-bottom: 4px;
  border-radius: 5px;
  transition: 0.5s all ease;
}

.hamburger {
  display: none;
  cursor: pointer;
  transition: 0.5s all ease;
}

.hamburger.is-active div:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active div:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 986px) {
  .hamburger {
    display: block;
  }

  .links {
    position: absolute;
    top: -1000px;
    background-color: rgba(255, 255, 255, 0.911);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 450px;
    font-size: 1.5em;
    padding-top: 80px;
    flex-direction: column;
    left: 0;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    z-index: -1;
    -webkit-box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.562);
    box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.575);
  }

  .navLinkButton {
    width: 80%;
  }

  .links.active {
    top: 0;
  }
}

.navLinkButton {
  background: linear-gradient(
    90deg,
    rgba(149, 197, 216) 0% rgba(86, 120, 165) 100%
  );
  padding: 0.5rem 1rem;
  color: white;
  font-size: 1.5rem;
  border-radius: 10px;
  border: none;
}

.headerWrapper,
.headerContainer {
  height: min-content;
  padding: 100px 0;
  position: relative;
}

.headerContainer {
  background-image: url("../Images/heroBg01.jpg");
  background-size: minmax(cover, 250%);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

.headerWrapper {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.headerInfo {
  width: 40%;
}

.headerTitle {
  font-size: 4rem;
  font-weight: 600;
  background: var(--voyage-3-hex);
  background: -webkit-linea5-gradient(
    to right,
    var(--voyage-3-hex) 0%,
    var(--voyage-5-hex) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--voyage-3-hex) 0%,
    var(--voyage-5-hex) 100%
  );
  background: linear-gradient(
    to right,
    var(--voyage-3-hex) 0%,
    var(--voyage-5-hex) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.headerTitle span {
  text-decoration: underline #000000;
}

.headerDescription {
  width: 65%;
  color: var(--voyage-1-hex);
  font-size: 1.2rem;
}

.headerButton {
  background: var(--voyage-1-hex);
  background: linear-gradient(
    90deg,
    rgba(149, 197, 216, 1) 0%,
    rgba(86, 120, 165, 1) 50%,
    rgba(149, 197, 216, 1) 50%,
    rgba(86, 120, 165, 1) 100%
  );
  background-size: 200%;
  background-position: left;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 80px;
  margin-bottom: 60px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.headerButton:hover {
  background-position: right;
  color: var(--voyage-3-hex);
}

.images {
  animation: headerAnime 3s ease-in-out infinite;
  padding: 20px;
  border-radius: 20px;
  width: 60%;
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 180px 180px 180px;
  grid-auto-flow: dense;
}

.image {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.25s ease-out;
}

.image.tall {
  grid-area: span 2 / auto;
}

.image.wide {
  grid-area: auto / span 2;
}

.image:hover {
  transform: scale(1.2);
  -webkit-box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.8);
  box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.8);
}

@keyframes headerAnime {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

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

.trending {
  background: var(--voyage-1-hex);
  position: relative;
  background-image: url("../Images/heroBg02.jpg");
}

.trendingWrapper {
  display: flex;
  flex-direction: column;
  height: calc(100vh + 10vh);
  justify-content: flex-start;
  position: relative;
}

.trendingTitle {
  font-size: 3rem;
  color: var(--voyage-3-hex);
  margin: 1.5rem auto 1rem auto;
}

.menu {
  width: 80%;
  margin: auto;
}

.item {
  width: 300px;
  height: 600px;
  background-color: #edf0fd;
  margin-left: 100px;
  border-radius: 10px;
  margin: 30px;
}

.placeTitle {
  font-size: 1.5rem;
  color: var(--voyage-1-hex);
  font-weight: 600;
  padding: 20px 20px;
}

.placeTitle span {
  float: right;
}

.placeDescription {
  color: #384f3d;
  padding: 20px 20px;
  margin-top: -30px;
}

.location img {
  height: 20px;
  z-index: 333;
  color: #edf0fd;
  margin-right: 10px;
}

.location {
  background: var(--voyage-1-hex);
  backdrop-filter: blur(5px);
  width: max-content;
  padding: 0 15px;
  color: #edf0fd;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: all 0.3s ease;
}

.item-image {
  height: 300px;
  border-radius: 10px;
  position: relative;
  background-position: center;
  background-size: 10%;
}

.custom-shape-divider-bottom-1630600827 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: svg 20s infinite linear;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1630600827 svg {
  position: relative;
  display: block;
  width: calc(145% + 1.3px);
  height: 150px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1630600827 .shape-fill {
  fill: #fafbff;
}

@keyframes svg {
  0% {
    width: 100%;
  }

  50% {
    width: 300%;
  }

  100% {
    width: 100%;
  }
}

.packages {
  height: min-content;
  width: 100%;
  transition: all 0.5s ease;
  position: relative;
}

.packagesTitle {
  font-size: 3rem;
  color: var(--voyage-3-hex);
  width: 100%;
  margin-top: 50px;
  text-align: center;
}

.packagesContainer {
  margin: auto;
  position: relative;
}

.packagesContent {
  margin: 100px 100px 50px 100px;
  display: grid;
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 50px;
  align-items: stretch;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
}

.package {
  justify-self: center;
  width: 330px;
  border-radius: 10px;
  height: min-content;
  font-size: 1.1rem;
  color: var(--voyage-1-hex);
  padding: 20px 15px;
  -webkit-box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.534);
  box-shadow: 5px 5px 24px 1px rgba(20, 35, 97, 0.507);
  transition: all 0.5s ease;
}

.package img {
  width: 300px;
  height: 200px;
  border-radius: 10px;
}

.explorePackage {
  background: rgb(149, 197, 216);
  background: linear-gradient(
    90deg,
    rgba(149, 197, 216, 1) 0%,
    rgba(86, 120, 165, 1) 50%,
    rgba(149, 197, 216, 1) 50%,
    rgba(86, 120, 165, 1) 100%
  );
  background-size: 200%;
  background-position: left;
  width: 100%;
  margin: auto;
  color: white;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  border: none;
  margin-top: 10px;
  font-size: 1.2rem;
  transition: all 0.5s ease;
  cursor: pointer;
}

.explorePackage:hover {
  color: var(--voyage-3-hex);
  background-position: right;
}

.packages__link {
  margin-bottom: 50px;
  text-align: center;
  a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--voyage-1-hex);
    transition: 0.5s ease-in-out;
  }
}

.packages__link:hover {
  a {
    color: var(--voyage-3-hex);
  }
}

footer {
  background: var(--voyage-1-hex);
  color: white;
}

.footerDetails {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 20px;
}

.footerDescription {
  border-right: 2px solid rgba(255, 255, 255, 0.281);
  padding-right: 30px;
  width: 55%;
  height: min-content;
}

.footerTitle,
.contactTitle {
  margin-bottom: 10px;
  color: var(--voyage-3-hex);
}

.footerContact {
  margin: 50px;
  width: 45%;
  text-align: center;
}

.contactOptions {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 30px;
}

.footerPara,
.contactPara {
  font-size: 16px;
  color: #ffffff;
}

.footerCopyright {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 10px 0;
  background: var(--voyage-2-rgba);
}

@media screen and (max-width: 989px) {
  .footerCopyright {
    flex-direction: column;
    row-gap: 20px;
  }
}

.footerReg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  color: var(--voyage-1-hex);
  font-weight: 500;
}

.footerReg h3 {
  font-size: 1rem;
}

.footerReg img {
  width: 30px;
}

.footerCopyright span {
  color: var(--voyage-1-hex);
  font-weight: 500;
}

.contactOption img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

@media screen and (max-width: 1400px) {
  .trendingWrapper {
    height: calc(100vh + 20vh);
  }

  .images {
    width: 60%;
  }

  .Packages {
    height: auto;
  }

  .headerWrapper {
    justify-content: space-between;
  }

  .image:nth-child(1),
  .image:nth-child(4) {
    display: none;
  }

  .headerInfo {
    width: 100%;
  }

  .images {
    width: 400px;
    grid-template-columns: 200px 200px;
    grid-template-rows: 150px 150px 150px;
    justify-content: flex-end;
  }
  .quote {
    padding-bottom: 0px;
  }

  .headerWrapper,
  .headerContainer {
    height: min-content;
    padding: 100px 0;
    position: relative;
  }
}

@media screen and (max-width: 1140px) {
  .headerWrapper {
    flex-direction: column;
    padding: 20px 0;
  }

  .Packages {
    height: auto;
  }

  .factContent {
    width: 100%;
  }

  .image:nth-child(6) {
    display: none;
  }

  .images {
    margin: 50px 0;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
    justify-content: flex-end;
  }

  .menu-wrapper {
    width: 100%;
  }

  .packagesContent {
    margin: 50px 100px 50px 100px;
    grid-template-columns: repeat(2, minmax(360px, 1fr));
    height: 1000px;
  }

  .item {
    margin-left: 10px;
  }
}

@media screen and (max-width: 985px) {
  .footerDetails {
    flex-direction: column;
  }

  .footerDescription {
    border: none;
    border-bottom: 2px solid #a4b9e785;
    width: 90%;
    padding: 0 10px 30px 0;
  }

  .footerContact {
    margin: auto;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 830px) {
  .packagesContent {
    margin: 50px 100px 150px 100px;
    grid-template-columns: repeat(1, minmax(360px, 1fr));
    height: max-content;
  }

  .Packages {
    height: min-content;
  }

  .footerContact {
    width: 80%;
    margin-top: 50px;
  }

  .contactOptions {
    justify-content: space-between;
  }

  .footerCopyright {
    height: min-content;
    text-align: center;
  }
}

@media screen and (max-width: 550px) {
  .headerTitle {
    font-size: 2.5rem;
  }

  .headerDescription {
    width: 80%;
  }

  .headerButton {
    margin-top: 45px;
    font-size: 1.2rem;
    width: 80%;
  }

  .cocoIcon {
    height: 80px;
    right: -100px;
    top: -70px;
  }

  .quote {
    width: 90%;
  }

  .author {
    text-align: end;
  }

  .brand-logo {
    margin: 20px;
    font-size: 1.6rem;
  }

  .brand-logo img {
    width: 25px;
  }

  .hamburger {
    margin: 20px;
  }

  .image:nth-child(5),
  .image:nth-child(2) {
    display: none;
  }

  .images {
    margin: 50px 0;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 150px;
    justify-content: flex-end;
  }

  .image {
    transform: scale(1.2);
    -webkit-box-shadow: 5px 5px 24px 1px rgb(20 35 97 / 80%);
    box-shadow: 5px 5px 24px 1px rgb(20 35 97 / 80%);
  }

  .custom-shape-divider-bottom-1630587725,
  .custom-shape-divider-bottom-1631607238 {
    width: 150%;
  }

  .custom-shape-divider-bottom-1630600827 {
    width: 150%;
  }

  .custom-shape-divider-bottom-1630608832 {
    width: 150%;
  }

  .trendingWrapper {
    height: min-content;
    padding-bottom: 180px;
  }

  .trending {
    height: min-content;
  }

  .trendingTitle {
    font-size: 2rem;
    text-align: center;
  }
}

.swal2-confirm {
  background-color: var(--voyage-1-hex) !important;
}

@media screen and (max-width: 450px) {
  .brand-logo {
    margin: 20px;
    font-size: 1.2rem;
  }

  .brand-logo img {
    width: 20px;
  }
}

/* Bookings Section */
.bookings {
  background: url("../Images/heroBg01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bookings__header {
  width: 65%;
  text-align: center;
  margin-top: 60px;
}

.bookings__header h1 {
  margin: 60px 0 10px 0;
  font-size: 2.5rem;
  color: var(--voyage-1-hex);
}

@media screen and (max-width: 998px) {
  .bookings__header h1 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .bookings__header h1 {
    font-size: 1.5rem;
  }
}

.bookings__header p {
  width: 60%;
  color: var(--voyage-1-hex);
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .bookings__header p {
    display: none;
  }
}

.bookings__form {
  width: 100%;
  height: max-content;
  margin: 0 auto;
  padding: 30px;
}

.bookings__form form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin: 0 auto;
  max-width: 600px;
}

.bookings__form label {
  color: var(--voyage-1-hex);
  font-weight: 600;
  margin-bottom: 10px;
}

.form__input_phone {
  display: flex;
}

.form__input_phone select {
  width: 33% !important;
}

.form__input input[type="text"],
.form__input input[type="email"],
.form__input input[type="number"],
.form__input input[type="date"],
.form__input select,
.form__input > textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--voyage-2-hex);
}

.form__input > textarea {
  max-height: 80px;
  min-height: 80px;
  max-width: 100%;
  min-width: 100%;
}

.form__input button {
  display: block;
  margin-left: auto;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--voyage-1-hex);
  background: linear-gradient(
    90deg,
    rgba(149, 197, 216, 1) 0%,
    rgba(86, 120, 165, 1) 50%,
    rgba(149, 197, 216, 1) 50%,
    rgba(86, 120, 165, 1) 100%
  );
  background-size: 200%;
  background-position: left;
  color: white;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.form__input button:hover {
  background-position: right;
  color: var(--voyage-3-hex);
}

@media screen and (max-width: 768px) {
  .form__input button {
    width: 100%;
  }
}

.floatingCTA {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.floatingCTA a {
  display: block;
  background-color: var(--voyage-1-hex);
  border: none;
  text-decoration: none;
  color: #fff;
  width: min-content;
  padding: 5px 15px 15px 5px;
  border-radius: 0 0 60px 0;
  font-size: 0.8rem;
  font-weight: bold;
}

@media screen and (min-width: 987px) {
  .floatingCTA {
    display: none;
  }
}
