/* Easy File Processing – Clean, professional theme */

:root {
  --color-bg: #fafbfc;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-accent: #1e3a5f;
  --color-accent-light: #2c5282;
  --color-border: #e2e8f0;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 720px;
  --space: 1.5rem;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space);
}

/* Header */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space);
}

.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--color-accent-light);
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--color-accent);
}

/* Hero */
.hero {
  background: var(--color-accent);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.section {
  padding: 2.5rem 0;
  background: var(--color-surface);
}

.section:nth-child(even) {
  background: var(--color-bg);
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.section-intro {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

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

.section p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

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

.section a {
  color: var(--color-accent);
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
}

.small {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Resource list */
.resource-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.resource-list li {
  margin-bottom: 0.5rem;
}

/* Legal page (Privacy) */
.legal-page {
  padding: 2.5rem 0 4rem;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-accent);
  margin: 0 0 0.25rem;
}

.legal-page .updated {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.legal-page section {
  margin-bottom: 2rem;
}

.legal-page section h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.legal-page section p {
  margin: 0 0 0.75rem;
  color: var(--color-text-muted);
}

.legal-page a {
  color: var(--color-accent);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space) 0;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space);
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-inner a {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 2rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
