/*
Theme Name: Rachel Notes
Theme URI: https://rachelnotes.uk/
Author: Rachel
Description: A soft pink minimalist theme for Rachel Notes.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: rachelnotes
*/
:root {
  --pink: #f7a8c8;
  --pink-soft: #fff1f7;
  --pink-line: #f6d5e4;
  --ink: #2a2026;
  --muted: #6f5c66;
  --paper: #fffafc;
}
* { box-sizing: border-box; }
html { background: var(--pink-soft); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247,168,200,.28), transparent 34rem),
    linear-gradient(180deg, #fffafd 0%, #fff1f7 100%);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 1.7;
}
a { color: #b73573; text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: #8e1f56; }
.site-header, .site-footer, main {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
}
.site-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--pink-line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 55px rgba(183,53,115,.12);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.site-title {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  letter-spacing: -.055em;
  line-height: .95;
}
.site-title a { color: var(--ink); text-decoration: none; }
.site-description {
  margin: 1rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.nav {
  margin-top: 1.4rem;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav a { color: var(--muted); text-decoration: none; margin: 0 .55rem; }
.nav a:hover { color: #b73573; }
article, .empty-state {
  background: rgba(255,255,255,.74);
  border: 1px solid var(--pink-line);
  border-radius: 28px;
  padding: clamp(1.35rem, 5vw, 2.4rem);
  margin: 0 0 1.5rem;
  box-shadow: 0 24px 70px rgba(183,53,115,.10);
}
.entry-title {
  margin: 0 0 .35rem;
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}
.entry-title a { color: var(--ink); text-decoration: none; }
.entry-meta {
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .86rem;
  margin-bottom: 1.35rem;
}
.entry-content p { margin: 0 0 1.15rem; }
.entry-content img { max-width: 100%; height: auto; border-radius: 18px; }
.read-more {
  display: inline-block;
  margin-top: .35rem;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .86rem;
  font-weight: 650;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pagination { text-align: center; margin: 2rem 0; }
.site-footer {
  padding: 3rem 0 4.5rem;
  color: var(--muted);
  text-align: center;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .9rem;
}
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
@media (max-width: 560px) {
  body { font-size: 18px; }
  .site-header { padding-top: 3rem; }
  article, .empty-state { border-radius: 22px; }
}
