@import url('https://fonts.googleapis.com/css2?family=BioRhyme:wght@200..800&family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=Great+Vibes&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&family=Yellowtail&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    background: #291718;
    color: #f4efe7;
}

.capsul{
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: inset(33% 33% 33% 33%);
    transition: 0.3s ease-out;
}

.capsuleBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.capsuleLogo{
    position: relative;
    width: 42rem;
    height: 15rem;
    border-radius: 100px;
    background: #2b2724;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.capsuleLogo h1{
    position: relative;
    font-size: 3.8rem;
    font-weight: 400;
    color: #2b2724;
    z-index: 1;
}

.loading{
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #f4f0e7;
    z-index: 0;
}

.page1,
.page2,
.page3
 {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0.5rem;
}

.background {
    position: relative;
    width: 100%;
    height: 100%;
    /* background: url("./images/background1.png");
    background-size: cover;
    background-position: center; */
    border-radius: 3.5rem;
    overflow: hidden;
}

.background img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background .top,
.background .bottom {
    position: absolute;
    width: calc(100% - 1rem);
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
}

.background .top {
    top: 1.5rem;
    /* left: 3rem; */
}

.background .bottom {
    left: 1rem;
    bottom: 2rem;
    align-items: end;
}

.top h1 {
    font-size: 12.5rem;
    font-weight: 500;
    line-height: 10rem;
}

.menuBtn {
    position: relative;
    width: 9rem;
    height: 3.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border-radius: 30px;
    border: none;
}

.menuBtn i {
    position: absolute;
    right: 0.5rem;
    padding: 0.2rem;
    background: #291718;
    color: #f4efe7;
    border-radius: 50%;
    font-size: 2rem;
}

.bottom h3 {
    font-size: 2.5rem;
    width: 20%;
    font-weight: 400;
    line-height: 2.5rem;
}

.bottom h4{
    width: 18rem;
    font-size: 0.9rem;
}

/* style for page2 */
.page2{
    padding: 3rem;
    display: flex;
    align-items: center;
    height: 150vh;
}

.page2 h4{
    margin-top: 5.5rem;
    width: 90%;
    color: white;
    font-size: 6rem;
    font-weight: 400;
    line-height: 6rem;
}

.page2 .bottom{
    position: absolute;
    top: 22%;
    left: 0;
    width: 100%;
    height: 20rem;
    background: #291718;
    opacity: 0.93;
}


.page3{
    padding: 3rem;
    height: 150vh;
}

.page3 .top, .page3 .bottom{
    width: 100%;
}

.page3 .top{
    display: flex;
    align-items: center;
}

.page3 .top .left, .page3 .top .right{
    width: 50%;
    display: flex;
}

.left .imgBox{
    width: 18rem;
  height: 12rem;
  overflow: hidden;
  border-radius: 125px;
}

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

.top .right p{
    font-size: 2.5rem;
    color: #b1a696;
    line-height: 2.5rem;
}

.page3 .bottom{
    margin-top: 10rem;
    /* padding-top: 2rem; */
}

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

.spanCapsules{
    
    height: 22vh;
    width: 60%;
    display: flex;
    flex-wrap: wrap; /* lets them go to a new line if needed */
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */
    gap: 0.2rem; /* spacing between capsules */
   
   
}

.span-p {
   margin-bottom: 2vh;
    width: 100%;
    margin-left: 10vh;
}

.span-p h6{
    width: 30%;
    font-size: 1rem;
    font-weight: 400;
}

.spanCapsules span {
    display: inline-block;
    padding: 0.5rem 1.4rem; /* space inside capsules */
    border: 1px solid #dadada;
    border-radius: 100px;
    font-size: 3rem;
    margin: 4px;
   
}

.spanCapsules span:nth-child(odd) {
    border: 1px solid #B1A696;
    color: #B1A696;
}





.hideBox{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hideBox h2{
    position: relative;
    font-size: 11rem;
    font-weight: 400;
    line-height: 12rem;
}

.hide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #291718;
}

.bottom p{
    margin-top: 10rem;
    width: 50%;
    height: 50%;
    font-size: 2.8rem;
    color: #b1a696;
    line-height: 3rem;
    text-align: justify;

}

/* style for page4 */
.page4{
    position: relative;
    height: 130vh;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page4 .slider{
    width: 100%;
    overflow: hidden;
    height: auto;
    /* background: yellow; */
}

.slider .box{
    position: relative;
    min-width: calc(50rem * 5);
    /* maintain the distance between elements */
    height: 15rem;
    display: flex;
}

.slider .box h3{
    font-size: 10rem;
    width: 50rem;
    position: absolute;
    left: 100%;
    animation: animate var(--time) linear infinite;
    animation-delay: calc((var(--time) / var(--quantity) * (var(--index) - 1)) - var(--time));
}

@keyframes animate {
    to{
        left: -50rem;
    }
}

.page4 .background{
    position: absolute;
    /* width: calc(100vw - 1rem);
    height: calc(100vh - 0.5rem); */
    width: 40rem;
    height: 18rem;
    border-radius: 90px;
    /* have to change it during scroll animation */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page4 .background img{
    transform: scale(1.3);
}

/* text animation */
.topText, .bottomText{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: yellow; */
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.bottomText{
    top: 90%;
}

h4, h3{
    position: relative;
}

.topText h4{
    font-size: 5rem;
    font-weight: 400;
}
.topText h3{
    font-size: 3rem;
}

.bottomText h3{
    width: 30%;
    font-size: 1rem;
    margin-left: 3rem;
}
/* text animation end */

.page4 .background2{
    position: absolute;
    width: calc(100vw - 1rem);
    height: calc(100vh - 1rem);
    border-radius: 3.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    overflow: hidden;
}

.background2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
}

.page5 {
  background-color: #291718;
  height: 100vh;
}

.page5-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page5-text h3 {
  font-size: 1rem;
  margin-bottom: 4vh;
  color: #B1A696;
}

.page5-text h1 {
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
}


.page5-text .hover-link {
  position: relative;
  font-size: 5rem;
  color: #B1A696;
  cursor: pointer;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  z-index: 1;
  user-select: none;
}



.hover-link:hover::before {
  opacity: 1;
  transform: scale(1);
}


.page5-text .hover-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  background-color: #B1A696;
  transform: scaleX(1);
  transform-origin: left;
}


.page5-text .hover-link:hover::after {
  animation: underline-slide 2s forwards;
}

@keyframes underline-slide {
  0% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left;
  }
  51% {
    transform: scaleX(0);
    transform-origin: right;
  }
  100% {
    transform: scaleX(1);
    transform-origin: right;
  }
}

.page5-text .popup {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(0, 0, 0) translate(-50%, -50%) scale(0.5);
  background: #c8c4beb5;
  backdrop-filter: blur(4px);
  padding: 1.5rem 3.5rem;
  border-radius: 100px;
  font-size: 1.5rem;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  will-change: transform, opacity;
  transition: transform 0.1s ease, opacity 0.6s ease;
  z-index: 2;
  color: white;
}

.page5-text .popup span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: black; /* arrow color */
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin-left: 0.5rem;
  font-size: 1.5rem;
}


.page5-text .popup.visible {
  transform: translate3d(0, 0, 0) translate(-50%, -50%) scale(1);
  opacity: 1;
}


.page6 {
  position: relative;
  background: #291718;
  overflow: hidden;
  white-space: nowrap;
  height: 300px;
  display: flex;
  align-items: center;
}

.corner-text {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 1rem;
  color: #B1A696;
  opacity: 0.8;
  line-height: 1.4;
  max-width: 240px;
  
}

.marquee {
  display: inline-block;
  animation: marquee 40s linear infinite;
}

.marquee span {
  font-size: 10rem;
  color: white;
  margin-right: 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.star-symbol {
  display: inline-block;
  transform-origin: center center;
  will-change: transform;
}



.page7{
    position: relative;
    width: 100vw;
    height: 100svh;
    background-color: #291718;
    overflow: hidden;
    
}


.page7 h1{
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.1;
}

.page7 p{
    font-size: 1rem;
    font-weight: 500;
}

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

.sticky-cols{
    padding: 0.5rem;
}

.sticky-cols-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
}

.col{
    position: absolute;
    width: 50%;
    height: 100%;
    will-change: transform;
}

.col h1{
    color: #b1a696;
    width: 60%;
}

.col p {
    color: #B1A696;
    width: 60%;
}

.col-2{
    transform: translateX(100%);
}

.col-3{
    transform: translateX(100%) translateY(100%);
    padding: 0.5rem;
}

.col-4{
    transform: translateX(100%) translateY(100%);
}

.col-content,
.col-img{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
}

.col-content-wrapper,
.col-img-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2b2724;
    border-radius: 3rem;
    overflow: hidden;
}

.col-content-wrapper{
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.col-content-wrapper-2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.col-img-1,
.col-img-2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.col-img-2{
    clip-path: polygon(0% 0%,100% 0%,100% 0%,0% 0%);
}

.col-img-2 img{
    transform: scale(1.25);
}

.line{
    overflow: hidden;
}

.line span{
    display: block;
    will-change: transform;
}

@media (max-width: 1000px) {
    h1{
        font-size: 1.25rem;
    }


    p{
        font-size:0.85rem
    }

    .col h1,
    .col p{
        width: 100%;
    }

    .col-content-wrapper,
    .col-content-wrapper-2{
        padding: 2rem;
    }
}



.page8{
   width: 100vw;
   height: 100vh;
   margin: 2rem;
   margin-top: 6vh;
}

.page8-firstDiv{
    height: 50%;
    display: flex;
    flex-direction: column;
}

.page8-firstDiv p{
 margin: 4vh 0;
 font-weight: 400;
 color: #f4efe7ea;
}

.page8-firstDiv h1{
 color: #F4EFE7;
 font-size: 12rem;
 width: 90%;
 line-height: 10rem;
 font-weight: 400;
}
.page8-secondDiv {
  display: flex;
  gap: 2rem;
  background-color: #1d1a17;
  color: #B1A696;
  padding: 2rem;
}

.page-8leftDiv {
   flex: 0 0 45%;
    margin-right: 3rem;
}

.page-8rightDiv {
  flex: 1;
  font-size: 2.5rem;
  line-height: 1.2;
}

.difficulty-title {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.difficulty {
  display: flex;
  flex-direction: column; /* Stack text over bar */
  margin-bottom: 1.5rem;
}

.difficulty-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.label {
  font-size: 2rem;
}

.duration {
  font-size: 0.9rem;
  color: #a09385;
}

.bar {
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #666;
  position: relative;
  overflow: hidden;
}

.bar span {
  position: absolute;
  height: 100%;
  background: white;
  border-radius: 50px;
}



.page9-slider-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0.5rem;             
  box-sizing: border-box;
  background: #291718;        
}

.page9-slider-track {
  display: flex;
  height: 100%;
  gap: 12px;                   
 
}

.page9-slide {
  flex: 0 0 99%;             
  height: 100%;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

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

.page9-slide-text {
  position: absolute;
  top: 40px;
  left: 40px;
  color: #fff;
  max-width: 620px;
  font-size: 1.5rem;
}

.page10-testimonial {
  background: #291718;
  color: #fff;
  min-height: 100vh;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  gap: 3.2rem;
}

.page10-heading {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  
}

.page10-review {
  display: none;
}

.page10-review.active {
  display: block;
}

.page10-quote {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 500;
  max-width: 1200px;
}

.page10-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.page10-author img {
  width: 10vh;
  height: 8vh;
  border-radius: 40px;
  object-fit: cover;
}

.page10-author strong {
  font-size: 1rem;
}

.page10-author span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.page10-controls {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.page10-arrow {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
}

.page10-arrow:hover {
  background: rgba(255,255,255,0.1);
}

.page10-progress {
  width: 500px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin-top: 2rem;
  position: relative;
}

.page10-progress-bar {
  width: 33.33%; /* 3 reviews */
  height: 100%;
  background: #fff;
  transition: width 0.3s ease;
}

.page10-lastpart{
    display: flex;
    align-items: center;
    justify-content: space-between;
  
   
}



.adventure-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  
}

.adventure-intro {
    position: absolute;
    top: 4rem;
    left: 2rem;
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.4;
    font-weight: bold;
}

.adventure-scroll {
    position: absolute;
    top: 28%;
    transform: translateY(-50%);
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.scroll-inner {
    display: inline-flex;
}

.scroll-inner span {
    font-size: 14vw;
    font-weight: 100;
    padding-right: 4rem;
}

.adventure-nav {
    position: absolute;
    right: 2rem;
    top: 66%;
    transform: translateY(-50%);
}

.adventure-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.adventure-nav li {
    margin: 0.1rem 0;
    font-size: 2rem;
    cursor: pointer;
}

.adventure-social {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
}

.adventure-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
}

.adventure-social a i {
    font-size: 1.5rem;
}

.adventure-social a:hover {
    background: #B1A696;
    color: #000;
}

.adventure-desc {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: end;
}

.adventure-about {
    position: absolute;
    bottom: 12rem; 
    left: 2rem;
    font-size: 2rem;
    line-height: 1.2;
    max-width: 600px;
    color: #B1A696;
}

.adventure-about p {
    padding-bottom: 15px;
}

.adventure-about a {
    color: inherit;
    text-decoration: underline;
    color: white;
}


.footer {
  border-top: 0.2vh solid #a29490;
  background: #291718;
  color: #a29490;
  height: 60vh; /* visible but not full screen */
  padding: 2rem;
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  opacity: 0.8;
}

.footer-top a {
  color: white;
}

.footer-title {
  font-size: 20vw;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  align-items: center;
}

.footer-title span {
  display: inline-block;
  background: linear-gradient(to bottom, #cbbba0, #f5f0e6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}





