/* Danke page styles - matches main site design system */
:root {
  --background: hsl(40, 50%, 97%);
  --foreground: hsl(0, 0%, 20%);
  --primary: hsl(150, 38%, 17%);
  --primary-foreground: hsl(40, 50%, 97%);
  --muted-foreground: hsl(0, 0%, 45%);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  -webkit-font-smoothing: antialiased;
}

.container {
  text-align: center;
  max-width: 28rem;
}

.icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: opacity 0.2s;
}

.button:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}
