/* Fonts: Playfair Display (headlines), Poppins (UI) */
/* Palette inspired by pastel cake aesthetic */
/* Pink #FFD9E0, Cream #FFF6EC, Mint #D9F3EE, Lilac #E9E2FF, Cocoa #5E4B43, Gold #E6B655 */

:root {
  --bg-cream: #FFF6EC;
  --pink: #FFD9E0;
  --mint: #D9F3EE;
  --lilac: #E9E2FF;
  --text: #5E4B43;
  --gold: #E6B655;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius-xl: 28px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body { display: flex; flex-direction: column; min-height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(160deg, var(--bg-cream), #ffffff 60%);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(16px, 4vw, 48px);
}

.logo { height: 44px; width: auto; }
.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.5px;
}

.hero {
  flex: 1 0 auto;
  display: grid;
  grid-auto-rows: min-content;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: clamp(24px, 6vw, 72px) clamp(16px, 5vw, 48px);
}

.headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.05;
  margin: 32px 0 16px;
}
.headline span {
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: clamp(16px, 2.2vw, 20px);
  opacity: 0.9;
}

.btn { display: none; }

/* Pruned form styles (not used) */

.site-footer {
  text-align: center;
  padding: 24px 16px 32px;
  opacity: 0.8;
  flex-shrink: 0;
}

/* Instagram icon/link */
.social-link {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  transition: background-color 0.2s ease, transform 0.12s ease;
}
.social-link:hover { background: rgba(0,0,0,0.04); transform: translateY(-1px); }
.social-link:active { transform: translateY(0); }
.ig-icon { display: block; }

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

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Soft decorative blobs */
.decor {
  position: fixed;
  width: 36vmax; height: 36vmax;
  filter: blur(60px);
  opacity: 0.35;
  z-index: -1;
}
.decor--top-left {
  top: -10vmax; left: -10vmax;
  background: radial-gradient(circle at 40% 40%, var(--mint), transparent 60%), radial-gradient(circle at 70% 60%, var(--pink), transparent 60%);
}
.decor--top-right {
  top: -8vmax; right: -10vmax;
  background: radial-gradient(circle at 60% 40%, var(--lilac), transparent 60%), radial-gradient(circle at 40% 60%, var(--gold), transparent 60%);
}
.decor--bottom-left {
  bottom: -10vmax; left: -6vmax;
  background: radial-gradient(circle at 50% 50%, var(--pink), transparent 60%), radial-gradient(circle at 70% 30%, var(--mint), transparent 60%);
}
.decor--bottom-right {
  bottom: -12vmax; right: -8vmax;
  background: radial-gradient(circle at 50% 50%, var(--lilac), transparent 60%), radial-gradient(circle at 30% 70%, var(--pink), transparent 60%);
}

@media (max-width: 640px) {
  /* nothing specific for now */
}

/* Playful bouncing cupcakes */
.cupcake-row {
  position: fixed;
  left: 0; right: 0; bottom: 96px;
  display: flex;
  gap: 28px;
  justify-content: center;
  color: var(--pink);
  opacity: 0.9;
  pointer-events: none;
}
.cupcake { position: relative; animation: cupcake-bounce 2.8s ease-in-out infinite, cupcake-drift 6s ease-in-out infinite; filter: drop-shadow(0 8px 14px rgba(0,0,0,0.10)); }
.cupcake.delay-1 { animation-delay: .4s; color: var(--mint); }
.cupcake.delay-2 { animation-delay: .8s; color: var(--lilac); }
.cupcake.delay-3 { animation-delay: 1.2s; color: var(--gold); }
.cupcake.delay-4 { animation-delay: 1.6s; color: var(--text); opacity: .6; }

@keyframes cupcake-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes cupcake-drift {
  0%, 100% { left: 0; }
  25% { left: 8px; }
  50% { left: 0; }
  75% { left: -8px; }
}

@media (max-width: 640px) {
  .cupcake-row { bottom: 72px; gap: 20px; }
  @keyframes cupcake-bounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
  @keyframes cupcake-drift { 0%,100%{ left:0;} 50%{ left:6px; } }
}


