/* Custom styles beyond Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #fdfbf7;
}

/* Ensure high contrast for accessibility */
.text-main {
    color: #1c1917;
}

.text-light {
    color: #57534e;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}

/* Mobile menu transitions */
#mobile-menu {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Form focus states */
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
}
