/* Passport Created — main hero */
.passport-created-main { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#1f2d2f; }

/* Hero block */
.passport-hero {
  background: #2a7d7d; /* your green hero color */
  color: #fff;
  padding: 2rem 1.25rem 1rem 1.25rem;
  position: relative;
  overflow: visible;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  min-width: 260px;
}

.hero-text h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.05;
}

.hero-text .lead {
  margin: 0 0 1.25rem 0;
  opacity: 0.95;
  max-width: 48rem;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.tiny-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.95;
}


.stamp-sample { text-align: center; }

/* quicklinks card below hero */
.passport-quicklinks {
  max-width: 1000px;
  margin: 1.5rem auto;
  padding: 0 1.25rem 2rem;
}

.quick-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: #1f2d2f;
}

.quick-card h3 { margin-top: 0; }
.quick-card ul { padding-left: 1.1rem; margin: 0.5rem 0 0; }
.quick-card a { color: #2a7ae2; text-decoration: none; }

/* decorative emoji "confetti" — subtle floating effect */
.confetti {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 0;
}

.confetti .c {
  position: absolute;
  font-size: 1.2rem;
  opacity: .95;
  animation: floatUp 6s linear infinite;
}

/* position variations */
.confetti .c:nth-child(1) { left: 10%; top: 70%; animation-delay: 0s; }
.confetti .c:nth-child(2) { left: 25%; top: 80%; animation-delay: 0.6s; }
.confetti .c:nth-child(3) { left: 45%; top: 75%; animation-delay: 1.2s; }
.confetti .c:nth-child(4) { left: 65%; top: 85%; animation-delay: 1.8s; }
.confetti .c:nth-child(5) { left: 85%; top: 78%; animation-delay: 2.4s; }

@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  8% { opacity: 1; }
  50% { transform: translateY(-24vh) rotate(10deg) scale(1.05); opacity: 1; }
  100% { transform: translateY(-40vh) rotate(-8deg) scale(.95); opacity: 0; }
}

/* responsive */
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; gap: 1rem; }
  .hero-visual, .hero-livestream { order: 2; }
  .hero-text { order: 1; }
  .stamp-caption { color: rgba(0,0,0,0.75); }
  .hero-ctas {   justify-content: center; }
}
