

/* triplara-tour-styles.css Scoped classes prefixed with "triplara-" to avoid conflicts. */
:root {
	--trp-primary: #2d5f2e;
	--trp-primary-2: #3b7a3b;
	--trp-accent: #f4a226;
	--trp-muted: #6b7280;
	--trp-card: #ffffff;
	--trp-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	--trp-radius: 14px;
}


/* =========================
   MAIN LAYOUT
========================= */

.triplara-main {
    width: 100%;
    max-width: 1500px;
    margin: 2.5rem auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* VERY IMPORTANT */
.triplara-content {
    min-width: 0;   /* Prevents grid overflow */
}

/* Sidebar */
.triplara-sidebar {
    position: sticky;
    top: 120px;
}

/* Tablet */
@media (max-width: 1100px) {
    .triplara-main {
        grid-template-columns: 2fr 1fr;
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 920px) {
    .triplara-main {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .triplara-sidebar {
        position: relative;
        top: auto;
    }
}

/* Article card */
.triplara-article {
	background: var(--trp-card);
	border-radius: var(--trp-radius);
	box-shadow: var(--trp-shadow);
	border: 1px solid rgba(12, 18, 20, 0.04);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}




/* Horizontal layout inside button */
/* ---------- VIDEO TOUR BUTTON (NEW LAYOUT) ---------- */

/* Hover effect */
.triplara-video-compact:hover {
  background: #f9fafb;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Heading inside button (CENTERED) */
/* Make Video Tour button same card size as See Tickets */
.triplara-video-compact {
  width: 23%;                     /* full width like See Tickets */
  background: #fff;
  border-radius: 20px;             /* same rounded corners */
           /* large padding */
                 /* same height feel */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06); /* same soft shadow */
  transition: all .25s ease;
  cursor: pointer;
}

/* Hover effect same as See Tickets */
.triplara-video-compact:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

/* Centered heading */
.video-tour-heading-inside {
  display: block;
  width: 100%;
  text-align: center;
color: green;
  font-weight: 400;
  margin-bottom: 1px;
}

/* Horizontal inner layout */
.video-compact-wrap {
  display: flex;
  align-items: center;
  justify-content: center;

}

/* Thumbnail same size always */
.video-compact-wrap .thumb {
  width: 85px;
  height: auto;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* Play icon */
.video-compact-wrap .play-overlay {
  font-size: 42px;
  color: #4f83ff;
  line-height: 1;
}


/* Responsive adjustments */
@media (max-width: 480px) {

  .triplara-video-compact {
    padding: 10px;
  }

  .triplara-video-compact .thumb {
    width: 60px;
  }

  .triplara-video-compact .play-overlay {
    font-size: 26px;
  }
}


/* Hero */
.triplara-hero {
	padding: 1.2rem;
	background: linear-gradient(180deg, #eef9ee 0%, #fff 55%)
}

.triplara-hero-img {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06)
}

.triplara-hero-img img {
	width: 100%;
	display: block;
	object-fit: cover;
	max-height: 450px
}

/* Tag / Title */
.triplara-tag {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .35rem .8rem;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.08);
	border: 1px solid rgba(34, 197, 94, 0.16);
	color: var(--trp-primary);
	font-weight: 600;
	margin-top: .7rem;
	font-size: .9rem
}

.triplara-title {
	font-size: clamp(1.6rem, 2.4vw, 2.4rem);
	margin: .5rem 0;
	color: #0f1724;
	line-height: 1.08;
	font-weight: 700
}

.triplara-sub {
	color: var(--trp-muted);
	max-width: 72ch;
	margin-bottom: .6rem
	font-size: 16px;
}

/* Actions */
.triplara-actions {
	display: flex;
	gap: .6rem;
	flex-wrap: wrap;
	align-items: center;
	background: #fbfdfb;
	padding: .7rem;
	border-radius: 12px;
	margin-top: .7rem
}

.triplara-btn {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding: .6rem 1rem;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	border: 0;
	text-decoration: none
}

.triplara-btn img.icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
	display: inline-block
}

.triplara-actions .triplara-btn img.actions-icon {
	width: 40px;
	height: 40px
}

.triplara-btn--primary {
	background: linear-gradient(135deg, #ff7a00, #ff4500);
	/* Orange → Deep Orange */
	color: #fff;
	box-shadow: 0 8px 18px rgba(255, 140, 0, 0.25);
	/* Soft orange glow */
}

.triplara-btn--ghost {
	background: #fff;
	color: var(--trp-primary);
	border: 1px solid rgba(20, 40, 20, 0.06)
}

.triplara-meta {
	margin-left: auto;
	background: #0f1724;
	color: #fff;
	padding: .4rem .85rem;
	border-radius: 999px;
	font-size: .85rem
}


.triplara-video-compact img.thumb {
	width: 100px;
	height: 50px;
	object-fit: cover;
	border-radius: 8px
}

.triplara-video-compact .play-overlay {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-weight: 700
}

/* Body */
.triplara-body {
  padding: 0 1.4rem 1.4rem;
  color: #111827;
  line-height: 1.65;
}

.triplara-body h2 {
	color: var(--trp-primary);
	margin-bottom: .5rem;
	font-size: 1.18rem
}

.triplara-list {
	list-style: none;
	padding-left: 0;
	margin-top: .4rem
}

.triplara-list li {
	padding-left: 1.6rem;
	position: relative;
	margin-bottom: .45rem
}

.triplara-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .45rem;
	width: .42rem;
	height: .42rem;
	border-radius: 50%;
	background: var(--trp-accent)
}

/* Sidebar cards */
.triplara-aside {
	display: flex;
	flex-direction: column;
	gap: 1rem
}

.triplara-side-card {
	background: var(--trp-card);
	padding: 1rem;
	border-radius: 12px;
	border: 1px solid rgba(12, 18, 20, 0.04);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04)
}

.side-title {
	display: flex;
	gap: .6rem;
	align-items: center;
	color: var(--trp-primary);
	margin-bottom: .6rem;
	font-size: 1rem;
	font-weight: 700
}

.side-title img.icon-small {
	width: 50px;
	height: 50px
}

/* video sidebar thumb */
.video-thumb-sidebar {
	position: relative;
	display: block;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06)
}

.video-thumb-sidebar img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block
}

.play-overlay-sidebar {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .12s ease
}

.play-icon-sidebar {
	width: 64px;
	height: 64px;
	padding: 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.45)
}

/* recent posts */
.triplara-recent a {
	display: flex;
	gap: .7rem;
	align-items: center;
	margin-bottom: .6rem;
	text-decoration: none;
	color: inherit
}

.triplara-thumb img {
	width: 72px;
	height: 52px;
	border-radius: 8px;
	object-fit: cover
}

.triplara-seeall {
	display: inline-flex;
	gap: .4rem;
	color: var(--trp-primary);
	margin-top: .6rem;
	font-weight: 600
}

/* responsive smaller screens */
@media(max-width:700px) {
	.triplara-hero-img img {
		max-height: 260px
	}

	.triplara-meta {
		display: none
	}

	.triplara-actions .triplara-btn img.actions-icon {
		width: 30px;
		height: 30px
	}

	.video-thumb-sidebar img {
		height: 160px
	}

	.triplara-video-compact img.thumb {
		width: 56px;
		height: 40px
	}
}

/* video modal (placed last to ensure higher stacking) */
.triplara-video-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	z-index: 9999
}

.triplara-video-modal.open {
	display: flex
}

.triplara-video-frame {
	width: 100%;
	max-width: 920px;
	height: 520px;
	border-radius: 12px
}

@media(max-width:700px) {
	.triplara-video-frame {
		height: 50vh
	}
}

/* Unified card/bubble style used across the site */
.triplara-block {
	background: #ffffff;
	padding: 12px;
	border-radius: 18px;
	margin-top: 10px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.triplara-block-title {
	font-size: 22px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 18px;
}

.triplara-map-embed-wrapper iframe {
	width: 100%;
	height: 330px;
	border: 0;
	border-radius: 14px;
}

@media (max-width: 600px) {
	.triplara-map-embed-wrapper iframe {
		height: 250px;
	}
}

/* Breadcrumbs */
.triplara-breadcrumb {
	margin: 20px 0 10px;
}

.triplara-breadcrumb ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.triplara-breadcrumb li {
	font-size: 14px;
	color: #555;
}

.triplara-breadcrumb a {
	color: #0073aa;
	text-decoration: none;
}

.triplara-breadcrumb li::after {
	content: ">";
	margin-left: 8px;
	color: #999;
}

.triplara-breadcrumb li.active {
	font-weight: 600;
	color: #222;
}

.triplara-breadcrumb li.active::after {
	content: "";
}

/* Archive White Card Block */
.triplara-archive-block {
	background: #fff;
	padding: 32px;
	border-radius: 20px;
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
	margin-top: 30px;
}

/* Title */
.triplara-archive-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 16px;
}

/* Description */
.triplara-archive-desc {
    font-size: 18px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.6;
}

.triplara-archive-desc p {
    margin-bottom: 12px;
}

/* Grid */
.triplara-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 26px;
}

/* Card */
.triplara-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform .2s ease;
}

.triplara-card:hover {
	transform: translateY(-4px);
}

.triplara-card-thumb img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.triplara-card-body {
	padding: 16px;
}

.triplara-card-title {
	font-size: 20px;
	margin: 0 0 8px;
}

.triplara-card-excerpt {
	font-size: 15px;
	color: #777;
}
/* blog Reading layout */
/* Progress bar */
/* Reading progress bar */
/* =========================
   Reading progress bar
========================= */
#trp-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #ff7a00, #ff4500);
  z-index: 10000;
}

/* =========================
   Reading time pill
========================= */
#trp-reading-time {
  position: fixed;
  top: 8px;
  right: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 500;
  z-index: 10001;
}

/* =========================
   Accordion (EDITOR CONTENT)
========================= */

/* Base accordion */
.triplara-tour-content details {
  border-bottom: 1px solid #e5e7eb;
  padding: 0;

}


/* Summary */
.triplara-tour-content summary {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 36px 18px 4px;
  font-weight: 400;
  cursor: pointer;
  font-size: 18px;
  list-style: none;
}

.triplara-tour-content summary::-webkit-details-marker {
  display: none;
}

/* Arrow injected via CSS */
/* Accordion arrow */
.triplara-tour-content summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-image: var(--trp-icon-accordion); /* 👈 THIS IS KEY */
  background-repeat: no-repeat;
  background-size: contain;
  
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Rotate arrow when open */
.triplara-tour-content details[open] summary::after {
  transform: translateY(-50%) rotate(180deg) scale(1.08);
  opacity: 1;
}



/* Rotate arrow when open */
.triplara-tour-content details[open] summary::after {
  transform: translateY(-50%) rotate(180deg) scale(1.08);
  opacity: 1;
}

/* Content spacing inside details */
.triplara-tour-content details > *:not(summary) {
  padding: 0 4px 18px;
  animation: trp-fade-in 0.25s ease;
}

details ul {
  font-size: 16px;
  line-height: 1.6;
  padding-left: 1.25rem; /* keeps bullets nicely aligned */
}

details ul li {
  font-size: 16px;
  margin-bottom: 0.5rem;
}

/* Gentle content reveal */
@keyframes trp-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Ticket CTA timing
========================= */
#trp-ticket-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#trp-ticket-cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* Bigger, bold, black accordion arrow */
.triplara-body .triplara-tour-content details > summary {
  position: relative;
  padding-right: 48px; /* more space for bigger arrow */
}

.triplara-body .triplara-tour-content details > summary::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 40px;          /* BIGGER */
  height: 40px;         /* BIGGER */
  transform: translateY(-50%);
  
  /* SVG as mask */
  -webkit-mask-image: var(--trp-icon-accordion);
  mask-image: var(--trp-icon-accordion);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;

  background-color: #000; /* BOLD BLACK */
  opacity: 1;

  transition: transform 0.35s ease;
}

/* Rotate when open */
.triplara-body .triplara-tour-content details[open] > summary::after {
  transform: translateY(-50%) rotate(180deg) scale(1.15);
}

/* Paragraphs inside accordion */
.triplara-body .triplara-tour-content details p {
  font-size: 16px;  
  line-height: 1.75;
  color: #1f2937;
}

.triplara-sub {
	color: var(--trp-muted);
	max-width: 72ch;
	margin-bottom: .6rem
	font-size: 16px;
}

/* Fix paragraph spacing inside accordion */
.triplara-tour-content details p {
  margin: 0 0 12px;      /* controlled spacing */
  line-height: 1.6;     /* tighter, readable */
}

/* Remove extra padding stacking */
.triplara-tour-content details > *:not(summary) {
  padding-bottom: 8px;  /* reduce from 18px */
}
.triplara-tour-content details p:last-child {
  margin-bottom: 0;
}

/* =========================
   Ticket CTA timing
========================= */
#trp-ticket-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#trp-ticket-cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Ticket CTA – Elegant Card
========================= */
.trp-ticket-cta {
  margin: 48px auto 32px;
  padding: 0 16px;
}

.trp-ticket-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px;
  text-align: center;

  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border-radius: 22px;
  border: 1px solid #fde68a;

  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Title */
.trp-ticket-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

/* Subtitle text */
.trp-ticket-text {
  font-size: 16.5px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 22px;
}

/* Big CTA button */
.trp-ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  padding: 14px 26px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 999px;

  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover / tap feedback */
.trp-ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.25);
}

/* Mobile refinement */
@media (max-width: 640px) {
  .trp-ticket-cta-inner {
    padding: 26px 18px;
  }

  .trp-ticket-title {
    font-size: 20px;
  }

  .trp-ticket-btn {
    width: 100%;
    min-width: auto;
  }
}

/* =========================
   Sticky Mobile Ticket CTA
========================= */
.trp-sticky-ticket-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;

  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.12);

  padding: 10px 14px;
  display: none; /* desktop hidden */
}

/* Inner layout */
.trp-sticky-inner {
  max-width: 1180px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Text block */
.trp-sticky-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
}

.trp-sticky-trust {
  font-size: 12px;
  color: #6b7280;
}

/* Button */
.trp-sticky-btn {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
}

/* Mobile only */
@media (max-width: 768px) {
  .trp-sticky-ticket-cta {
    display: block;
  }

  /* Prevent content from hiding behind sticky bar */
  body {
    padding-bottom: 78px;
  }
}

/* Hide video visually but keep audio playing */
.triplara-video-frame.audio-only {
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}


/* =========================
   AUDIO TOUR BUTTON
========================= */

.triplara-audio-compact {
  width: 23%; /* same width as video tour */
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);

  transition: all .25s ease;
  cursor: pointer;
}

/* Hover interaction */
.triplara-audio-compact:hover {
  background: #f9fafb;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

/* Heading text */
.audio-tour-heading-inside {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--trp-primary);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 14px;
}

/* Inner layout */
.audio-compact-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Audio icon */
.audio-compact-wrap img.icon-small {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* Supporting text */
.audio-text {
  font-size: 13px;
  color: var(--trp-muted);
  white-space: nowrap;
}

/* =========================
   MOBILE ADJUSTMENTS
========================= */

@media (max-width: 480px) {
  .triplara-audio-compact {
    padding: 10px;
  }

  .audio-compact-wrap img.icon-small {
    width: 28px;
    height: 28px;
  }

  .audio-text {
    font-size: 12px;
  }
}

/* Sidebar Audio Thumbnail (mirrors video sidebar) */
.audio-thumb-sidebar {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.audio-thumb-sidebar img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Audio badge */
.audio-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 12px;
  border-radius: 999px;

  background: linear-gradient(135deg, #facc15, #f59e0b); /* yellow → amber */
  color: #1f2937; /* dark text for contrast */

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;

  box-shadow: 
    0 6px 16px rgba(245, 158, 11, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  pointer-events: none; /* click passes through */
}

/* Optional headphone icon via CSS */
.audio-badge::before {
  content: "🎧";
  font-size: 13px;
}

/* Larger layout for states & cities */
.depth-1 .triplara-product-grid,
.depth-2 .triplara-product-grid {
    grid-template-columns: repeat(2, 1fr);
}

.depth-1 .triplara-modern-image img,
.depth-2 .triplara-modern-image img {
    height: 300px;
    object-fit: cover;
}

.depth-1 .triplara-modern-content h3,
.depth-2 .triplara-modern-content h3 {
    font-size: 22px;
}
