/*
Theme Name: ZivaPlans
Author: You
Version: 1.0.0
*/

/* --- Base reset --- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #141414;
  line-height: 1.8;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Remove global top padding that creates white gap under fixed header */
main, #main { padding-top: 0 !important; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.4;
  margin: 0 0 18px;
}
p { margin: 0 0 18px; }

/* --- Layout helpers (keep if you rely on them) --- */
.max-w-6xl { max-width: 1152px; margin: 0 auto; }
.max-w-5xl { max-width: 1024px; margin: 0 auto; }
.max-w-4xl { max-width: 896px;  margin: 0 auto; }
.max-w-xl  { max-width: 576px;  margin: 0 auto; }

/* Optional: default section padding ONLY when section has no class
   (much safer than substring attribute selectors) */
.entry-content section:not([class]) { padding: 80px 24px; }
@media (min-width: 768px) {
  .entry-content section:not([class]) { padding: 96px 48px; }
}
@media (min-width: 1024px) {
  .entry-content section:not([class]) { padding: 120px 96px; }
}