@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: rgb(168, 80, 9);
  --primary-color-dark: rgb(153, 153, 8);
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem 1rem 2rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
  
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  gap: 2rem;
}

.nav__logo .logo {
  font-size: 1.5rem;
  color: var(--white);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--text-dark);
}

.nav__btns {
  display: none;
}

 header{
  margin-top: 5rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
header::before{
  position:absolute;
  content: "";
  height: 100%;
  width: 100vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(img/slider-1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  z-index: -1;
} 
.header__container{
  /* display: grid; */
  display: flex;


}
@media (max-width: 1100px) {
  .header__container {
    display: block !important;
    padding: 0 1rem;


  }
  .showcase__container{
    display: block !important;
    width: 100% !important;
    
  }
}
.header__content{
  padding: 4rem 1rem;
  width: 60%;
}


  .header__content p{
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    width: 170%;
    /* color: var(--text-white); */
    color: white;
    text-align: center;
  }
  .header__content h1{
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 600;
    /* color: var(--text-white); */
    color: white;
    line-height: 5rem;
    text-align: center;
  }

  .header__btns{
    display:flex ;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .header__btns .btn{
    padding: 1rem 2rem;
  }
.header__btns a {
  padding: 9px 13px;
  font-size: 1,5rem;
  color: var(--primary-color);
  background-color: var(--white);
  border-radius:100% ;
}
.header__btns a:hover{
color: var(--white);
background-color: var(--primary-color);
}

.destination__container :is(.section__header, .section__description){
  text-align: left;
  margin-inline-start: unset;
}

  .destination__grid{
  margin-top: 3rem;
  display: grid;
  gap: 2rem 1rem;

}
.destination__card img {
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}  


 /* .destination__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}



.destination__card img {
  width: 80%;
  margin-left: 43px;
  height: 250px;
  border-radius: 1.5rem;
  object-fit: cover;
}  */





.destination__card__details{
  padding:1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;


}

.destination__card{
  display: flex;
  gap: 5rem;
}




.destination__card__details h4{
margin-bottom: 5px;
font-size: 1.2rem;
font-weight: 600;
columns: var(--text-dark);
}
.destination__card__details p{
  columns: var(--text-light);
}
.destination__ratings{
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
  transition: 0.3s;
}

.destination__card:hover .destination__ratings{
  background-color: var(--primary-color-dark);
}

.journey__grid{
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card{
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card__bg{
  padding: 2rem;
  background-color:var(--extra-light) ;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.journey__card__bg span{
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4{
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.journey__card__content{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-bottom-left-radius: 1rem;
   border-bottom-right-radius: 1rem;
   transition: 0.3s;
}
  .journey__card:hover .journey__card__content{
    top: 0;
  }

  .journey__card__content span{
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 100%;
  }

  .journey__card__content h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color:var(--white);
  }

  .journey__card__bg p{
   color: var(--extra-light);
  }

  .showcase__container{
    display: grid;
    gap: 2rem;
    overflow: hidden;
  }
  
  .showcase__image img{
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }

  .showcase__content h4{
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .showcase__content p{
    margin-bottom: 1rem;
    color: var(--text-light);
  }

  .showcase__content .btn{
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-image: url(img/showcase2.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    border-radius: 5px;
  }

  .banner__container{
    display: grid;
    gap: 2rem;
  }

  .banner__card{
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--extra-light);
    border-radius: 2rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }

  .banner__card h4{
    font-size: 5rem;
    font-weight: 500;
    color: var(--primary-color);
  }

  .banner__card p{
    color: var(--text-light);

  }

  .discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.destination__card p {
  color: var(--text-light);
}

footer {
  background-color: var(--extra-light);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  background-color: var(--primary-color-dark);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

 

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}
  @media(width > 768px) {
    nav {
      position: static;
      /* padding: 2rem 1rem; */
      max-width: var(--max-width);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .nav__header{
      flex: 1;
      padding: 0;
      background-color: transparent;
    }
    .nav__logo .logo{
      color: var(--text-dark);
    }
    .nav__menu__btn{
      display: none;
    }
.nav__links{
  position: static;
  width: fit-content;
  padding: 0;
  flex-direction: row;
  background-color: transparent;
  transform: none !important;
}

.nav__links a{
  color: var(--text-dark);
}

.nav__links a:hover{
  color: var(--primary-color);
}

.nav__links li:last-child{
  display: none;
}

.nav__btns{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__btns .button{
  padding: 75rem 2rem;
  background-color: var(--text-dark);
}
header{
  margin-top: 15px;
  margin-bottom: 30px;
}
/* .header__container{
  grid-template-columns:
  minmax(0 ,1fr)
repeat(3, minmax(0, calc(var(--max-width)/ 5)))
minmax(0, 1fr) ;

} */
@media (max-width: 768px) {
  .header__container {
    display: block; /* disables grid */
  }

  .header__content {
    margin-bottom: 2rem; /* add spacing between text and form */
  }

  .header__container > div:last-child {
    margin: 0 auto; /* center the form */
    max-width: 420px; /* keep your form box size */
  }
}

.header__content{
grid-column: 1/4;
padding-block: 4rem;
}
.header__content :is(p, h1){
  text-align: left;
}
.header__btns{
  justify-content: flex-start;
}
.header__image{
  grid-column: 4.5/8;
  position: relative;
  isolation: isolate;
  height: 100%;
}
.header__image img{
  position: absolute;
  top: 2rem;
  left: 0;
  height: 100%;
  width: unset;
}
.destination__grid{
  grid-template-columns: repeat(3, 1fr);
}
.journey__grid{
  grid-template-columns: repeat(3, 1fr);
}
.showcase__container{
  grid-template-columns: repeat(3, 1fr);
}

.showcase__content{
  grid-column: 3/4;
} 




.banner__container{
  grid-template-columns: repeat(3, 1fr);
}
.discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__container {
    grid-template-columns: 2fr 1fr 0.5fr 2fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}
  

  @media (width > 1200px) {
  .header__content {
    padding-inline: 8rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}
@media (max-width: 1100px) {
  .header__content h1{
   font-size : 2rem;
   text-align: center !important;
  }
} 
@media (max-width:768px){
  .header__content h1{
    font-size: 3rem;
    width: 160%;
  }
}

.showcase__container {
  display: flex;
  width: 100%;
  justify-content: center;
}
.showcase__video{
  /* width: 500px;
  height: 500px; */
  display: flex;
  justify-content: center;
}

.showcase__video video {
  position: relative;
  /* top: 50%; */
  /* left: 40%; */
  width: 100%;
  height: 100%;
  margin-top: 18rem;
  object-fit: cover;   /* makes the video fill container like background */
  transform: translate(-50%, -50%);
  z-index: -1;         /* push video behind content */
  
}

.showcase__content {
  position: relative;
  color: black;  
  z-index: 1;
  text-align: center;
  padding: 50px 20px;
  top: -50px;
}

.showcase__container::before {
  /* content: ""; */
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); 
  z-index: 0; 
}


/* style="padding-left: 80px padding-top: 50px; left: 350px;"  video style*/
/* Container */
.responsive-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;   /* for responsiveness */
  gap: 20px;
  padding: 20px;
  margin: 20px;
}

/* Video side */
.responsive-video {
  flex: 1 1 500px;
  max-width: 600px;
  /* max-height:; */
}

.video-fluid {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Content side */
.responsive-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.responsive-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.responsive-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.responsive-content p {
  line-height: 1.6;
  font-size: 1rem;
}

/* Mobile view */
@media (max-width: 768px) {
  .responsive-showcase {
    flex-direction: column;
    text-align: center;
  }

  .responsive-video, .responsive-content {
    max-width: 100%;
    max-height: 250px;
  }

  .responsive-content h2 {
    font-size: 1.5rem;
  }
  .destination__card{
    display: flex;
    flex-direction: column;
    

  }
  .px-4{
    /* padding-top: 40px !important; */
    /* margin-top: 3rem !important; */
  }
}

.table-body tr:nth-child(even) {
  background-color: rgb(207, 207, 74);

}



/* whatsapp */
/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Scroll to Top Button */
.to-top-float {
  position: fixed;
  bottom: 20px;
  right: 100px; /* Beside WhatsApp button */
  z-index: 9999;
  background-color: #0dd0a0;
  color: #fff;
  border: none;
  border-radius: 10%;
  width: 160px;
  height: 60px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.to-top-float:hover {
  background-color: #0bb78c;
  transform: scale(1.1);
}

/* Show button when active */
.to-top-float.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    padding: 10px;
  }
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
  .to-top-float {
    right: 95px;
    bottom: 15px;
    width: 100px;
    height: 42px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }
  .to-top-float {
    right: 75px;
    bottom: 12px;
    width: 100px;
    height: 38px;
    font-size: 15px;
  }
}


/* .review__container{
  display: flex;
  flex-direction: row;
  gap: 3rem;
  
}

.section-video{
  height: 400px;
  width: 500px;
}

.review-video{
  height: 100%;
  width: 100%;
}

.section__review{
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 10px 50px 50px 50px;
}

@media (max-width: 768px) {
  
} */

/* ===== Review Section Styling ===== */
.section__container.discover__container {
  padding: 4rem 2rem;
  text-align: center;
  background: #f8f9fa;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 600;
  color: rgb(153, 153, 8);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section__review {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

/* ===== Review Videos Grid ===== */
.review__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  margin-top: 2rem;
}

/* ===== Video Styling ===== */
.section-video {
  position: relative;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.section-video:nth-child(1) { animation-delay: 0.2s; }
.section-video:nth-child(2) { animation-delay: 0.4s; }
.section-video:nth-child(3) { animation-delay: 0.6s; }

.review-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
}

/* Hover Effect */
.section-video:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* ===== Entrance Animation ===== */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section__review {
    font-size: 1.6rem;
  }
  .review__container {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section__header {
    font-size: 1rem;
  }
  .section__review {
    font-size: 1.4rem;
  }
  .section-video {
    max-width: 100%;
  }
}

.app__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}


.app__links img{
  width: 150px;
  height: 50px;
  margin-top: 20px;
}