/*
Theme Name: Tailsbegin
Description: Thema voor het Tailsbegin hondenplatform.
Version: 0.2.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: tailsbegin
*/

:root {
  --bg: #faf7f2;
  --ink: #1c1a17;
  --muted: #6b6459;
  --line: #ddd5c8;
  --accent: #9a5b3c;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14120f;
    --ink: #f0ebe3;
    --muted: #9c9285;
    --line: #322d26;
    --accent: #d08a63;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.wrap {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Koptekst */

.site-header {
  border-bottom: 1px solid var(--line);
}

.site-title {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin: 0;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-description {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0.5rem 0 0;
}

/* Berichten */

.entry + .entry {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 3rem;
}

.entry-title {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.entry-title a {
  color: inherit;
  text-decoration: none;
}

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

.entry-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.entry-content p { margin: 0 0 1rem; }

.entry-content a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

/* Voettekst */

.site-footer {
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Tijdelijke homepagina — zie front-page.php.
   Gelijk gehouden aan placeholder/index.html. */

.placeholder-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
}

.placeholder {
  width: 100%;
  max-width: 34rem;
}

.placeholder p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 30rem;
}

/* Specifieker dan de regel hierboven, anders wint --muted van --accent. */
.placeholder .placeholder-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

/* Groet van Vida — ook specifieker dan `.placeholder p`. */
.placeholder .placeholder-signature {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin: 1.75rem 0 0;
}

.placeholder-title {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 9vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.placeholder hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0 1.25rem;
}

.placeholder-footer {
  font-size: 0.85rem;
  color: var(--muted);
}
