@tailwind base;
@tailwind components;
@tailwind utilities;

/* CSS-only mobile menu toggle */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-out;
}

#mobile-menu-toggle:checked ~ nav #mobile-menu {
  max-height: 500px;
}
