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

body {
    /* Fallback if font fails */
    font-family: 'Inter', sans-serif;
}

/* Subtle texture for the hero background */
.hero-pattern {
    background-image: radial-gradient(#2d5235 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.05;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #2d5235;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1f3626;
}

/* Mobile menu transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
