:root {
  --card-bg: rgba(255, 255, 255, 0.82);
  --card-border: rgba(0, 0, 0, 0.08);
  --text: #1a1a1a;
  --muted: #4a4a4a;
  --link: #1a1a1a;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

body {
  /* Background image (your generated image) */
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Makes text readable even if background changes */
  background-color: #ffffff;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 18px; /* change to right: 18px; left: auto; if you want top-right */
  z-index: 10;
}

.logo {
  width: 120px;          /* adjust */
  height: auto;
  display: block;
  opacity: 0.9;          /* subtle */
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

.content {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 96px 18px 48px; /* top padding leaves room for logo */
}

.card {
  width: min(720px, 100%);
  padding: 28px 26px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card-bg);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h1 {
  margin: 0 0 8px 0;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.02em;
}

.tagline {
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.details p {
  margin: 8px 0;
  line-height: 1.5;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  position: fixed;
  left: 18px;
  bottom: 14px;
  color: rgba(0,0,0,0.55);
}
