@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 Destination Details Section
--------------------------------------------------------------*/
.travel-destination-details .destination-hero {
  margin-bottom: 80px;
}
.travel-destination-details .destination-hero .hero-image {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .travel-destination-details .destination-hero .hero-image {
    height: 350px;
    border-radius: 15px;
  }
}
.travel-destination-details .destination-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.travel-destination-details .destination-hero .hero-image .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.travel-destination-details .destination-hero .hero-image .hero-content {
  text-align: center;
  color: var(--contrast-color);
}
.travel-destination-details .destination-hero .hero-image .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}
@media (max-width: 768px) {
  .travel-destination-details .destination-hero .hero-image .hero-content h1 {
    font-size: 2.5rem;
  }
}
.travel-destination-details .destination-hero .hero-image .hero-content .hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}
.travel-destination-details .destination-overview {
  margin-bottom: 80px;
  text-align: center;
}
.travel-destination-details .destination-overview h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.travel-destination-details .destination-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.travel-destination-details .attractions-section {
  margin-bottom: 80px;
}
.travel-destination-details .attractions-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.travel-destination-details .attractions-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.travel-destination-details .attractions-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.travel-destination-details .attractions-section .attraction-item {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}
.travel-destination-details .attractions-section .attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}
.travel-destination-details .attractions-section .attraction-item .attraction-image {
  height: 200px;
  overflow: hidden;
}
.travel-destination-details .attractions-section .attraction-item .attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.travel-destination-details .attractions-section .attraction-item .attraction-content {
  padding: 25px;
}
.travel-destination-details .attractions-section .attraction-item .attraction-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.travel-destination-details .attractions-section .attraction-item .attraction-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
}
.travel-destination-details .attractions-section .attraction-item:hover .attraction-image img {
  transform: scale(1.1);
}
.travel-destination-details .tours-section {
  margin-bottom: 80px;
}
.travel-destination-details .tours-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.travel-destination-details .tours-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.travel-destination-details .tours-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.travel-destination-details .tours-section .tour-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}
.travel-destination-details .tours-section .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}
.travel-destination-details .tours-section .tour-card .tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.travel-destination-details .tours-section .tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.travel-destination-details .tours-section .tour-card .tour-image .tour-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}
.travel-destination-details .tours-section .tour-card .tour-content {
  padding: 25px;
}
.travel-destination-details .tours-section .tour-card .tour-content .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span i {
  color: var(--accent-color);
}
.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span.rating {
  color: #ffc107;
}
.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span.rating i {
  color: #ffc107;
}
.travel-destination-details .tours-section .tour-card .tour-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.travel-destination-details .tours-section .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.travel-destination-details .tours-section .tour-card .tour-content .btn-tour {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}
.travel-destination-details .tours-section .tour-card .tour-content .btn-tour:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}
.travel-destination-details .tours-section .tour-card:hover .tour-image img {
  transform: scale(1.1);
}
.travel-destination-details .map-section {
  margin-bottom: 80px;
}
.travel-destination-details .map-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.travel-destination-details .map-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.travel-destination-details .map-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.travel-destination-details .map-section .map-container {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}
.travel-destination-details .map-section .map-container .map-embed {
  height: 400px;
}
.travel-destination-details .map-section .map-container .map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.travel-destination-details .map-section .map-container .map-points {
  padding: 25px;
  background: var(--surface-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.travel-destination-details .map-section .map-container .map-points .point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}
.travel-destination-details .map-section .map-container .map-points .point-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}
.travel-destination-details .map-section .map-container .map-points .point-item span {
  font-weight: 500;
  font-size: 0.95rem;
}
.travel-destination-details .practical-info {
  margin-bottom: 80px;
}
.travel-destination-details .practical-info .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.travel-destination-details .practical-info .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.travel-destination-details .practical-info .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.travel-destination-details .practical-info .info-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: 0.3s;
}
.travel-destination-details .practical-info .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}
.travel-destination-details .practical-info .info-item .info-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.travel-destination-details .practical-info .info-item .info-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}
.travel-destination-details .practical-info .info-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.travel-destination-details .practical-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
}
.travel-destination-details .practical-info .travel-tips {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}
.travel-destination-details .practical-info .travel-tips h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
.travel-destination-details .practical-info .travel-tips .tips-list {
  list-style: none;
  padding: 0;
}
.travel-destination-details .practical-info .travel-tips .tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.travel-destination-details .practical-info .travel-tips .tips-list li i {
  color: var(--accent-color);
  margin-top: 3px;
  font-size: 1.1rem;
}