/* Custom Overrides and Animations */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FDFBF7; /* allied-cream */
}

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

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

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

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

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(6, 78, 59, 0.1);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Pattern Background */
.bg-grid-pattern {
    background-image: linear-gradient(to right, #d6d3d1 1px, transparent 1px), linear-gradient(to bottom, #d6d3d1 1px, transparent 1px);
}
