/* ═══════════════════════════════════════════
   MICE TOURISM PAGE — Banaras Culture Biennale
   Dark carousel · compact about · right-panel detail
   ═══════════════════════════════════════════ */

.mt-page { padding-top: 0; }

/* ══════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════ */
.mt-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #0a0604;
}

.mt-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 58% at 15% 80%, rgba(196, 98, 45, 0.62) 0%, transparent 56%),
    radial-gradient(ellipse 48% 42% at 80% 20%, rgba(212, 175, 55, 0.36) 0%, transparent 50%),
    radial-gradient(ellipse 88% 38% at 50% 100%, rgba(80, 20, 5, 0.82) 0%, transparent 64%);
}

.mt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    152deg,
    rgba(10, 6, 4, 0.48) 0%,
    rgba(10, 6, 4, 0.04) 40%,
    rgba(10, 6, 4, 0.62) 100%
  );
}

.mt-hero-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5vw;
  pointer-events: none;
  z-index: 1;
}

.mt-hero-deco-text {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: clamp(7rem, 20vw, 16rem);
  color: rgba(245, 166, 35, 0.038);
  line-height: 1;
  letter-spacing: 0.28em;
  user-select: none;
  white-space: nowrap;
}

.mt-hero-inner {
  position: relative;
  z-index: 2;
  padding: 115px 5vw 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mt-breadcrumb a              { color: rgba(245, 166, 35, 0.62); text-decoration: none; transition: color 0.2s; }
.mt-breadcrumb a:hover        { color: var(--saffron, #f5a623); }
.mt-breadcrumb-sep            { color: rgba(255, 255, 255, 0.28); font-size: 0.8rem; }
.mt-breadcrumb span:last-child{ color: rgba(255, 255, 255, 0.48); }

.mt-hero-top    { display: flex; flex-direction: column; gap: 0.5rem; }
.mt-hero-bottom { display: flex; flex-direction: column; gap: 0.55rem; }

.mt-hero-top .section-label {
  font-family: var(--f-lbl);
  color: var(--saffron, #f5a623);
  font-size: 0.72rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  display: block;
}

.mt-hero-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 180px;
}

.mt-hero-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245, 166, 35, 0.32);
}

.mt-hero-gem { color: var(--saffron, #f5a623); font-size: 0.8rem; opacity: 0.85; }

.mt-hero-title {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
  animation: hero-in 2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mt-hero-title em { font-style: italic; color: var(--saffron, #f5a623); }

.mt-hero-sub {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: clamp(0.54rem, 1.1vw, 0.7rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

.mt-hero-scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.mt-hero-scroll span {
  font-family: var(--f-lbl);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #9a7a60;
}

.mt-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(245, 166, 35, 0.55), transparent);
  animation: mt-scroll-fade 2.2s ease-in-out infinite;
}

@keyframes mt-scroll-fade {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ══════════════════════════════════════════
   SHARED UTILITIES
   ══════════════════════════════════════════ */
.mt-gem { color: var(--gold, #d4af37); font-size: 0.8rem; }

.mt-rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  /* margin: 0.8rem 0 1.2rem; */
}

.mt-rule::before,
.mt-rule::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold, #d4af37);
  opacity: 0.4;
}

.mt-cap-icon { font-size: 0.65rem; color: var(--gold, #d4af37); }

/* ══════════════════════════════════════════
   2. ABOUT  (full proportioned — image fills column)
   ══════════════════════════════════════════ */
.mt-about {
  background: var(--bg, #faf5ed);
  padding: 2rem 4rem 5.5rem;
}

.mt-about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

/* Image column — absolutely fills grid row height (driven by content) */
.mt-about-image { position: relative; }

.mt-about-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.mt-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.85);
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mt-about-img:hover img { transform: scale(1.04); }

.mt-about-img-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 42% at 50% 100%, rgba(196, 98, 45, 0.35) 0%, transparent 60%),
    linear-gradient(to top, rgba(13, 6, 2, 0.58) 0%, transparent 50%);
  pointer-events: none;
}

/* Badge on image */
.mt-about-img-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.mt-badge-num {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(245, 166, 35, 0.9);
  line-height: 1;
}

.mt-badge-label {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* Content column */
.mt-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mt-about-label {
  font-family: var(--f-hi, 'Tiro Devanagari Hindi', serif);
  font-size: 1rem;
  color: var(--saffron, #f5a623);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

/* Stats bar */
.mt-about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mt-stat { display: flex; flex-direction: column; gap: 0.3rem; }

.mt-stat-num {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ember, #c4622d);
  line-height: 1;
}

.mt-stat-lbl {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body, #6a4a2a);
}

.mt-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   3. VENUES CAROUSEL
   ══════════════════════════════════════════ */
.mt-venues {
  position: relative;
  padding: 1rem 0 6.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 72% 60% at 0%   100%, rgba(196,  98, 45, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 58% 48% at 100%    0%, rgba(212, 175, 55, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 50% 38% at 50%   55%, rgba(180,  70, 15, 0.10) 0%, transparent 58%),
    linear-gradient(162deg, #1e0e06 0%, #0e0503 38%, #180c05 72%, #0e0503 100%);
}

/* Subtle cross-hatch texture */
.mt-venues::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpath d='M0 24h48M24 0v48' stroke='%23c4622d' stroke-width='0.4' stroke-opacity='0.06'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.mt-venues > * { position: relative; z-index: 1; }

.mt-venues-header {
  text-align: center;
  padding: 0 5vw;
  margin-bottom: 3.5rem;
}

.mt-venues-hindi {
  font-family: var(--f-hi, 'Tiro Devanagari Hindi', serif);
  font-size: 1.1rem;
  color: var(--saffron, #f5a623);
  opacity: 0.75;
  display: block;
  margin-bottom: 0.5rem;
}

.mt-venues-title {
  color: #fff !important;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem) !important;
}

.mt-venues-title em { color: var(--saffron, #f5a623) !important; }

.mt-section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.8rem 0 1rem;
}

.mt-section-rule::before,
.mt-section-rule::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold, #d4af37), transparent);
  opacity: 0.55;
}

.mt-section-sub {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 1.08rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Carousel container */
.mt-carousel-wrap {
  display: flex;
  align-items: center;
  padding: 0 5vw;
  gap: 0;
}

.mt-carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.mt-carousel-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
}

.mt-carousel-track:active { cursor: grabbing; }

/* Slide card — width set dynamically by JS (initSlideWidths) */
.mt-slide {
  flex: 0 0 auto;
  background: linear-gradient(170deg, #261408 0%, #1a0c05 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(10, 4, 2, 0.45);
}

.mt-slide:hover {
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 8px 40px rgba(196, 98, 45, 0.22);
}

/* Card image */
.mt-slide-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.mt-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(0.78);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
}

.mt-slide:hover .mt-slide-img img {
  transform: scale(1.09);
  filter: brightness(0.76) saturate(0.95);
}

.mt-slide-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 15, 7, 0.9) 0%, transparent 52%);
}

/* Venue type badge — left-edge strip */
.mt-slide-type {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: var(--ember, #c4622d);
  padding: 0.25rem 0.65rem;
  z-index: 1;
}

/* Large ghost number */
.mt-slide-num {
  position: absolute;
  bottom: 0.7rem;
  right: 0.85rem;
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(245, 166, 35, 0.18);
  line-height: 1;
  z-index: 1;
}

/* Card body */
.mt-slide-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.3rem 1.35rem;
  border-top: 2px solid rgba(245, 166, 35, 0.26);
}

.mt-slide-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.mt-slide-name {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.22;
  margin: 0;
  flex: 1;
}

.mt-slide-cap {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  color: var(--saffron, #f5a623);
  white-space: nowrap;
  margin-top: 0.12rem;
  flex-shrink: 0;
}

.mt-slide-excerpt {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
  flex: 1;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mt-slide-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 1px solid rgba(245, 166, 35, 0.25);
  padding: 0.48rem 0.85rem;
  cursor: pointer;
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 166, 35, 0.78);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  margin-top: auto;
}

.mt-slide-btn:hover {
  background: var(--saffron, #f5a623);
  border-color: var(--saffron, #f5a623);
  color: #0a0604;
}

.mt-btn-arrow { font-size: 0.85rem; transition: transform 0.25s; }
.mt-slide-btn:hover .mt-btn-arrow { transform: translateX(4px); }

/* Prev / Next buttons */
.mt-carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(30, 14, 6, 0.75);
  color: rgba(245, 166, 35, 0.75);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.mt-carousel-btn:hover {
  background: var(--saffron, #f5a623);
  color: #0e0502;
  border-color: var(--saffron, #f5a623);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.mt-carousel-prev { margin-right: 1.2rem; }
.mt-carousel-next { margin-left: 1.2rem; }

/* Dot indicators — bar style */
.mt-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 2.4rem;
}

.mt-dot {
  width: 20px;
  height: 2px;
  background: rgba(245, 166, 35, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mt-dot.is-active {
  width: 44px;
  background: var(--saffron, #f5a623);
}

/* ══════════════════════════════════════════
   DETAIL PANEL  (right-side drawer)
   ══════════════════════════════════════════ */
.mt-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 4, 0.72);
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s ease, visibility 0.38s ease;
  backdrop-filter: blur(5px);
}

.mt-panel-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mt-panel {
  width: min(500px, 100vw);
  height: 100%;
  background: var(--bg, #faf5ed);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  position: relative;
  box-shadow: -20px 0 80px rgba(10, 6, 4, 0.55);
  border-left: 3px solid var(--saffron, #f5a623);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.mt-panel-overlay.is-open .mt-panel { transform: translateX(0); }

.mt-panel::-webkit-scrollbar       { width: 4px; }
.mt-panel::-webkit-scrollbar-track { background: transparent; }
.mt-panel::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 2px; }

.mt-panel-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(13, 6, 2, 0.62);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: rgba(255, 255, 255, 0.8);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  backdrop-filter: blur(4px);
}

.mt-panel-close:hover {
  background: var(--ember, #c4622d);
  border-color: var(--ember, #c4622d);
  color: #fff;
}

.mt-panel-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}

.mt-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.82);
}

.mt-panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(250, 245, 237, 0.94) 0%, rgba(250, 245, 237, 0.1) 55%, transparent 100%);
}

.mt-panel-img-info {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 1;
}

.mt-panel-type-badge {
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ember, #c4622d);
  padding: 0.25rem 0.65rem;
}

.mt-panel-num-bg {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: rgba(196, 98, 45, 0.2);
  line-height: 1;
}

.mt-panel-content {
  padding: 1.6rem 2rem 3rem;
  flex: 1;
}

.mt-panel-cap-row {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  margin-bottom: 0.55rem;
  font-family: var(--f-lbl, 'Cinzel', serif);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember, #c4622d);
}

.mt-panel-name {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text, #1a0a03);
  line-height: 1.18;
  margin: 0 0 0.5rem;
}

.mt-panel-rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.mt-panel-rule::before,
.mt-panel-rule::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--gold, #d4af37);
  opacity: 0.38;
}

.mt-panel-desc {
  font-family: var(--f-disp, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--body, #6a4a2a);
  margin: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .mt-about-inner { gap: 3rem; }
}

@media (max-width: 860px) {
  .mt-hero-inner      { padding: 80px 1.8rem 2rem; }
  .mt-hero-deco-text  { font-size: clamp(5rem, 20vw, 9rem); letter-spacing: 0.15em; }

  .mt-about           { padding: 3.5rem 1.8rem 4rem; }
  .mt-about-inner     { grid-template-columns: 1fr; gap: 0; }
  .mt-about-image     { height: 260px; }
  .mt-about-img       { position: relative; inset: auto; height: 100%; }
  .mt-about-stats     { flex-wrap: wrap; gap: 1.2rem; }
  .mt-stat-div        { display: none; }

  .mt-venues          { padding: 4rem 0 5rem; }
  .mt-carousel-wrap   { padding: 0 1.8rem; }
  .mt-carousel-prev   { margin-right: 0.75rem; }
  .mt-carousel-next   { margin-left: 0.75rem; }
}

@media (max-width: 400px) {
  .mt-panel { width: 100vw; border-left: none; border-top: 3px solid var(--saffron); }
}
