/* RESET */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:#ffffff;
  color:#111;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}


/* HERO */

.hero{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-video{
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.home-hero-content{
  position:relative;
  z-index:2;
  height:100%;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
  color:white;
  padding:20px;
}

.hero-subtitle{
  letter-spacing:4px;
  font-size:14px;
  margin-bottom:20px;
}

.home-hero-content h1{
  font-size:80px;
  line-height:1.1;
  margin-bottom:25px;
}

.home-hero-content p{
  font-size:20px;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  padding:16px 34px;
  border-radius:50px;
  transition:0.3s;
  font-weight:bold;
}

.btn-primary{
  background:#d4a017;
  color:white;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  border:1px solid white;
  color:white;
}

.btn-secondary:hover{
  background:white;
  color:black;
}


/* SECTION */

section{
  padding:100px 7%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#d4a017;
  letter-spacing:3px;
  font-size:14px;
}

.section-title h2{
  font-size:46px;
  margin-top:15px;
}


/* PROMO */

.promo-card{
  background:#111;
  color:white;
  border-radius:30px;
  padding:50px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}

.promo-badge{
  background:#d4a017;
  padding:8px 16px;
  border-radius:50px;
  font-size:12px;
  display:inline-block;
  margin-bottom:20px;
}

.promo-card h2{
  font-size:42px;
  margin-bottom:15px;
}

.promo-card p{
  max-width:600px;
  line-height:1.8;
}

.promo-btn{
  background:white;
  color:black;
  padding:16px 30px;
  border-radius:50px;
  font-weight:bold;
}


/* TOUR */

.tour-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.tour-card{
  background:white;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
}

.tour-card:hover{
  transform:translateY(-10px);
}

.tour-image{
  overflow:hidden;
}

.tour-image img{
  height:300px;
  object-fit:cover;
  transition:0.5s;
}

.tour-card:hover img{
  transform:scale(1.08);
}

.tour-content{
  padding:30px;
}

.tour-content h3{
  font-size:28px;
  margin-bottom:15px;
}

.tour-content p{
  line-height:1.8;
  color:#666;
  margin-bottom:25px;
}

.tour-link{
  color:#d4a017;
  font-weight:bold;
}


/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.gallery-grid img{
  border-radius:24px;
  height:320px;
  object-fit:cover;
  transition:0.4s;
}

.gallery-grid img:hover{
  transform:scale(1.03);
}


/* WHY US */

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.why-card{
  padding:45px;
  border-radius:28px;
  background:#f8f8f8;
  transition:0.4s;
}

.why-card:hover{
  transform:translateY(-8px);
}

.why-card i{
  font-size:42px;
  color:#d4a017;
  margin-bottom:25px;
}

.why-card h3{
  margin-bottom:15px;
  font-size:24px;
}

.why-card p{
  color:#666;
  line-height:1.8;
}


/* TESTIMONIAL */

.testimonial-card{
  background:#111;
  color:white;
  border-radius:30px;
  padding:70px;
  text-align:center;
}

.testimonial-card p{
  font-size:26px;
  line-height:1.8;
  margin-bottom:30px;
}

.testimonial-card h4{
  color:#d4a017;
}


/* CTA */

.cta-section{
  background:url('/image/cta-bg.jpg') center/cover;
  position:relative;
}

.cta-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.cta-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:white;
}

.cta-content h2{
  font-size:54px;
  margin-bottom:20px;
}

.cta-content p{
  margin-bottom:35px;
  font-size:20px;
}


/* ANIMATION */

.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}


/* MOBILE */

@media(max-width:992px){

  section{
    padding:80px 5%;
  }

  .home-hero-content h1{
    font-size:56px;
  }

  .section-title h2{
    font-size:38px;
  }

  .promo-card{
    padding:40px;
  }

  .promo-card h2{
    font-size:34px;
  }

  .testimonial-card{
    padding:50px 35px;
  }

  .testimonial-card p{
    font-size:22px;
  }

}


@media(max-width:768px){

  .hero{
    height:90vh;
  }

  .home-hero-content h1{
    font-size:42px;
  }

  .home-hero-content p{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
    width:100%;
    max-width:300px;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    text-align:center;
  }

  .section-title h2{
    font-size:32px;
  }

  .promo-card{
    padding:35px 25px;
  }

  .promo-card h2{
    font-size:28px;
  }

  .tour-content{
    padding:25px;
  }

  .tour-content h3{
    font-size:24px;
  }

  .why-card{
    padding:35px;
  }

  .testimonial-card{
    padding:40px 25px;
  }

  .testimonial-card p{
    font-size:18px;
  }

  .cta-content h2{
    font-size:38px;
  }

}


@media(max-width:480px){

  .home-hero-content h1{
    font-size:34px;
  }

  .hero-subtitle{
    font-size:12px;
  }

  .section-title h2{
    font-size:28px;
  }

  .gallery-grid img{
    height:250px;
  }

}