/* Custom Styles for Bishop Farm */

html {
    scroll-behavior: smooth;
}

body {
    /* Fallback color if Tailwind fails */
    background-color: #FDF8E8;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FDF8E8;
}
::-webkit-scrollbar-thumb {
    background: #D4A017;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1A2744;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

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

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

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.2);
}
