/* Import Google Fonts: Outfit (Headings) and Inter (Body) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700&display=swap');

/* Apply Inter to the main body for readability */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Apply Outfit to headings and buttons to match the logo style */
h1, h2, h3, h4, h5, h6,
button, .btn, .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-monospace {
    font-family: "Roboto Mono", monospace !important;
    font-optical-sizing: auto;
    font-style: normal;
}

.hover-shadow {
    transition: box-shadow 0.15s ease-in-out;
}
.hover-shadow:hover {
    box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.1);
}
