/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Croissant+One&display=swap');

:root {
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Croissant One', Georgia, serif; 

  --bg: #fff7fb;
  --surface: #ffffff;
  --surface-soft: #fff0f5;
  --text: #2a2a2a;
  --muted: #666;
  --border: #f1d5db;

  --pink: #ff7aa2;
  --pink-soft: #ffd6e0;
  --lavender: #a78bfa;
  --mint: #7dd3c7;
  --peach: #ffd6b5;

  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}
/* html { */
/*   font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; */
/*   font-size: 18px; */
/*   line-height: 1.6; */
/*   background: var(--bg); */
/*   color: var(--text); */
/* } */

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  background-color: #fffaf8; /* very light warm tone */
  margin: 0;
  padding: 0;
}

/* Links */
a {
  color: #e07a5f; /* warm orange-pink */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}

.site-title {
  font-family: var(--font-heading);
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.2;
}

main {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #111;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

p {
  margin-bottom: 1em;
}

.archive-intro {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.items {
  display: grid;
  gap: 1.5rem;
}

.item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.item img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 0.75rem 0;
}

.item-title {
  margin-top: 0;
}

.metadata {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.metadata li {
  margin-bottom: 0.25rem;
}

.metadata strong {
  color: var(--text);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.tag {
  background: var(--pink-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.85rem;
}

button,
.button {
  background: var(--pink-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}

button:hover,
.button:hover {
  background: var(--peach);
  text-decoration: none;
}

footer {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 800px) {
  .items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
