/* Custom Styles that go beyond Tailwind utilities */

:root {
  --primary: #E6B325;
  --secondary: #2E7D32;
  --bg: #FFFDF5;
  --text: #222222;
}

/* Optional subtle animations */
@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;
}

/* Enhancing sticky navbar shadow on scroll via JS */
.navbar-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background-color: rgba(255, 255, 255, 0.9) !important;
}

/* Navbar white background */
.navbar-white {
    background-color: #ffffff;
}
