@charset "UTF-8";
html { 
  --default-color: #2f2a25; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1c4b56; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5b4632; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
/*--------------------------------------------------------------
# Travel Tour Details Section
--------------------------------------------------------------*/
.travel-tour-details .tour-hero {
  margin-bottom: 60px;
}
.travel-tour-details .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.travel-tour-details .tour-hero .hero-image-wrapper img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-image-wrapper img {
    height: 350px;
  }
}
.travel-tour-details .tour-hero .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--contrast-color);
  padding: 60px 40px 40px;
}
@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-overlay {
    padding: 40px 20px 20px;
  }
}
.travel-tour-details .tour-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}
@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-content h1 {
    font-size: 2rem;
  }
}
.travel-tour-details .tour-hero .hero-content .hero-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-content .hero-meta {
    gap: 15px;
  }
}
.travel-tour-details .tour-hero .hero-content .hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.travel-tour-details .tour-hero .hero-content .hero-meta span i {
  font-size: 1.1rem;
  color: var(--accent-color);
}
.travel-tour-details .tour-hero .hero-content .hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-content .hero-tagline {
    font-size: 1rem;
  }
}
.travel-tour-details .tour-hero .hero-content .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.travel-tour-details .tour-hero .hero-content .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.travel-tour-details .tour-overview {
  margin-bottom: 60px;
}
.travel-tour-details .tour-overview h3 {
	font-size: 2.2rem;
	margin-bottom: 20px;
	color: var(--heading-color);
}
.travel-tour-details .tour-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--default-color);
}
.travel-tour-details .tour-overview .tour-highlights {
  background: var(--surface-color);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.travel-tour-details .tour-overview .tour-highlights h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}
.travel-tour-details .tour-overview .tour-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.travel-tour-details .tour-overview .tour-highlights ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--default-color);
}
.travel-tour-details .tour-overview .tour-highlights ul li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}