/* ============================================================
   BLOG POST — Shared stylesheet
   Used by: godaddy-website-builder-not-working.html,
            wix-website-not-showing-up-google.html,
            wordpress-plugin-not-working.html
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #ff7a59;
  --orange-dark: #e8673e;
  --dark: #1a1f2e;
  --dark-2: #1f2638;
  --dark-3: #252d40;
  --text: #f4f6f9;
  --muted: #c2cedc;
  --muted-dim: #8fa3bc;
  --border: rgba(255,255,255,0.12);
  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --radius: 12px;
  --max: 1200px;
  --prose: 720px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--text); line-height: 1.7; font-size: 17px; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── SKIP LINK ── */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--orange); color: #fff; padding: .5rem 1rem; border-radius: 4px; font-weight: 600; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* ── HEADER / NAV ── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; background: rgba(10,13,16,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.12); transition: background 0.4s cubic-bezier(0.16,1,0.3,1); }
.site-header.scrolled { background: rgba(10,13,16,0.98); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: flex; align-items: center; font-family: 'Manrope', system-ui, sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; text-decoration: none; }
.logo-serve { color: #f4f6f9; }
.logo-built { color: #ff7a59; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { font-family: 'Manrope', system-ui, sans-serif; font-size: 0.9rem; font-weight: 500; color: #c2cedc; transition: color 0.2s; position: relative; text-decoration: none; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1.5px; background: #ff7a59; transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.nav-links a:hover { color: #f4f6f9; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta-link { flex-shrink: 0; display: inline-flex; align-items: center; padding: 0.75rem 1.6rem; border-radius: 12px; font-family: 'Manrope', system-ui, sans-serif; font-weight: 600; font-size: 0.95rem; background: #ff7a59; color: #fff !important; box-shadow: 0 4px 20px rgba(255,122,89,0.28); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); text-decoration: none; white-space: nowrap; }
.nav-cta-link:hover { background: #e8673e; box-shadow: 0 6px 30px rgba(255,122,89,0.28); transform: translateY(-1px); text-decoration: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #f4f6f9; }
@media (max-width: 900px) { .nav-links, .nav-cta-link { display: none; } .nav-toggle { display: flex; } }

/* ── LAYOUT ── */
.page-wrap { max-width: var(--max); margin: 0 auto; padding: 7rem 1.5rem 5rem; display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .page-wrap { grid-template-columns: 1fr; } .sidebar { display: none; } }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: .85rem; color: var(--muted-dim); margin-bottom: 2rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }

/* ── POST META ── */
.post-meta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.post-tag { background: rgba(255,122,89,0.12); color: var(--orange); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 100px; }
.post-date, .read-time { font-size: .85rem; color: var(--muted-dim); }

/* ── HEADINGS ── */
h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.post-intro { font-size: 1.1rem; color: var(--muted); line-height: 1.75; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }

/* ── PROSE ── */
.prose h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: 2.5rem 0 .75rem; color: var(--text); }
.prose h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; margin: 1.75rem 0 .5rem; color: var(--text); }
.prose p { margin-bottom: 1.1rem; color: var(--muted); }
.prose p strong { color: var(--text); }
.prose a { color: var(--orange); }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.prose li { color: var(--muted); }
.prose li strong { color: var(--text); }

/* ── CALLOUTS ── */
.callout { border-radius: var(--radius); padding: 1.5rem 1.75rem; margin: 2rem 0; font-size: .95rem; }
.callout-tip { background: rgba(110,231,183,0.06); border-left: 3px solid #6ee7b7; }
.callout-tip strong { color: #6ee7b7; }
.callout-warn { background: rgba(251,191,36,0.06); border-left: 3px solid #fbbf24; }
.callout-warn strong { color: #fbbf24; }
.callout-alert { background: rgba(255,59,59,0.06); border-left: 3px solid #ff5c5c; }
.callout-alert strong { color: #ff8080; }
.callout-pivot { background: rgba(255,122,89,0.07); border: 1.5px solid rgba(255,122,89,0.25); border-radius: var(--radius); }
.callout-pivot strong { color: var(--orange); }
.callout p { color: var(--muted); margin: 0; }
.callout p + p { margin-top: .75rem; }

/* ── FIX / STEP CARDS ── */
.fix-list, .step-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.fix-card, .step-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.75rem; display: flex; gap: 1.25rem; align-items: flex-start; }
.fix-num, .step-num { background: rgba(255,122,89,0.12); color: var(--orange); font-family: var(--font-head); font-weight: 800; font-size: .85rem; min-width: 2rem; height: 2rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fix-body h3, .step-body h3 { margin: 0 0 .4rem; font-size: 1rem; }
.fix-body p, .step-body p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ── PIVOT SECTION ── */
.pivot-section { background: var(--dark-2); border: 1.5px solid rgba(255,122,89,0.2); border-radius: var(--radius); padding: 2rem 2.25rem; margin: 2.5rem 0; }
.pivot-label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: .75rem; display: block; }
.pivot-section h2 { margin: 0 0 .75rem; font-size: 1.4rem; }
.pivot-section p { color: var(--muted); font-size: .97rem; margin-bottom: 1rem; }
.pivot-section ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.pivot-section li { color: var(--muted); font-size: .95rem; display: flex; gap: .6rem; align-items: flex-start; }
.pivot-section li::before { content: "✓"; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.75rem; border-radius: 10px; font-family: var(--font-head); font-weight: 700; font-size: .95rem; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn-primary { background: var(--orange); color: #fff !important; }
.btn-primary:hover { background: var(--orange-dark); color: #fff !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,122,89,0.3); text-decoration: none; }
.btn-sm { display: block; text-align: center; background: var(--orange); color: #fff !important; padding: .7rem 1rem; border-radius: 8px; font-family: var(--font-head); font-weight: 700; font-size: .88rem; transition: background .2s; text-decoration: none; }
.btn-sm:hover { background: var(--orange-dark); color: #fff !important; text-decoration: none; }

/* ── ERROR GRID (wordpress post) ── */
.error-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.error-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.error-card .error-name { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: #ff5c5c; margin-bottom: .4rem; }
.error-card p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 88px; }
.sidebar-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-card h4 { font-family: var(--font-head); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 1rem; }
.toc-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.toc-list a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.toc-list a:hover { color: var(--orange); text-decoration: none; }
.sidebar-cta { background: linear-gradient(135deg, rgba(255,122,89,0.12), rgba(255,122,89,0.06)); border: 1.5px solid rgba(255,122,89,0.25); }
.sidebar-cta h4 { color: var(--orange); }
.sidebar-cta p { font-size: .9rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.6; }

/* ── POST FOOTER ── */
.post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-footer p { font-size: .9rem; color: var(--muted); }
.related-links { margin-top: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.related-links a { font-size: .9rem; color: var(--orange); }

/* ── FOOTER ── */
footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 3.5rem 1.5rem 2rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-top: .75rem; }
footer h4 { font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
footer ul a { color: var(--muted); font-size: .9rem; transition: color .2s; }
footer ul a:hover { color: var(--orange); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--orange); }
