/* Kitchen Notepad Theme — Expiry GitHub Pages */

:root {
  --bg-ivory: #FFF8F0;
  --bg-card: #FFFDFB;
  --text-dark: #3C2415;
  --text-muted: #7A6355;
  --accent-amber: #C4722A;
  --accent-amber-hover: #A85E1E;
  --sage-green: #6B8E6B;
  --rule-line: #E8DDD4;
  --shadow-soft: rgba(60, 36, 21, 0.08);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-ivory);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
nav {
  background: var(--bg-card);
  border-bottom: 2px solid var(--rule-line);
  padding: 1rem 1.5rem;
  text-align: center;
}

nav a {
  color: var(--accent-amber);
  text-decoration: none;
  font-weight: 600;
  margin: 0 1rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

nav a.active {
  border-bottom: 2px solid var(--accent-amber);
  padding-bottom: 2px;
}

/* Main content container */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  flex: 1;
}

/* Headings */
h1 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.4rem;
  color: var(--accent-amber);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule-line);
  padding-bottom: 0.3rem;
}

h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero .description {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Feature list */
.features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.features li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  border-bottom: 1px solid var(--rule-line);
}

.features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Screenshots */
.screenshots {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.screenshots img {
  max-height: 480px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

/* App Store button */
.app-store-link {
  display: inline-block;
  background: var(--accent-amber);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s;
  margin: 1.5rem 0;
}

.app-store-link:hover {
  background: var(--accent-amber-hover);
}

/* Card sections (support FAQ) */
.card {
  background: var(--bg-card);
  border: 1px solid var(--rule-line);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px var(--shadow-soft);
}

/* Contact callout */
.contact-callout {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-amber);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.contact-callout a {
  color: var(--accent-amber);
  font-weight: 600;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 2px solid var(--rule-line);
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: auto;
}

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

/* Privacy policy specifics */
.effective-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 600px) {
  main {
    padding: 1.25rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  nav a {
    margin: 0 0.6rem;
    font-size: 0.9rem;
  }

  .screenshots img {
    max-height: 360px;
  }

  .screenshots {
    gap: 0.75rem;
  }
}
