@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Caveat:wght@600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #fbf8f3;
  --cream-alt: #f3ede2;
  --cream-card: #ffffff;
  --ink: #141413;
  --blue: #1f5bff;
  --blue-hover: #1447d6;
  --pink: #ee5aa0;
  --muted: #706a5f;
  --muted-light: #948e84;
  --border-subtle: rgba(20, 20, 19, 0.1);
  --border-card: rgba(20, 20, 19, 0.08);
}

html {
  scroll-behavior: smooth;
}

body.site {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.display {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.wordmark {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.handwriting {
  font-family: 'Caveat', cursive;
}

/* Polaroids */
.polaroid {
  background: #ffffff;
  padding: 0.75rem 0.75rem 2.5rem;
  border-radius: 3px;
  box-shadow: 0 20px 45px -12px rgba(25, 20, 10, 0.22), 0 4px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
  user-select: none;
}

.polaroid:hover {
  box-shadow: 0 28px 55px -10px rgba(25, 20, 10, 0.28), 0 6px 14px rgba(0, 0, 0, 0.06);
}

.polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1px;
}

.polaroid.polaroid-square img,
.polaroid-square img,
img.polaroid-img-square {
  aspect-ratio: 1 / 1 !important;
}


/* Tape sticker */
.sticker {
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(238, 90, 160, 0.38);
  position: relative;
  letter-spacing: 0.08em;
}

.sticker::before,
.sticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  background-size: 6px 6px;
}

.sticker::before {
  left: -3px;
  background-image: radial-gradient(circle, transparent 2px, var(--pink) 2px);
}

.sticker::after {
  right: -3px;
  background-image: radial-gradient(circle, transparent 2px, var(--pink) 2px);
}

/* Nav Pills */
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-pill-primary {
  background-color: var(--blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(31, 91, 255, 0.28);
}

.nav-pill-primary:hover {
  background-color: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(31, 91, 255, 0.36);
}

.nav-pill-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-subtle);
}

.nav-pill-outline:hover {
  background: rgba(20, 20, 19, 0.04);
  border-color: rgba(20, 20, 19, 0.25);
}

/* Venue Card */
.venue-card {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.venue-card:hover {
  transform: translateY(-3px);
}

/* Sparkle glyph */
.sparkle-glyph {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Checkbox choice card */
.choice-card {
  transition: all 0.2s ease;
}

.choice-card:hover {
  border-color: rgba(31, 91, 255, 0.4);
  background-color: #ffffff;
}

.choice-card input:checked ~ div {
  color: var(--blue);
}

.choice-card:has(input:checked) {
  border-color: var(--blue);
  background-color: rgba(31, 91, 255, 0.04);
  box-shadow: 0 0 0 1px var(--blue);
}

/* Testimonials Smooth Rotating Marquee (Right to Left) */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeRotate 38s linear infinite;
  will-change: transform;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeRotate {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: 340px;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 640px) {
  .testimonial-card {
    width: 380px;
  }
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -6px rgba(20, 20, 19, 0.09);
}


/* Modal */
.modal-shell[hidden],
.form-block[hidden] {
  display: none !important;
}

.modal-shell {
  background: rgba(18, 16, 14, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Admin statuses */
.status-open { background: #efe7d4; color: #6a5420; }
.status-contacted { background: #dce7ff; color: #1d3f9a; }
.status-closed_fail { background: #f8d9d6; color: #8a2218; }
.status-closed_success { background: #d9efe0; color: #1d6a38; }

