/* Guitar Tom — shared styles (every page links this before its own <style>) */

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Muli', 'Mulish', system-ui, sans-serif; background: #fff; color: #595959; font-size: 18px; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Oswald', system-ui, sans-serif; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: 'Muli', 'Mulish', system-ui, sans-serif; cursor: pointer; }
/* NAV — logo left, links right (matches guitar-tom.com header) */
.site-nav { position: relative; background: #fff; padding: 18px 0; z-index: 400; }
.nav-inner { max-width: 800px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; } /* 800px = .page-wrap, so the logo and menu line up with the content edges */
.site-nav a.logo { display: block; flex-shrink: 0; }
.site-nav a.logo img { height: 42px; width: auto; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; }
.nav-links a { font-family: 'Muli', 'Mulish', system-ui, sans-serif; font-size: 18px; color: #666; text-decoration: none; padding: 6px 0; transition: color .15s; }
.nav-links a:hover { color: #fd65c2; }
.nav-links a:focus-visible, .nav-toggle:focus-visible { outline: 2px solid #fd65c2; outline-offset: 3px; border-radius: 2px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; margin: -8px; color: #333; }
.nav-toggle svg { width: 28px; height: 28px; display: block; }
@media (max-width: 767px) {
  .site-nav { padding: 12px 20px; }
  .nav-inner { max-width: none; }
  .site-nav a.logo img { height: 36px; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid #eee; box-shadow: 0 8px 16px rgba(0,0,0,.06); }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid #f0f0f0; }
  .nav-links a { display: block; padding: 14px 20px; }
}


.nav-links a[aria-current="page"] { color: #fd65c2; }
/* reserve the header's height so the page doesn't jump when site.js fills it in */
#site-header { display: block; min-height: 78px; }
@media (max-width: 767px) { #site-header { min-height: 60px; } }

/* FOOTER (shared) */
.site-footer { border-top: 1px solid #eee; padding: 28px 20px; font-size: 15px; color: #777; }
.site-footer-inner { max-width: 800px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; }
.site-footer ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; padding: 0; }
.site-footer a { color: #777; transition: color .15s; }
.site-footer a:hover { color: #fd65c2; }
.site-footer a:focus-visible { outline: 2px solid #fd65c2; outline-offset: 3px; }
.footer-fb { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #fd65c2; color: #fff !important; }
.footer-fb:hover { background: #e054ad; }
.footer-fb svg { width: 16px; height: 16px; fill: currentColor; }
@media (max-width: 600px) { .site-footer-inner { flex-direction: column; text-align: center; } .site-footer ul { justify-content: center; } }


/* LEGAL PAGES */
.legal { max-width: 840px; margin: 0 auto; padding: 48px 20px 72px; color: #333; }
.legal h1 { font-size: clamp(32px, 5vw, 44px); color: #161e2a; line-height: 1.15; margin-bottom: 6px; }
.legal .updated { font-size: 15px; color: #777; margin-bottom: 32px; }
.legal h2 { font-size: 24px; color: #161e2a; line-height: 1.25; margin: 36px 0 10px; }
.legal p, .legal li { font-size: 17px; line-height: 1.7; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: #fd65c2; text-decoration: underline; }
.legal a:hover { color: #e054ad; }
.legal .to-fill { background: #fff3a8; padding: 0 4px; border-radius: 2px; font-weight: 700; }
.legal .table-wrap { overflow-x: auto; margin: 0 0 16px; }
.legal table { width: 100%; border-collapse: collapse; font-size: 16px; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid #eee; }
.legal th { font-family: 'Muli', 'Mulish', system-ui, sans-serif; color: #161e2a; }
.site-footer .footer-company { flex-basis: 100%; order: 3; font-size: 13px; line-height: 1.5; color: #999; margin: 0; }
