/* Tropical Paradise – Wave Reveal */
.tpl-tp-wrapper {
  position: relative; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(160deg, #0d3b2e, #1a5e3a, #2d7a4a);
  overflow: hidden;
}

/* ── Wave Gate ───────────────────────── */
.tpl-tp-wave-gate {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.tpl-tp-wave-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.tpl-tp-wave-path {
  transition: transform 1.2s cubic-bezier(.68,-.55,.27,1.55);
}
.tpl-tp-wave-gate.revealed .tpl-tp-w1 { transform: translateY(-100%); }
.tpl-tp-wave-gate.revealed .tpl-tp-w2 { transform: translateY(100%); }
.tpl-tp-wave-gate.revealed {
  pointer-events: none;
}
.tpl-tp-gate-content {
  position: relative; z-index: 2; text-align: center;
  transition: opacity .5s ease;
}
.tpl-tp-wave-gate.revealed .tpl-tp-gate-content { opacity: 0; }
.tpl-tp-palm {
  font-size: 56px; margin-bottom: 10px;
  animation: tp-palm-sway 3s ease-in-out infinite;
}
@keyframes tp-palm-sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}
.tpl-tp-gate-title {
  font-size: 18px; font-weight: 800; color: #f5c542;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px;
}
.tpl-tp-gate-hint {
  font-size: 12px; color: rgba(240,230,192,.5); font-weight: 600;
  animation: ce-pulse 2s ease-in-out infinite;
}

/* ── Card ────────────────────────────── */
.tpl-tp-card {
  position: relative; z-index: 1; width: 100%; max-width: 520px;
}
.tpl-tp-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.tpl-tp-particle {
  position: absolute; top: -20px; font-size: 18px;
  animation: tp-particle-fall linear forwards; opacity: 0;
}
@keyframes tp-particle-fall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0); }
  15% { opacity: .8; }
  100% { opacity: 0; transform: translateY(500px) rotate(360deg) translateX(30px); }
}

.tpl-tp-inner {
  padding: 36px 28px; text-align: center;
  background: rgba(0,0,0,.2); backdrop-filter: blur(4px);
  border: 1px solid rgba(240,230,192,.15); border-radius: 18px;
}

.tpl-tp-leaf-deco {
  font-size: 20px; letter-spacing: 8px; opacity: .4; margin-bottom: 10px;
}

.tpl-tp-header {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #f5c542; margin-bottom: 16px;
}

.tpl-tp-names-block { margin-bottom: 10px; }
.tpl-tp-name {
  font-family: 'Great Vibes', cursive; font-size: 36px;
  font-weight: 400; color: #f0e6c0; margin: 0; line-height: 1.2;
}
.tpl-tp-and-wrap { margin: 4px 0; }
.tpl-tp-and {
  font-size: 20px; font-weight: 300; color: #f5c542;
  display: inline-block;
  animation: tp-and-pulse 2s ease-in-out infinite;
}
@keyframes tp-and-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .8; }
}

.tpl-tp-parents {
  font-size: 11px; color: rgba(240,230,192,.6); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.tpl-tp-dot { color: #f5c542; }

.tpl-tp-divider {
  width: 80px; height: 2px; margin: 14px auto;
  background: linear-gradient(90deg, transparent, #f5c542, transparent);
}

.tpl-tp-info-row {
  display: flex; justify-content: center; gap: 30px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.tpl-tp-info-block { display: flex; flex-direction: column; gap: 4px; }
.tpl-tp-info-label {
  font-size: 9px; font-weight: 700; letter-spacing: 3px; color: #f5c542;
}
.tpl-tp-info-label i { margin-right: 3px; }
.tpl-tp-info-value { font-size: 14px; font-weight: 600; color: #f0e6c0; }

.tpl-tp-venue { margin-top: 4px; }
.tpl-tp-venue-name {
  font-size: 15px; font-weight: 700; color: #f0e6c0; margin: 4px 0 2px;
}
.tpl-tp-venue-addr {
  font-size: 12px; color: rgba(240,230,192,.6); margin: 0;
}

/* ── Animate ─────────────────────────── */
.tp-anim { opacity: 0; transform: translateY(18px); }
.tpl-tp-wave-gate.revealed ~ .tpl-tp-card .tp-anim {
  animation: tp-reveal .7s ease forwards; animation-delay: var(--d, 0s);
}
@keyframes tp-reveal { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 480px) {
  .tpl-tp-wrapper { min-height: 460px; }
  .tpl-tp-inner { padding: 24px 16px; }
  .tpl-tp-name { font-size: 28px; }
  .tpl-tp-palm { font-size: 40px; }
}
