/* ═══════════════════════════════════════════════════════════════
   PrinterSolved.com — Shared Stylesheet v2
   Red & White Theme
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --red:        #CC0000;
  --red-dark:   #990000;
  --red-hover:  #AA0000;
  --red-light:  #fff0f0;
  --red-mid:    #ffe5e5;
  --white:      #ffffff;
  --bg-section: #fff8f8;
  --text:       #1a1a1a;
  --text-mid:   #444444;
  --text-muted: #777777;
  --border:     #ead8d8;
  --shadow-sm:  0 1px 4px rgba(150,0,0,0.07);
  --shadow-md:  0 4px 20px rgba(150,0,0,0.11);
  --radius:     10px;
  --nav-h:      68px;
  --max-w:      1400px;
  --font-head:  'Outfit', -apple-system, sans-serif;
  --font-body:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.ps-page { padding-top: var(--nav-h); }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--red-dark);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,0.22);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.42rem; font-weight: 900;
  color: #fff; text-decoration: none; letter-spacing: -0.02em; white-space: nowrap;
  flex-shrink: 0; display: flex; align-items: center; gap: 9px;
}
.nav-logo img { display:block; border-radius:6px; flex-shrink:0; }
.nav-logo span { color: #FF6666; }
.nav-links { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 3px; }
.nav-links li a {
  font-family: var(--font-head); font-size: 0.93rem; font-weight: 600;
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 8px 15px; border-radius: 6px;
  transition: background 0.16s, color 0.16s; white-space: nowrap;
}
.nav-links li a:hover, .nav-links li a.active {
  background: rgba(255,255,255,0.15); color: #fff;
}
.nav-links li a.nav-cta {
  background: #fff; color: var(--red-dark); font-weight: 700; padding: 8px 20px;
}
.nav-links li a.nav-cta:hover { background: var(--red-light); color: var(--red); }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--red-dark); border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 3px solid var(--red); flex-direction: column; align-items: stretch;
    gap: 0; padding: 10px 0 14px; box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li a { padding: 12px 24px; border-radius: 0; font-size: 1rem; }
  .nav-links li a.nav-cta { margin: 8px 16px 0; border-radius: 8px; text-align: center; }
}

/* ── FOOTER ── */
.site-footer {
  background: #1a0000; color: rgba(255,255,255,0.78);
  margin-top: 72px; border-top: 4px solid var(--red);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 52px 24px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.footer-brand .nav-logo { display: inline-block; font-size: 1.3rem; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.52); margin-bottom: 10px; }
.footer-disclaimer { font-size: 0.78rem !important; color: rgba(255,255,255,0.28) !important; font-style: italic; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #ff9999; margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 24px; text-align: center; }
.footer-bottom p { font-size: 0.79rem; color: rgba(255,255,255,0.28); max-width: var(--max-w); margin: 0 auto; }
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 28px; }
}

/* ── SHARED UTILITIES ── */
.ps-container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media(max-width:640px){.ps-container{padding:0 18px;}}
.ps-btn {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.97rem;
  padding: 13px 30px; border-radius: 8px; text-decoration: none; cursor: pointer;
  transition: all 0.18s; border: 2px solid transparent;
}
.ps-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ps-btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.ps-btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); }
.ps-btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.ps-btn-outline:hover { background: var(--red); color: #fff; }
.ps-btn-white { background: #fff; color: var(--red-dark); border-color: #fff; }
.ps-btn-white:hover { background: var(--red-light); }
.ps-page-hero {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 52px 24px 48px; text-align: center;
}
.ps-page-hero h1 {
  font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800; color: white; margin-bottom: 12px; line-height: 1.2;
}
.ps-page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto; }
