/*
Theme Name:  Get Armed
Theme URI:   https://getarmed.com
Author:      Get Armed
Author URI:  https://getarmed.com
Description: Custom single-page landing + inventory theme for Get Armed — licensed FFL dealer and Class III SOT suppressor specialist.
Version:     1.0.0
Requires at least: 5.9
Tested up to: 6.9
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: getarmed
Tags:        custom, firearms, inventory, dark
*/

/* === RESET & BASE ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  background: #0a0a0a;
  color: #e8e4df;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* === CSS VARIABLES ============================================ */
:root {
  --black:       #0a0a0a;
  --charcoal:    #1a1a1a;
  --steel:       #2d2d2d;
  --mid:         #3a3a3a;
  --silver:      #8a8a8a;
  --light:       #e8e4df;
  --cream:       #f5f2ed;
  --accent:      #c8a96e;
  --accent-dark: #a08040;
  --white:       #ffffff;
  --nav-height:  72px;
}

/* === TYPOGRAPHY ============================================== */
.ga-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ga-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.ga-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

/* === BUTTONS ================================================= */
.btn-primary {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--black);
  padding: 15px 38px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); color: var(--black); }

.btn-ghost {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--accent);
  padding: 15px 38px;
  cursor: pointer;
  background: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(200,169,110,0.07); }

/* === NAV ===================================================== */
#ga-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  transition: background 0.3s;
}

.ga-nav-logo img { height: 36px; filter: invert(1); }

.ga-nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.ga-nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
}
.ga-nav-links a:hover,
.ga-nav-links a.active { color: var(--accent); }

.ga-nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 10px 24px;
  transition: background 0.2s;
}
.ga-nav-cta:hover { background: var(--accent-dark); color: var(--black); }

/* Mobile menu toggle */
.ga-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.ga-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: transform 0.3s, opacity 0.3s;
}

/* === FOOTER ================================================== */
#ga-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ga-footer-logo img { height: 28px; filter: invert(1); opacity: 0.55; }
.ga-footer-legal {
  font-size: 11px;
  color: var(--silver);
  line-height: 1.7;
  text-align: center;
  max-width: 520px;
}
.ga-footer-socials { display: flex; gap: 12px; }
.ga-footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
}
.ga-footer-social:hover { border-color: var(--accent); color: var(--accent); }

/* === UTILITY ================================================= */
.ga-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === SCROLL REVEAL =========================================== */
.ga-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ga-reveal.visible { opacity: 1; transform: translateY(0); }

/* === ANIMATIONS ============================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE NAV ========================================== */
@media (max-width: 900px) {
  #ga-nav { padding: 0 24px; }
  .ga-nav-links { display: none; position: absolute; top: var(--nav-height); left: 0; right: 0; flex-direction: column; background: rgba(10,10,10,0.98); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(200,169,110,0.15); }
  .ga-nav-links.open { display: flex; }
  .ga-nav-toggle { display: flex; }
  .ga-nav-cta { display: none; }
  .ga-wrap { padding: 0 24px; }
  #ga-footer { flex-direction: column; align-items: center; text-align: center; padding: 40px 24px; }
}
