/* Digital invite page (invite.vinc.org) - matches the invite + RSVP aesthetic. */

@font-face {
  font-family: "EB Garamond";
  src: url("/fonts/ebgaramond-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f7f3ea;
  --ink: #3b342b;
  --gold: #a6884c;
  --gold-dark: #8f7440;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  max-width: 30rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.invite {
  margin: 0;
}

.invite img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border: 1px solid rgba(166, 136, 76, 0.35);
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(59, 52, 43, 0.12);
}

.cta {
  text-align: center;
  margin-top: 2rem;
}

.btn-gold {
  display: inline-block;
  min-width: 12rem;
  font-family: inherit;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #fffdf8;
  background: var(--gold);
  border: none;
  border-radius: 3px;
  padding: 0.8rem 2.5rem;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.cta-note {
  font-size: 1rem;
  color: rgba(59, 52, 43, 0.75);
  margin: 0.9rem 0 0;
}
