:root {
  font-family: 'Inter', sans-serif;
}

/* Styles for the responsive mobile menu icon (hamburger) */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    padding: 0.25rem;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #f9fafb; /* gray-50 - Matches the header background color */
    border-radius: 9999px;
    transition: all 0.3s ease-in-out;
}