@font-face {
  font-family: "CHALOPS";
  src: url("/assets/fonts/CHALOPS.woff2") format("woff2"), url("/assets/fonts/CHALOPS.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #3387c8;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #323095;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: #fdd31b;
  color: #1a1a2e;
}
.btn-primary:hover {
  background: rgb(237.12, 193.44, 2.08);
  color: #1a1a2e;
}

.btn-secondary {
  background: #ffffff;
  color: #323095;
  border: 2px solid #323095;
}
.btn-secondary:hover {
  background: #323095;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background: #ffffff;
  color: #323095;
}

.site-header {
  background: #323095;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header-inner {
    padding: 0.75rem 2rem;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.site-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fdd31b;
}

.site-title {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .site-title {
    font-size: 0.95rem;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  display: none;
  flex-direction: column;
  background: #323095;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 2px solid rgba(253, 211, 27, 0.4);
}
.site-nav.is-open {
  display: flex;
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.site-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  display: block;
  text-decoration: none;
}
.site-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fdd31b;
  text-decoration: none;
}
.site-nav a.active {
  color: #fdd31b;
}
.site-nav .nav-cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #fdd31b;
  color: #1a1a2e;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  margin-top: 0.5rem;
  text-decoration: none;
}
.site-nav .nav-cta:hover {
  background: rgb(237.12, 193.44, 2.08);
  color: #1a1a2e;
  text-decoration: none;
}
@media (min-width: 768px) {
  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: none;
    padding: 0;
    border-top: none;
    gap: 0.25rem;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 0.1rem;
    margin-bottom: 0;
  }
  .site-nav a {
    font-size: 0.95rem;
    padding: 0.4rem 0.7rem;
  }
  .site-nav .nav-cta {
    margin-top: 0;
    margin-left: 1rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
}

.hero {
  background: linear-gradient(135deg, #323095 0%, #3387c8 50%, #dc39d3 100%);
  color: #ffffff;
  padding: 4rem 1.25rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/hero-bg.png") center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero {
    padding: 6rem 2rem 5rem;
  }
}

.hero-eyebrow {
  display: inline-block;
  background: #fdd31b;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 640px;
  margin: 0 auto 2rem;
  opacity: 0.93;
  font-style: italic;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.hero-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.color-stripe {
  height: 6px;
  background: linear-gradient(90deg, #3387c8 0%, #fdd31b 20%, #ec342a 40%, #00b401 60%, #dc39d3 80%, #323095 100%);
}

.section {
  padding: 3.5rem 1.25rem;
}
@media (min-width: 768px) {
  .section {
    padding: 5rem 2rem;
  }
}

.section-title {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #323095;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555566;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}
.card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.card h3 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1.3rem;
  color: #323095;
  margin-bottom: 0.6rem;
}
.card p {
  color: #555566;
  font-size: 0.97rem;
  line-height: 1.6;
}

.card--blue {
  border-top: 4px solid #3387c8;
}

.card--yellow {
  border-top: 4px solid #fdd31b;
}

.card--red {
  border-top: 4px solid #ec342a;
}

.card--green {
  border-top: 4px solid #00b401;
}

.card--pink {
  border-top: 4px solid #dc39d3;
}

.card--navy {
  border-top: 4px solid #323095;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.schedule-day {
  background: #ffffff;
  border-radius: 16px;
  border-left: 6px solid #3387c8;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.schedule-day:nth-child(2) {
  border-color: #ec342a;
}
.schedule-day:nth-child(3) {
  border-color: #00b401;
}
.schedule-day .day-label {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1.25rem;
  color: #323095;
  margin-bottom: 0.35rem;
}
.schedule-day .day-date {
  font-weight: 700;
  color: #3387c8;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.schedule-day .day-time {
  color: #555566;
  font-size: 0.97rem;
}
.schedule-day p {
  color: #555566;
  font-size: 0.95rem;
  margin-top: 0.4rem;
  line-height: 1.55;
}

.verse-block {
  background: linear-gradient(135deg, #323095 0%, rgb(37.0558375635, 35.5736040609, 110.4263959391) 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 780px;
  margin: 3rem auto;
}
.verse-block blockquote {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
  opacity: 0.95;
}
.verse-block cite {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fdd31b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
}

.cta-band {
  background: linear-gradient(135deg, #3387c8 0%, #323095 100%);
  color: #ffffff;
  padding: 4rem 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-band {
    padding: 5rem 2rem;
  }
}
.cta-band h2 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: #ffffff;
}
.cta-band p {
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.92;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.97rem;
}
.info-table th, .info-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #f0f0f4;
}
.info-table th {
  font-weight: 700;
  color: #323095;
  background: #fafaf8;
  width: 38%;
}
.info-table td {
  color: #1a1a2e;
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f4;
  max-width: 540px;
}
.contact-card h3 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1.3rem;
  color: #323095;
  margin-bottom: 1rem;
}
.contact-card .contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  color: #1a1a2e;
}
.contact-card .contact-row a {
  color: #3387c8;
  font-weight: 600;
}
.contact-card .contact-row span {
  color: #555566;
  font-size: 0.9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text p {
  color: #555566;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.values-list .value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.values-list .value-item .value-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.values-list .value-item h4 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1rem;
  color: #323095;
  margin-bottom: 0.2rem;
}
.values-list .value-item p {
  font-size: 0.92rem;
  color: #555566;
  line-height: 1.5;
}

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}
.error-page .error-emoji {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}
.error-page h1 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #323095;
  margin-bottom: 0.75rem;
}
.error-page p {
  color: #555566;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.site-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 1.25rem 1.5rem;
  margin-top: auto;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 2rem 1.5rem;
  }
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fdd31b;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links nav a:hover {
  color: #fdd31b;
  text-decoration: none;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #fdd31b;
}

.footer-copy {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}
.popup-overlay[hidden] {
  display: none;
}

.popup-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-top: 6px solid #fdd31b;
  animation: popup-in 0.3s ease;
}

@keyframes popup-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f0f0f4;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555566;
  transition: background 0.2s;
}
.popup-close:hover {
  background: rgb(210.5769230769, 210.5769230769, 222.4230769231);
}

.popup-confetti {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.popup-title {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #323095;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.popup-dates {
  font-weight: 700;
  color: #3387c8;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.popup-tagline {
  font-style: italic;
  color: #555566;
  font-size: 0.97rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.popup-details {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin: 0 auto 1.75rem;
}
.popup-details li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
  color: #1a1a2e;
}

.popup-cta {
  display: block;
  margin-bottom: 0.75rem;
}

.popup-dismiss {
  background: none;
  border: none;
  color: #555566;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.25rem;
}
.popup-dismiss:hover {
  color: #1a1a2e;
}

.highlight-band {
  background: #fafaf8;
  border-top: 1px solid rgb(233, 233, 224.2);
  border-bottom: 1px solid rgb(233, 233, 224.2);
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) {
  .highlight-band {
    padding: 4rem 2rem;
  }
}

.page-header {
  background: linear-gradient(135deg, #323095 0%, #3387c8 100%);
  color: #ffffff;
  padding: 3.5rem 1.25rem 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .page-header {
    padding: 5rem 2rem 4rem;
  }
}
.page-header h1 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.page-header p {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto;
}

.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1.7rem;
  color: #323095;
  margin: 2.5rem 0 1rem;
}
.prose h3 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1.25rem;
  color: #323095;
  margin: 1.75rem 0 0.75rem;
}
.prose p {
  color: #1a1a2e;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.prose ul, .prose ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #1a1a2e;
}
.prose ul li, .prose ol li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}
.prose strong {
  color: #323095;
}
.prose a {
  color: #3387c8;
  font-weight: 600;
}
.prose blockquote {
  border-left: 4px solid #fdd31b;
  padding: 0.75rem 1.25rem;
  color: #555566;
  font-style: italic;
  background: #fafaf8;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  background: #fdd31b;
  color: #1a1a2e;
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 99999;
}
.skip-link:focus {
  top: 1rem;
}

body {
  background-color: #fef9ef;
}

.party-hero {
  background-color: #fef9ef;
  background-image: radial-gradient(circle, rgba(51, 135, 200, 0.12) 1px, transparent 1px), radial-gradient(circle, rgba(253, 211, 27, 0.15) 1px, transparent 1px), radial-gradient(circle, rgba(236, 52, 42, 0.1) 1px, transparent 1px), radial-gradient(circle, rgba(0, 180, 1, 0.1) 1px, transparent 1px), radial-gradient(circle, rgba(220, 57, 211, 0.12) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px, 80px 80px, 50px 50px, 70px 70px;
  background-position: 0 0, 20px 20px, 10px 40px, 35px 15px, 5px 55px;
  position: relative;
  overflow: hidden;
  padding: 3rem 1.25rem 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .party-hero {
    padding: 4rem 2rem 3rem;
  }
}

.party-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.balloon {
  position: absolute;
  top: 0;
  width: clamp(100px, 18vw, 200px);
  opacity: 0.88;
  pointer-events: none;
  z-index: 1;
}
.balloon--left {
  left: -1rem;
}
@media (min-width: 768px) {
  .balloon--left {
    left: 1rem;
  }
}
.balloon--right {
  right: -1rem;
}
@media (min-width: 768px) {
  .balloon--right {
    right: 1rem;
  }
}
@media (max-width: 500px) {
  .balloon {
    width: 80px;
  }
}

.invite-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #323095;
  color: #ffffff;
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  box-shadow: 0 3px 10px rgba(50, 48, 149, 0.35);
}

.invite-star {
  color: #fdd31b;
  font-size: 1em;
}

.vbs-wordmark {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 1;
  margin-bottom: 0.1em;
  letter-spacing: 0.06em;
}

.vbs-v {
  color: #3387c8;
  -webkit-text-stroke: 2px rgb(40.6374501992, 107.5697211155, 159.3625498008);
}

.vbs-b {
  color: #ec342a;
  -webkit-text-stroke: 2px rgb(208.4094827586, 28.375, 18.5905172414);
}

.vbs-s {
  color: #00b401;
  -webkit-text-stroke: 2px rgb(0, 129, 0.7166666667);
}

.surprise-title {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(1.5rem, 11vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  margin: 0 0 0.05em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: baseline;
}
.surprise-title .sp {
  flex-shrink: 0;
}
.surprise-title .sp1 {
  color: #ec342a;
  -webkit-text-stroke: 2px rgb(199.0448275862, 27.1, 17.7551724138);
}
.surprise-title .sp2 {
  color: #f5c800;
  -webkit-text-stroke: 2px rgb(216.8973913043, 176.9426086957, 1.9026086957);
}
.surprise-title .sp3 {
  color: #3387c8;
  -webkit-text-stroke: 2px rgb(38.564940239, 102.0836653386, 151.235059761);
}
.surprise-title .sp4 {
  color: #00b401;
  -webkit-text-stroke: 2px rgb(0, 118.8, 0.66);
}
.surprise-title .sp5 {
  color: #dc39d3;
  -webkit-text-stroke: 2px rgb(183.3836909871, 32.4163090129, 175.0480686695);
}
.surprise-title .sp6 {
  color: #323095;
  -webkit-text-stroke: 2px rgb(34.4670050761, 33.0883248731, 102.7116751269);
}

.party-title {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(2.5rem, 12vw, 7rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.party-title .pt {
  display: inline-block;
}
.party-title .pt1 {
  color: #323095;
  -webkit-text-stroke: 2px rgb(62.9441624365, 60.4263959391, 187.5736040609);
}
.party-title .pt2 {
  color: #dc39d3;
  -webkit-text-stroke: 2px rgb(192.0515021459, 33.9484978541, 183.321888412);
}
.party-title .pt3 {
  color: #3387c8;
  -webkit-text-stroke: 2px rgb(40.6374501992, 107.5697211155, 159.3625498008);
}
.party-title .pt4 {
  color: #fdd31b;
  -webkit-text-stroke: 2px rgb(201.7304347826, 164.5695652174, 1.7695652174);
  color: #f5c800;
}
.party-title .pt5 {
  color: #ec342a;
  -webkit-text-stroke: 2px rgb(208.4094827586, 28.375, 18.5905172414);
}
.party-title .pt6 {
  color: #00b401;
  -webkit-text-stroke: 2px rgb(0, 129, 0.7166666667);
}

.tagline-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #00b8c4;
  color: #323095;
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 14px rgba(0, 184, 196, 0.35);
}

.tagline-heart {
  font-size: 1em;
}

.btn-party {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: #fdd31b;
  color: #1a1a2e;
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 3px solid rgb(201.7304347826, 164.5695652174, 1.7695652174);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
  box-shadow: 0 4px 0 rgb(176.452173913, 143.947826087, 1.547826087), 0 6px 16px rgba(0, 0, 0, 0.18);
}
.btn-party:hover {
  background: rgb(237.12, 193.44, 2.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgb(176.452173913, 143.947826087, 1.547826087), 0 10px 24px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  color: #1a1a2e;
}
.btn-party:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgb(176.452173913, 143.947826087, 1.547826087), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-party-outline {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: transparent;
  color: #323095;
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 3px solid #323095;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-party-outline:hover {
  background: #323095;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.info-section {
  background: #ffffff;
  padding: 2.5rem 1.25rem;
  border-top: 3px solid #f0f0f4;
  border-bottom: 3px solid #f0f0f4;
}
@media (min-width: 768px) {
  .info-section {
    padding: 3rem 2rem;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border-top: 5px solid #3387c8;
  background: #fafaf8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.info-card--blue {
  border-color: #3387c8;
}
.info-card--red {
  border-color: #ec342a;
}
.info-card--green {
  border-color: #00b401;
}
.info-card--pink {
  border-color: #dc39d3;
}
.info-card__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.info-card__label {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #323095;
  margin-bottom: 0.35rem;
}
.info-card__value {
  font-weight: 700;
  font-size: 0.97rem;
  color: #1a1a2e;
  line-height: 1.3;
}
.info-card__sub {
  font-size: 0.82rem;
  color: #555566;
  margin-top: 0.3rem;
  line-height: 1.4;
}

.join-section {
  background: #fef9ef;
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) {
  .join-section {
    padding: 4rem 2rem;
  }
}

.join-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .join-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.join-title {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #323095;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.join-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.join-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: #1a1a2e;
  font-weight: 500;
  line-height: 1.4;
}
.join-list strong {
  color: #323095;
}

.join-star {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.join-star--yellow {
  color: #fdd31b;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.join-star--red {
  color: #ec342a;
}
.join-star--blue {
  color: #3387c8;
}
.join-star--green {
  color: #00b401;
}
.join-star--pink {
  color: #dc39d3;
}

.bible-truth-card {
  background: #ffffff;
  border: 3px solid #fdd31b;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}
.bible-truth-card::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fafaf8;
  border: 3px solid #fdd31b;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.bible-truth-card__label {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3387c8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.bible-truth-card__quote {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: #323095;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.bible-truth-card__ref {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ec342a;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.party-cta-band {
  background: #323095;
  color: #ffffff;
  padding: 3.5rem 1.25rem 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .party-cta-band {
    padding: 5rem 2rem 3rem;
  }
}
.party-cta-band__line1 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
  opacity: 0.88;
}
.party-cta-band__line2 {
  font-family: "CHALOPS", "Arial Black", "Impact", sans-serif;
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.party-cta-band__contact {
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  justify-content: center;
  align-items: center;
}
.party-cta-band__contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.party-cta-band__contact a:hover {
  color: #fdd31b;
}

.joy-word {
  color: #fdd31b;
  -webkit-text-stroke: 1px rgb(201.7304347826, 164.5695652174, 1.7695652174);
}

/*# sourceMappingURL=main.css.map */