/* Reed RSVP Privacy Policy - Styles */

:root {
  /* Light Theme (default) */
  --background: #faf8f3;
  --surface: #ffffff;
  --surface-variant: #faf0e6;
  --text-primary: #000000;
  --text-secondary: #555555;
  --accent: #e53935;
  --border: #e1d6ca;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0d0d0d;
    --surface: #1c1c1c;
    --surface-variant: #252525;
    --text-primary: #e0e0e0;
    --text-secondary: #c0c0c0;
    --accent: #e53935;
    --border: #333333;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.logo {
  margin-bottom: 0.5rem;
}

.logo-text {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
}

/* Main Content */
main {
  margin-bottom: 3rem;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.last-updated {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

li {
  margin-bottom: 0.5rem;
}

li:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-email {
  font-size: 1.1rem;
  font-weight: 500;
}

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

footer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 1.5rem 1rem;
  }

  .logo-text {
    font-size: 2.5rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  section {
    padding: 1.25rem;
  }
}
