/* css/style.css */

/* Global */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

/* Top bar */
.top-bar {
  background: #000;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
}
.top-bar a:hover {
  color: #ff5e35;
}

/* Navbar */
#mainNav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 10px 0;
}
.logo {
  max-height: 50px;
}
.navbar-nav .nav-link {
  font-weight: 600;
  color: #000;
  margin: 0 10px;
}
.navbar-nav .nav-link:hover {
  color: #ff5e35;
}
.dropdown-menu {
  background: #000;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
}
.dropdown-item {
  color: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #333;
}
.dropdown-item:hover {
  background: #ff5e35;
  color: #fff;
}
.btn-connect {
  background: #ff5e35;
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  border: none;
}
.btn-connect:hover {
  background: #e04e2b;
  color: #fff;
}
.btn-hamburger {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #000;
}
.btn-hamburger:hover {
  color: #ff5e35;
}

/* Offcanvas */
.offcanvas {
  background: #fff;
}
.offcanvas .tagline {
  color: #ff5e35;
  font-weight: 600;
}
.offcanvas .social-share a {
  color: #000;
}
.offcanvas .social-share a:hover {
  color: #ff5e35;
}

/* Modal */
.modal .btn-connect {
  border-radius: 0;
}

/* Hero Section */
.hero-section {
  min-height: 80vh;
  background: #f8f9fa;
}
.hero-left, .hero-right {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.hero-slider {
  height: 100%;
}
.hero-slider .carousel-item {
  height: 100%;
  background-size: cover;
  background-position: center;
}
.slider-abs {
  position: absolute;
  width: 40%;
  height: 40%;
  z-index: 5;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background: #fff; /* fallback */
}
.slider-abs .carousel-item {
  height: 100%;
  background-size: cover;
  background-position: center;
}
.abs-top-left {
  top: 10%;
  left: 5%;
}
.abs-bottom-right {
  bottom: 10%;
  right: 5%;
}
.abs-top-right {
  top: 10%;
  right: 5%;
}
.abs-bottom-left {
  bottom: 10%;
  left: 5%;
}
.hero-middle {
  background: #fff;
  text-align: center;
  padding: 40px;
}
.hero-middle h1 {
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 992px) {
  .hero-left, .hero-right {
    height: 50vh;
  }
  .slider-abs {
    display: none; /* hide absolute sliders on tablets/mobile for simplicity */
  }
  .hero-middle {
    padding: 30px;
  }
}

/* Dream vacation boxes */
.tour-box {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.tour-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.tour-box h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.tour-box a {
  color: #fff;
  text-decoration: none;
}
.tour-box a:hover {
  text-decoration: underline;
}


/* Packages */

.package-card:hover {
  transform: translateY(-5px);
}
/* .package-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
} */
.package-card .card-body {
  padding: 20px;
}
.package-card .location {
  font-size: 14px;
  color: #777;
}
.package-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.btn-details {
  background: #ff5e35;
  color: #fff;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
}
.btn-details:hover {
  background: #e04e2b;
  color: #fff;
}

/* Flip boxes */
.flip-box {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}
.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.flip-box-front {
  background-color: #000;
}
.flip-box-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  border-radius: 15px;
  z-index: 1;
}
.flip-box-front h3 {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 700;
}
.flip-box-back {
  background-color: #ff5e35;
  transform: rotateY(180deg);
}
.flip-box-back h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}
.flip-box-back .btn {
  background: #fff;
  color: #ff5e35;
  border: none;
  font-weight: 600;
  padding: 5px 15px;
}
.flip-box-back .btn:hover {
  background: #f0f0f0;
}

/* Embrace thrill */
.embrace-thrill .carousel-item img {
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* We Are Adventure video */

.we-are-adventure .carousel-item .row {
  align-items: center;
}
.we-are-adventure .carousel-item img {
  max-height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* make logos white if needed, but original may be colored */
}

/* Stories */
.stories .carousel-item .row img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
}
.testimonial p {
  font-style: italic;
  font-size: 18px;
}

/* Discover adventure progress bars */
.progress-bar {
  background-color: #ff5e35 !important; /* override Bootstrap warning to orange */
}

/* Travel blog */
.blog-card img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
}
.blog-list-item img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.blog-list-item h5 a {
  text-decoration: none;
  font-weight: 600;
}
.blog-list-item h5 a:hover {
  color: #ff5e35 !important;
}
.badge.bg-dark {
  background-color: #000 !important;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Footer */
.footer {
  background: #111;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: #ff5e35;
}
.footer .social-icons a {
  font-size: 20px;
  margin-right: 15px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-middle h1 {
    font-size: 2.5rem;
  }
  .flip-box {
    height: 250px;
  }
  .blog-list-item {
    flex-direction: column;
  }
  .blog-list-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
}

/* destinations */