/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fff5f6 0%, #ffeef0 50%, #ffd6db 100%);
    overflow: hidden;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Floating Hearts Animation */
.heart-particle {
    position: absolute;
    pointer-events: none;
    animation: floatUp 3s linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-10vh) scale(1.3) rotate(360deg);
        opacity: 0;
    }
}

/* CTA Button Pulse Animation */
@keyframes pulse-live {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(239, 68, 68, 0.7); }
    50% { transform: scale(1.02); box-shadow: 0 0 25px rgba(239, 68, 68, 0.95); }
}

.pulse-btn-live {
    animation: pulse-live 1.8s infinite;
}

/* Image Slider Transition */
.slide-transition {
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Chat Bubble Pop-in Animation */
@keyframes popIn {
    0% { transform: translateY(15px) scale(0.95); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

.chat-bubble-animate {
    animation: popIn 0.4s ease-out forwards;
}

/* Custom Scrollbar for Chat */
.scrollbar-thin::-webkit-scrollbar { 
    width: 3px; 
}
.scrollbar-thin::-webkit-scrollbar-track { 
    background: transparent; 
}
.scrollbar-thin::-webkit-scrollbar-thumb { 
    background: #f9a8d4; 
    border-radius: 10px; 
}