/* Minimal CSS fallback loaded when JS is disabled or blocked (e.g., Samsung Internet issues)
   This does NOT include Tailwind; it only ensures the site is readable and usable. */

html, body, #root { height: 100%; }
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111827; /* gray-900 */
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Basic layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* Headings */
h1 { font-size: 2rem; font-weight: 600; margin: 0.5rem 0; }
h2 { font-size: 1.5rem; font-weight: 600; margin: 1rem 0 0.5rem; }

/* Links & buttons */
a { color: #111827; text-decoration: none; }
a:hover { text-decoration: underline; }
button, .btn {
  appearance: none; border: 1px solid #d1d5db; background: #111827; color: #fff;
  padding: 10px 16px; border-radius: 9999px; cursor: pointer;
}
button.btn-secondary { background: #fff; color: #111827; }

/* Inputs */
input, select, textarea {
  width: 100%; border: 1px solid #d1d5db; border-radius: 9999px; padding: 12px 16px; font-size: 16px;
}
input[type="date"] { background: #fff; color: #111827; }

/* Cards/grid */
.card { border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; background: #fff; }
.grid { display: grid; gap: 16px; }

/* Navbar placeholder */
.navbar { border-bottom: 1px solid #e5e7eb; padding: 10px 16px; background: #fff; }

/* Hero image fallback */
.hero-img { width: 100%; height: 320px; object-fit: cover; background: #e5e7eb; }
