/* Global styles */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom transition for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.2s ease-in-out;
}

/* Better focus styles */
input:focus, textarea:focus, select:focus, button:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}

/* Remove default list styles */
ul {
    list-style: none;
    padding: 0;
}

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

/* Subtle background pattern for hero sections */
.bg-hero-pattern {
    background-image: radial-gradient(circle at 25% 25%, #fbbf24 0%, transparent 50%);
}
