/* A to Zoom — parties sales page (candy-pastel storefront style) */

body.party-page {
  background: #fff;
}

body.party-page .site-nav {
  max-width: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--tint-lavender);
  padding: 0.6rem 1.25rem;
  justify-content: center;
}

body.party-page .site-nav .nav-logo img {
  height: 56px;
}

.party-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.party-section > .inner {
  width: 100%;
  max-width: 1000px;
}

.party-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--brand-purple);
  text-align: center;
  margin-bottom: 0.4rem;
}

.party-section .section-sub {
  text-align: center;
  color: #777;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Hero */
.party-hero {
  background: linear-gradient(135deg, var(--tint-butter) 0%, var(--tint-pink) 55%, var(--tint-lavender) 100%);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
  width: 100%;
}

.party-hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.12;
  color: var(--brand-purple);
  max-width: 700px;
  margin: 0 auto 0.75rem;
}

.party-hero .hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: #6b5a80;
  max-width: 620px;
  margin: 0 auto 1.75rem;
}

.btn-hero {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  background: var(--brand-magenta);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201, 44, 153, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-hero:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 24px rgba(201, 44, 153, 0.45);
}

/* Experience cards — the party, in order */
.party-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  counter-reset: beat;
}

.beat-card {
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 6px 18px rgba(77, 0, 141, 0.07);
  position: relative;
}

.beat-card:nth-child(5n+1) { background: var(--tint-pink); }
.beat-card:nth-child(5n+2) { background: var(--tint-lavender); }
.beat-card:nth-child(5n+3) { background: var(--tint-sky); }
.beat-card:nth-child(5n+4) { background: var(--tint-mint); }
.beat-card:nth-child(5n+5) { background: var(--tint-butter); }

.beat-card:not(.finale) {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  align-items: center;
}

.beat-card:not(.finale) .emoji {
  font-size: 2rem;
  grid-row: 1;
}

.beat-card:not(.finale) h3 {
  grid-row: 1;
  grid-column: 2;
}

.beat-card:not(.finale) p {
  grid-row: 2;
  grid-column: 2;
}

.beat-card .emoji {
  line-height: 1;
}

.beat-card.finale .emoji {
  font-size: 2.1rem;
  display: block;
  margin-bottom: 0.4rem;
}

.beat-card h3 {
  font-size: 1.25rem;
  color: var(--brand-purple);
  margin-bottom: 0.3rem;
}

.beat-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.55;
}

.beat-card.finale {
  grid-column: 1 / -1;
  text-align: center;
  background: #fff;
  border: 3px dashed var(--brand-magenta);
}

.beat-card.finale h3 {
  color: var(--brand-magenta);
  font-size: 1.5rem;
}

.beat-card.finale p {
  max-width: 560px;
  margin: 0 auto;
}

/* Details strip */
.party-details {
  background: var(--tint-lavender);
}

.details-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.detail-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.4rem 1.25rem;
  text-align: left;
  box-shadow: 0 6px 18px rgba(77, 0, 141, 0.07);
}

.detail-card .emoji {
  font-size: 1.4rem;
  display: inline;
  margin-right: 0.45rem;
  vertical-align: -0.15em;
}

.detail-card strong {
  display: inline;
  color: var(--brand-purple);
  font-size: 1.1rem;
}

.detail-card span {
  display: block;
  margin-top: 0.2rem;
}

.detail-card span {
  color: #666;
  font-size: 0.95rem;
}

/* Form section — widen the legacy mobile-width form and restyle it in the
   page's card language (overrides gift-concierge.css, scoped to this page) */
#inquire {
  scroll-margin-top: 80px;
}

body.party-page .concierge-main {
  max-width: 760px;
  padding: 3rem 1.5rem 3.5rem;
  gap: 1.75rem;
}

body.party-page .concierge-main h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

body.party-page .concierge-form fieldset {
  border: 1px solid var(--tint-lavender);
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(77, 0, 141, 0.07);
  padding: 1.5rem;
}

body.party-page .concierge-form input,
body.party-page .concierge-form textarea {
  border-radius: 10px;
}

body.party-page .btn-submit {
  align-self: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 999px;
  background: var(--brand-magenta);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(201, 44, 153, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

body.party-page .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 44, 153, 0.45);
}

@media (max-width: 700px) {
  .party-flow { grid-template-columns: 1fr; }
  .details-strip { grid-template-columns: 1fr; }
  .party-section { padding: 2.25rem 1rem; }
}
