@import url('https://fonts.googleapis.com/css?family=Trirong:300,300i,400,400i');
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i');
/* flex slider css start */

/* Overlay container */
.slider-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  padding: 20px;
}

/* Heading */
.slider-overlay h1 {
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

/* Paragraph */
.slider-overlay p {
  font-size: 25px;
  font-family: inherit;
  margin-bottom: 25px;
  color: #fff;
}

/* CTA Button */
.slider-overlay .cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ff7700;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.slider-overlay .cta-btn:hover {
  background: #e14b50;
}

.ladakh-trek-section {
  padding: 40px 0;
}

.section-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.ladakh-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.ladakh-content h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.ladakh-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}

/* IMAGE */
.ladakh-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ladakh-grid {
    grid-template-columns: 1fr;
  }

  .ladakh-content h2 {
    font-size: 28px;
  }
}

/* intro text */

.intro-text-section {
  padding: 25px 0 20px;
}

.section-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* H1 */
.intro-text-section h1 {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

/* Paragraphs */
.intro-text-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 5px;
  max-width: 1000px;
}

/* Responsive */
@media (max-width: 991px) {
  .intro-text-section h1 {
    font-size: 30px;
  }

  .intro-text-section p {
    font-size: 16px;
  }
}

/* second trek left img */

.ladakh-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* REVERSE SECTION (image left) */
.ladakh-trek-section.reverse .ladakh-grid {
  grid-template-columns: 1fr 1.2fr;
}

/* IMAGE */
.ladakh-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* MOBILE */
@media (max-width: 991px) {
  .ladakh-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Text first, image below */
  .ladakh-trek-section.reverse .ladakh-image {
    order: 2;
  }

  .ladakh-trek-section.reverse .ladakh-content {
    order: 1;
  }
}

/* grid layout big slider css changes */

/* Improve meta layout */
.showcase-trek .meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.showcase-trek .meta div {
  text-align: center;
}

/* Buttons container */
.trek-buttons {
  margin-top: 15px;
}

/* More Details button */
.trek-buttons .btn-details {
  display: inline-block;
  padding: 10px 18px;
  margin-right: 10px;
  background: #ffffff;
  color: #222;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Book Now button */
.trek-buttons .btn-book {
  display: inline-block;
  padding: 10px 18px;
  background: #ff6b00;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effects */
.trek-buttons .btn-details:hover {
  background: #f2f2f2;
}

.trek-buttons .btn-book:hover {
  background: #e85e00;
}

/* Responsive */
@media (max-width: 768px) {
  .showcase-trek .meta {
    gap: 10px;
  }

  .trek-buttons a {
    display: block;
    margin: 6px auto;
    width: 80%;
  }
}

/* CUSTOMIZE TREK SECTION */

.customize-trek-section {
  padding: 40px 0;
  background: #f7f7f7;
}

.customize-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */

.customize-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.customize-image img:hover {
  transform: scale(1.03);
}

/* TEXT */

.customize-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
}

.customize-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* CTA BUTTON */

.customize-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background: #ff6a00;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.customize-btn:hover {
  background: #e55c00;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .customize-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .customize-content {
    text-align: center;
  }
}

/* grid slider upcoming treks */

.upcoming-treks {
  padding: 80px 0;
  background: #f8f8f8;
}

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

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 16px;
}

.trek-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}

.trek-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.trek-card:hover {
  transform: translateY(-6px);
}

.trek-info {
  padding: 20px;
}

.trek-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.trek-info p {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.trek-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #ff6a00;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.trek-btn:hover {
  background: #e45b00;
}

/* why choose dreamladakh */

.why-choose-trek {
  position: relative;
  padding: 40px 0;
  background: #f7f7f7;
  overflow: hidden;
}

/* mountain illustration */

/* heading */

.why-choose-trek h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

/* white card */

.participate-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: auto;
}

.participate-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

/* list */

.participate-list {
  list-style: none;
  padding: 0;
}

.participate-list li {
  margin-bottom: 22px;
  padding-left: 28px;
  position: relative;
}

.participate-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6a00;
  font-weight: bold;
}

.participate-list strong {
  display: block;
  margin-bottom: 4px;
}

.participate-list p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
