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

body {
    /* Subtle texture or noise can be added here if desired */
    background-color: #F9FAFB;
}

/* Thin line accent for visual interest */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 0 auto;
    max-width: 200px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #4f8051;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3d6440;
}

/* Fade in animation for elements */
.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);
}

/* Mobile menu transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 300px;
    opacity: 1;
}
