:root {
  --font-script: 'Great Vibes', 'Alex Brush', cursive;
  --font-serif-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-sans-clean: 'Plus Jakarta Sans', system-ui, sans-serif;
  --color-bg: #FDFBF7;
  --color-espresso: #2D2424;
  --color-blush: #E8D3D3;
  --color-sage: #D4E2D4;
  --color-mauve: #C8A2C8;
}

body {
  font-family: var(--font-sans-clean);
}

.font-script {
  font-family: 'Great Vibes', 'Alex Brush', cursive;
}

.font-cormorant,
.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.font-body,
.font-sans {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.bg-artistic-canvas {
  background-color: #FDFBF7;
}

.text-artistic-espresso {
  color: #2D2424;
}

.arch-frame {
  border-radius: 9999px;
}

/* Floating Sakura Petals Animation */
@keyframes floatPetal {
  0% {
    transform: translate3d(0, -10px, 0) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 0.85;
  }
  85% {
    opacity: 0.75;
  }
  100% {
    transform: translate3d(80px, 100vh, 0) rotate(360deg) scale(1.1);
    opacity: 0;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

@keyframes gentleDrift {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.animate-petal {
  animation: floatPetal linear infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 4s ease-in-out infinite;
}

.animate-drift {
  animation: gentleDrift 6s ease-in-out infinite;
}

/* Custom smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
  background: #E8D3D3;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C8A2C8;
}

/* Simple fade/scale transition helpers for Alpine x-transition */
[x-cloak] {
  display: none !important;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
