/* Custom styles that extend Tailwind */

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-600: #059669;
    --emerald-800: #065f46;
    --emerald-950: #022c22;
    --stone-50: #fafaf9;
}

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

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

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--stone-50);
}
::-webkit-scrollbar-thumb {
    background: var(--emerald-200);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--emerald-400);
}

/* Blob Animation */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Floating Animation for Cards */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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