/* ═══════════════════════════════════════════════
   TRACER GOLF — Shared Brand Stylesheet
   Imported by: index.html + all tool pages
   ═══════════════════════════════════════════════ */

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

/* ── Brand Tokens ── */
:root {
  /* Core palette */
  --orange:       #F55706;
  --orange-dim:   rgba(245,87,6,0.12);
  --navy:         #07104D;
  --neutral-700:  #474353;
  --surface:      #F4F1F9;
  --white:        #FFFFFF;

  /* Navy alpha tints */
  --navy-70:      rgba(7,16,77,0.70);
  --navy-40:      rgba(7,16,77,0.40);
  --navy-12:      rgba(7,16,77,0.12);
  --navy-06:      rgba(7,16,77,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--navy);
}

/* ── Orange top strip (all pages) ── */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: var(--orange); z-index: 9999;
  pointer-events: none;
}

/* ── Tracer Golf Logo / Wordmark ──────────────────
   Usage:
     <div class="tg-logo">
       <div class="tg-logo__mark"><svg…/></div>
       <div class="tg-logo__type">
         <span class="tg-logo__tracer">TRACER</span>
         <span class="tg-logo__golf">GOLF</span>
       </div>
     </div>
   Modifiers: .tg-logo--lg  .tg-logo--onDark
   ─────────────────────────────────────────────── */
.tg-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.tg-logo__mark {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tg-logo--lg .tg-logo__mark { width: 40px; height: 40px; border-radius: 10px; }
.tg-logo__mark svg { width: 18px; height: 18px; display: block; }
.tg-logo--lg .tg-logo__mark svg { width: 22px; height: 22px; }
.tg-logo__type { display: flex; flex-direction: column; line-height: 1; }
.tg-logo__tracer {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--orange); letter-spacing: 0.5px; line-height: 1;
}
.tg-logo--lg .tg-logo__tracer { font-size: 22px; }
.tg-logo--onDark .tg-logo__tracer { color: #fff; }
.tg-logo__golf {
  font-family: 'Poppins', sans-serif;
  font-size: 8px; font-weight: 600;
  color: var(--navy-70); letter-spacing: 3px;
  text-transform: uppercase; line-height: 1; margin-top: 2px;
}
.tg-logo--lg .tg-logo__golf { font-size: 10px; margin-top: 3px; }
.tg-logo--onDark .tg-logo__golf { color: rgba(255,255,255,0.65); }
