/* Custom styles to complement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9FAF8; /* offwhite */
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #3a6344;
}

/* Animation classes for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Gradient text utility if needed */
.text-gradient {
    background: linear-gradient(to right, #4d7f58, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
