/* Custom styles that extend Tailwind */
:root {
    --color-emerald-50: #f2fcf5;
    --color-emerald-500: #35a360;
    --color-emerald-800: #124a29;
}

html {
    scroll-behavior: smooth;
}

body {
    /* Subtle texture or noise could go here */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FAF9F6;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #35a360;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure text contrast is maintained on all backgrounds */
.text-kboo-emerald-950 {
    color: #05140b;
}

/* Navbar transition class */
.nav-scrolled {
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-default {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
