/* Elite Theme for Kelly Abreu */

:root {
    --primary: #915383;
    --dark: #4a2b43;
    --light: #f3e8f1;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', sans-serif;
}

h1, h2, .serif {
    font-family: 'Playfair Display', serif;
}

/* Base Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Custom Bounce */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.animate-bounce-slow {
    animation: bounce-slow 5s ease-in-out infinite;
}

/* Glassmorphism Navigation */
nav {
    transform: translateY(0);
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

/* Hero Image Specifics */
#home img {
    max-height: 80vh;
}

/* Treatment Cards */
.group:hover img {
    transform: scale(1.08);
}

/* WhatsApp Ping */
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
.animate-ping {
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Prose refinement */
.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Before/After Overlay */
.relative .absolute {
    transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 3rem !important; }
    .reveal { transform: translateY(20px); }
}
