
/*
Theme Name: William Writes
Theme URI: https://example.com/
Author: Will + GPT-5 Thinking
Description: Sleek, modern dark theme with a minimal homepage, dedicated Pricing page, and blog.
Version: 1.2
License: GPL-2.0-or-later
Text Domain: william-writes
*/
:root{
  --bg:#0f1216; --card:#141922; --ink:#e6e6e6; --muted:#a7b0bd;
  --accent:#58b2ff; --accent-2:#9ae6ff; --max:1100px; --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink)}
/* Body is clean, professional sans-serif (NOT cursive) */
body{
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size:20px; line-height:1.5; letter-spacing:.1px;
}
/* Times New Roman for headings */
h1,h2,h3,h4{
  font-family:"Times New Roman", Times, serif;
  margin:0 0 .5rem 0; line-height:1.1; letter-spacing:.2px;
}
h1{font-size:56px} h2{font-size:34px} h3{font-size:26px}
p{margin:.2rem 0 1rem 0; color:var(--ink)}
a{color:var(--accent); text-decoration:none}
a:hover{color:var(--accent-2)}
.wrap{max-width:var(--max); margin:0 auto; padding:0 22px}
header.site-header{
  position:sticky; top:0; backdrop-filter:blur(8px);
  background:linear-gradient(180deg, rgba(15,18,22,.9), rgba(15,18,22,.65));
  border-bottom:1px solid #1f2530; z-index:20;
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:50px; height:50px; border-radius:10px}
.brand .name{font-family:"Times New Roman", Times, serif; font-size:22px}
.links{display:flex; gap:22px}
.links a{font-size:18px; color:var(--muted)}
.hero{padding:80px 0 20px; text-align:center}
/* Only the blurb is cursive */
.blurb{font-family:'Dancing Script', cursive; font-size:26px; color:var(--muted)}
.card{background:var(--card); border:1px solid #222836; border-radius:var(--radius); box-shadow:var(--shadow)}
.card.pad{padding:28px}
.section-title{display:flex; align-items:end; justify-content:space-between; margin:18px 0}
.section-title p{color:var(--muted); font-size:18px}
.grid{display:grid; gap:22px}
.grid.cols-2{grid-template-columns:repeat(2,1fr)}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.btn{display:inline-block; padding:12px 18px; border-radius:14px; background:var(--accent); color:#081018; font-weight:600}
.btn:hover{background:var(--accent-2)}
footer.site-footer{padding:36px 0 60px; color:var(--muted)}
.tiny{font-size:16px}
.post-card{margin-bottom:18px}
.muted{color:var(--muted)}
@media (max-width:940px){
  h1{font-size:46px}
  .grid.cols-2,.grid.cols-3{grid-template-columns:1fr}
}
