/* Custom styles to complement Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fdfbf7;
}

/* Animation utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

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

::-webkit-scrollbar-thumb {
    background: #064e3b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #022c22;
}

/* Image hover effects */
img {
    max-width: 100%;
    height: auto;
}

/* Selection color */
::selection {
    background-color: #064e3b;
    color: #fdfbf7;
}
