/* ===== M Travel: Spirit of Burundi Section ===== */
:root{
  --mtb-brand: #12bece;         /* M Travel accent */
  --mtb-ink: #0f172a;           /* Headings / dark text */
  --mtb-body: #334155;          /* Body text */
  --mtb-bg: #ffffff;            /* Section background */
  --mtb-muted: #f1f5f9;         /* Light cards */
  --mtb-radius: 16px;
  --mtb-shadow: 0 10px 24px rgba(2, 8, 23, 0.08);
}

.mtb-soul{
  background: var(--mtb-bg);
  padding: clamp(32px, 6vw, 72px) 16px;
}

.mtb-wrap{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;   /* text | gallery */
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.mtb-text h2{
  color: var(--mtb-ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.mtb-text p{
  color: var(--mtb-body);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  margin: 0 0 14px;
}

.mtb-text .mtb-highlight{
  border-left: 4px solid var(--mtb-brand);
  padding-left: 14px;
  margin-top: 14px;
  font-weight: 600;
  color: var(--mtb-ink);
}

/* Buttons */
.mtb-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn-primary,
.btn-ghost{
  display: inline-block;
  padding: 12px 18px;
  border-radius: calc(var(--mtb-radius) - 6px);
  text-decoration: none;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  border: 2px solid transparent;
}

.btn-primary{
  background: var(--mtb-brand);
  color: #fff;
  box-shadow: var(--mtb-shadow);
}
.btn-primary:hover{
  transform: translateY(-2px);
}

.btn-ghost{
  background: transparent;
  color: var(--mtb-ink);
  border-color: var(--mtb-brand);
}
.btn-ghost:hover{
  background: var(--mtb-muted);
}

/* Two-Image Gallery */
.mtb-gallery{
  position: relative;
  display: grid;
  gap: 16px;
}

.mtb-card{
  background: var(--mtb-muted);
  border-radius: var(--mtb-radius);
  overflow: hidden;
  box-shadow: var(--mtb-shadow);
}

.mtb-card img{
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;            /* keep a nice shape */
  object-fit: cover;
}

.mtb-card figcaption{
  padding: 10px 12px;
  font-size: 14px;
  color: var(--mtb-body);
}

/* Subtle stacked effect on large screens */
@media (min-width: 900px){
  .mtb-gallery{
    grid-template-rows: 1fr 1fr;
  }
  .mtb-card-top{
    transform: translateX(10px);
  }
  .mtb-card-bottom{
    transform: translateX(-10px);
  }
}

/* Responsive: stack on mobile */
@media (max-width: 720px){
  .mtb-wrap{
    grid-template-columns: 1fr;
  }
  .mtb-gallery{
    order: 2;            /* images after text */
  }
  .mtb-text{
    order: 1;
  }
}
