/* Divine Minimalism — DearGod Website */

:root {
  --primary: #735C00;
  --primary-container: #D4AF37;
  --background: #FFF8EF;
  --surface: #FFF8EF;
  --surface-dim: #E2D9C6;
  --on-surface: #1F1B10;
  --on-surface-variant: #4D4635;
  --outline: #7F7663;
  --outline-variant: #D0C5AF;
  --inverse-surface: #343023;
  --inverse-on-surface: #F9F0DC;
  --gold: #E9C349;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ── Landing Hero ── */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1.5rem;
  text-align: center;
}

.logo {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(115, 92, 0, 0.15);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--on-surface-variant);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.app-store-badge {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-store-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.app-store-badge img {
  height: 54px;
}

.hero-footer {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.hero-footer a {
  color: var(--outline);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-footer a:hover {
  color: var(--primary);
}

/* ── Divider ── */

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-container));
  border: none;
  border-radius: 1px;
  margin: 0 auto;
}

/* ── Privacy Policy Page ── */

.policy-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 2rem;
}

.policy-header .back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.policy-header .back-link:hover {
  text-decoration: underline;
}

.policy-header .logo-small {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(115, 92, 0, 0.1);
  margin-bottom: 1.5rem;
}

.policy-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.policy-header .effective-date {
  font-size: 0.875rem;
  color: var(--outline);
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.policy-section p,
.policy-section li {
  color: var(--on-surface-variant);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.policy-section ul {
  list-style: none;
  padding-left: 0;
}

.policy-section li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.policy-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--primary-container);
  border-radius: 50%;
}

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

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

.policy-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--outline-variant);
  margin-top: 3rem;
}

.policy-footer p {
  font-size: 0.8125rem;
  color: var(--outline);
}

/* ── Responsive ── */

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }

  .logo {
    width: 110px;
    height: 110px;
    border-radius: 22px;
  }

  .policy-header h1 {
    font-size: 1.625rem;
  }
}
