/* styles.css - Lumea Senior Living Under Construction Styles */

@import url('https://rsms.me/inter/inter.css');

:root {
  --bg: #0b0b0d;            /* near-black */
  --card: #111216;          /* deep charcoal */
  --text: #f3f4f6;          /* off-white */
  --muted: #c7c9d1;         /* soft gray */
  --gold: #d4af37;          /* refined gold */
  --gold-600: #c39a2b;
  --gold-700: #a9831e;
  --ring: rgba(212, 175, 55, 0.28);
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle animated gradient background */
.background {
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(212,175,55,0.08), transparent),
              radial-gradient(900px 500px at 80% 80%, rgba(212,175,55,0.06), transparent),
              radial-gradient(600px 300px at 70% 20%, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
  filter: blur(40px);
}

.container {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 4rem 1.25rem 1.25rem;
}

.card {
  width: 100%;
  max-width: 720px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)), var(--card);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2.25rem 2rem;
  backdrop-filter: saturate(1.2) blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo {
  display: block;
  height: 64px;
  width: auto;
}
.logo img { height: 100%; width: auto; display: block; }

.mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-600));
  box-shadow: inset 0 1px 4px rgba(255,255,255,0.2), 0 10px 18px rgba(0,0,0,0.25);
}

.title {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.lead {
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  color: var(--text);
  margin: 0.75rem 0 0.25rem 0;
}

.sub {
  color: var(--muted);
  margin: 0 0 1.5rem 0;
}

.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--gold), var(--gold-600));
  color: black;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(212,175,55,0.25), inset 0 1px 1px rgba(255,255,255,0.35);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(212,175,55,0.3), inset 0 1px 1px rgba(255,255,255,0.35);
}
.btn:active {
  transform: translateY(0);
}

.footer {
  width: 100%;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  font-size: 0.925rem;
  padding: 1.25rem 0 0.5rem;
}

/* Accessibility */
.btn:focus-visible,
.card:focus-within {
  outline: 0.5px solid var(--ring);
  outline-offset: 3px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .card { padding: 1.75rem 1.25rem; }
  .actions { justify-content: space-between; }
  .logo { height: 52px; }
}