/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    /* Custom font settings applied via Tailwind, but ensuring base fallback */
    background-color: #f9f7f2;
    color: #0f3d2e;
}

/* Custom Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation-name: fade-in-up;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
}

@keyframes scroll {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.animate-scroll {
    animation: scroll 1.5s infinite;
}

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

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

::-webkit-scrollbar-thumb {
    background: #0f3d2e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a5c45;
}

/* Selection Color */
::selection {
    background: #d4a373;
    color: #0f3d2e;
}
