@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:ital,wght@0,300;0,400;0,500;1,400&display=swap");
: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;
}

.header {
  height: 100vh;
  background: url("../Images/heroBg02.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;
}

.custom-shape-divider-bottom-1631284277 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: svg 20s infinite linear;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1631284277 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 76px;
}

.custom-shape-divider-bottom-1631284277 .shape-fill {
  fill: #ffffff;
}

.header-content {
  width: 65%;
  text-align: center;
}

.header-content h1 {
  color: var(--voyage-1-hex);
  font-size: 2.5rem;
}

.textHighlight {
  color: var(--voyage-3-hex);
}

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

.scrollButton {
  background: rgb(20, 36, 94);
  background: linear-gradient(
    90deg,
    rgba(20, 36, 94, 1) 0%,
    rgba(5, 14, 47, 1) 50%,
    rgba(24, 60, 125, 1) 50%,
    rgba(9, 23, 50, 1) 100%
  );
  background-size: 200%;
  background-position: left;
  transition: 0.5s ease-in-out;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 1.5rem;
  border-radius: 10px;
  border: none;
  display: flex;
  cursor: pointer;
}

.scrollButton:hover {
  background-position: right;
  transform: scale(1.05);
}

.scrollContainer {
  position: absolute;
  justify-self: center;
  bottom: 100px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.scrollButton img {
  color: var(--voyage-1-hex);
  margin-right: 10px;
  width: 25px;
}

.pageName-container {
  position: absolute;
  top: 20vh;
  left: 10%;
  font-size: 1.2rem;
}

.page {
  color: var(--voyage-1-hex);
}

.places-content {
  width: 80%;
  background: #ffffff;
  margin: 80px auto;
  margin-bottom: 0;
  padding-bottom: 200px;
  position: relative;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, 350px);
  grid-column-gap: 20px;
  grid-row-gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;

  transition: all 0.5s ease;
}

.places {
  width: 100%;
  position: relative;
}

.destination {
  width: 350px;
  height: 200px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.country {
  border-top: #14236121 solid 2px;
  margin-top: 50px;
}

.country:first-child {
  border-top: none;
}

.destination:hover .overlay {
  opacity: 1;
}

.title {
  font-size: 2rem;
  margin-bottom: 10px;
  margin-top: 30px;
}

.model {
  position: fixed;
  display: block;
  width: 100%;
  height: 0vh;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.5s ease;
  background: #1a203f86;
}

.model.active {
  height: 100vh;
}

.modelContent {
  bottom: -1000px;
  left: -1000px;
  display: none;
  animation: modal 0.5s ease reverse;
}

@keyframes modal {
  0% {
  }

  100% {
    transform: translateY(1000px);
  }
}

.modelContent.active {
  background: #ffffff;
  position: fixed;

  width: 80%;
  height: 80vh;
  display: block;
  top: 10vh;
  left: 10%;
  border-radius: 10px;
  z-index: 9999;
  overflow: scroll;
  overflow-x: hidden;
  transition: all 0.5s ease-in-out;
}

.overlay {
  background: #07103bc7;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  width: 350px;
  height: 200px;
  border-radius: 10px;
  position: relative;
  transition: all 0.5s ease;
}

.moreInfo {
  margin-top: 10px;
  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;
}

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

.contentHeader {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 50px;
}

.images {
  border-radius: 20px;
  width: 40%;
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 150px 150px; /* have to use auto fill for responsive (or not display some img) */
  grid-auto-flow: dense;
}

.details {
  width: 57%;
}

.details h1 {
  font-size: 2rem;
  color: var(--voyage-1-hex);
  margin-bottom: 20px;
}

.details p {
  color: var(--voyage-1-hex);
  margin-bottom: 20px;
}

.placeTitle {
  font-size: 4rem;
  color: var(--voyage-1-hex);

  margin-bottom: 20px;
}

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

.image {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.4s ease-out;
  -webkit-filter: grayscale(10%);
  filter: 100%;
}

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

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

.image:hover {
  border-radius: 7px;
  transform: scale(1.3);
  z-index: 99;
  -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);
  -webkit-filter: grayscale(0%);
  filter: 100%;
}

.closeButton {
  position: absolute;
  right: 30px;
  top: 20px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: bold;
  background: var(--voyage-3-hex);
  transition: 0.5s ease;
  cursor: pointer;
}

.closeButton:hover {
  transform: rotate(90deg);
}

.facts {
  padding: 0 50px 50px 50px;
  width: 90%;
}

.factTitle {
  font-size: 1.8rem;
  color: var(--voyage-1-hex);
  margin-bottom: 20px;
}

.factHighlight {
  color: var(--voyage-3-hex);
}

.factContainer {
  color: var(--voyage-1-hex);
}

.factContainer li {
  margin-bottom: 10px;
  margin-left: 20px;
}

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;
}

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

  50% {
    width: 300%;
  }

  100% {
    width: 100%;
  }
}

.custom-shape-divider-bottom-1631607238 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: svg 20s infinite linear;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1631607238 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 101px;
}

.custom-shape-divider-bottom-1631607238 .shape-fill {
  fill: #142361;
}

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

  .images {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 150px 150px;
    width: 80%;
  }

  .details {
    width: 100%;
  }
}

@media screen and (max-width: 830px) {
  .footerDescription {
    margin: auto;
  }

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

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

  .footerCopyright {
    height: min-content;
    text-align: center;
    padding: 0.5rem 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}

@media screen and (max-width: 730px) {
  .images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px;
  }

  .modelContent.active {
    width: 94%;
    left: 3%;
    height: 90vh;
    top: 5vh;
  }
}

@media screen and (max-width: 550px) {
  .images {
    grid-template-columns: 1fr;
    grid-template-rows: 150px 150px 150px;
  }

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

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

  .header {
    padding: 25vh 0;
    height: min-content;
  }

  .destinations {
    grid-template-columns: repeat(auto-fit, 355px);
    margin-bottom: 100px;
  }

  .places-content {
    margin: auto;
    width: 95%;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .header-content {
    width: 90%;
  }

  .header-content p {
    width: 80%;
    margin-bottom: 50px;
  }

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

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

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

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

@media screen and (max-width: 1300px) {
  .images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px;
  }
}

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

  .images {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 150px 150px;
    width: 80%;
  }

  .details {
    width: 100%;
  }
}

@media screen and (max-width: 730px) {
  .images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px;
  }

  .modelContent.active {
    width: 94%;
    left: 3%;
    height: 90vh;
    top: 5vh;
  }
}

@media screen and (max-width: 550px) {
  .images {
    grid-template-columns: 1fr;
    grid-template-rows: 150px 150px 150px;
  }

  .header {
    padding: 22vh 0;
    height: min-content;
  }

  .destinations {
    grid-template-columns: repeat(auto-fit, 355px);
    margin-bottom: 100px;
  }

  .places-content {
    margin: auto;
    width: 95%;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .header-content {
    width: 90%;
  }

  .header-content p {
    width: 80%;
    margin-bottom: 50px;
  }
}

.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;
  }
}

.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;
  }
}
