/* Spana.io - Refined */

@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --green: #004225;
  --green-muted: #1a5c3a;
  --cream: #faf8f3;
  --cream-dark: #f0ebe0;
  --gold: #b8960c;
  --text-primary: #1a2e23;
  --text-secondary: #4a5d52;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--cream);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content wrapper */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

/* Title */
.content h1 {
  font-size: 4rem;
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

/* Subtle gold underline accent */
.content h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

.content p {
  max-width: 480px;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.content .link {
  color: var(--green);
  text-decoration: none;
  font-size: 1.125rem;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s, border-color 0.2s;
}

.content .link:hover {
  color: var(--green-muted);
  border-color: var(--green-muted);
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.875rem;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 600px) {
  .content h1 {
    font-size: 2.75rem;
  }

  .content p {
    font-size: 1.125rem;
  }
}
