/* app.css - Global Utilities and Responsive Overrides */
@tailwind base;
@tailwind components;
@tailwind utilities;

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .grid-adaptive { grid-template-columns: repeat(2, 1fr); }
  .hero-section { min-height: 50vh; }
}

.selection-primary::selection {
  background: var(--brand-reg);
  color: var(--brand-bg-main);
}