/* css/styles.css — Coming Soon page */

:root {
  --bg: #0e0f11;
  --text: #e9ecef;
  --text-soft: #c8d0d6;
  --muted: #aeb6bf;
  --accent: #d6b56f;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

h1 {
  font-size: 2.2rem;
  margin: 0.5rem 0;
}

.accent {
  color: var(--accent);
}

.tagline {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

img {
  max-width: 220px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  margin: 1rem 0;
}

.epigraph {
  max-width: 50ch;
  margin: 1.5rem auto;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.5;
}

footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}
