/* Custom styles that extend Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    /* Fallback if font doesn't load immediately */
    font-family: 'Lato', sans-serif;
}

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

/* Smooth fade-in animation for hero text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #024e36;
}
