/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0a0c10; /* deep dark background */
  color: #e6e6e6;
  line-height: 1.6;
}

/* ========== GLOBAL ELEMENTS ========== */

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid #0050ff; /* royal blue */
  background: linear-gradient(135deg, #0050ff, #002b80);
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn2 {
  display: inline-block;
  padding: 0.75rem 3.25rem;
  border-radius: 999px;
  border: 1px solid royalblue; /* royal blue */
  background: linear-gradient(135deg, navy, black);
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}


.btn--outline {
  background: transparent;
  color: #ff4040; /* bright dark-red accent */
  border-color: #8b0000; /* dark red */
  
}
  
  .btn2--outline {
 background: linear-gradient(135deg, navy, black);
  color: royalblue; 
  border-color: navy; 
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #0066ff, #003399);
}

.btn2:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  border: 1px solid royalblue; /* royal blue */
  background: linear-gradient(135deg, black, navy);
}

/* ========== HEADER & NAV ========== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: 800;
  height: 120px;
  
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-mark {
  width: 60px;
  height: 60px;
  radius: 8px;
  background: none; /* remove gradient if using full logo */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.logo-full {
  height: 164px;
  width: auto;
  object-fit: contain;
  display: block;
}


.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  color: #c9cdd4;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ff4040; /*bright red*/
  
}

.nav-cta {
  margin-left: 1rem;
}

/* Hide hamburger icon on desktop */
.nav-toggle {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}







/* ========== HERO SECTIONS ========== */

.hero {
  padding: 4rem 0 3rem;
background: radial-gradient(circle at 20% 0, #0050ff 0%, #8b0000 50%, #000000 100%);


}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 1.2rem;
  font-weight: 800;
  /*color: #6c8cff;*/
  color: SILVER;
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #f5f5f5;
}

.hero-highlight {
  color: #ff4040; /* bright red accent in heading */
}

.hero-subtitle {
  color: #b4bcc8;
  max-width: 30rem;
  margin-bottom: 1.8rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #9da5b0;
}

.hero-meta span strong {
  color: #e6e6e6;
}

.hero-image {
  position: relative;
}

/* Hero product / archer placeholder */
.hero-image-placeholder {
  height: 320px;
  border-radius: 20px;
background: radial-gradient(circle at 20% 0, #39ff14, #0050ff 60%);

  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.hero-badge {
  position: absolute;
  bottom: 10%;
  right: 5%;
  background: rgba(5, 5, 7, 0.9);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  border: 1px solid #0050ff;
  color: #e6e6e6;
}

/* ========== COMMON SECTIONS ========== */

.section {
  padding: 3.5rem 0;
}

.section--dark {
  background: #05070b;
}

.section--alt {
  background: radial-gradient(circle at top, #141827 0, #05070b 70%);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.7rem;
  color: #f5f5f5;
}

.section-subtitle {
  color: #9da5b0;
  max-width: 32rem;
  font-size: 0.9rem;
}

/* Section kicker / label */
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: #6c8cff;
  margin-bottom: 0.75rem;
}

/* ========== PRODUCTS GRID ========== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: linear-gradient(145deg, #11141a, #05070b);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.product-card-media {
  background: radial-gradient(circle at top, #182136, #05070b 60%);
  padding: 1.75rem 1.75rem 1.25rem;
}

.product-tag {
  display: inline-flex;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6c8cff;
  margin-bottom: 0.75rem;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: #f5f5f5;
}

.product-subtitle {
  font-size: 0.8rem;
  color: #aab2bf;
}

/* Product image placeholder to match palette */
.product-image-placeholder {
  height: 180px;
  border-radius: 14px;
  margin-top: 1rem;
  background: linear-gradient(135deg, #0050ff, #8b0000 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.product-card-body {
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.75rem;
  color: #9da5b0;
  margin-bottom: 1rem;
}

.product-specs span strong {
  display: block;
  color: #e6e6e6;
  font-size: 0.75rem;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #c9cdd4;
}

/* ========== SPLIT SECTIONS (ABOUT, STORY, ETC.) ========== */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.split-title {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  color: #f5f5f5;
}

.split-text {
  color: #c2c7d3;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* ========== TABLES (DEALERS, SPECS) ========== */

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  color: #d4dae3;
}

.table th,
.table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table th {
  text-align: left;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: #6c8cff;
}

/* ========== FORMS (SUPPORT / DEALER SEARCH) ========== */

.field-group {
  margin-bottom: 1rem;
}

.field-label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9da5b0;
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #05070b;
  color: #e6e6e6;
  font-size: 0.9rem;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: #0050ff;
  box-shadow: 0 0 0 1px rgba(0, 80, 255, 0.5);
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========== BLOG ========== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: #05070b;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
}

.blog-meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6c8cff;
  margin-bottom: 0.7rem;
}

.blog-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #f5f5f5;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: #c2c7d3;
  margin-bottom: 0.8rem;
}

/* ========== FOOTER ========== */

.footer {
  padding: 2.5rem 0 2rem;
  background: #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6c8cff;
  margin-bottom: 0.6rem;
}

.footer-links {
  list-style: none;
  font-size: 0.9rem;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-links a {
  color: #c9cdd4;
}

.footer-links a:hover {
  color: #0050ff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #7f868f;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}



  .product-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 1024px) {
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 2.1rem;
  }
}
/* ===== HEADER SHADOW ===== */
.header {
  box-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* ===== NAV LINK HOVER EFFECT ===== */
.nav a {
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0050ff, #8b0000);
  transition: width 0.25s ease;
}

.nav a:hover {
    opacity: 1;
    font-size: 0.85rem;
  font-weight: 800;
  color: royalblue;
}

.nav a:hover::after {
  width: 100%;
}
/* ============================================
   MOBILE HEADER + NAV (Unified, Clean, Stable)
   ============================================ */
@media (max-width: 1024px) {

  /* Reduce header height for portrait iPhones */
  .header-inner {
    height: 80px;
  }

  /* Show hamburger button */
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    visibility: visible;
    opacity: 1;
    z-index: 10000;
  }

  .nav-toggle span {
    width: 28px;
    height: 3px;
    background: #e6e6e6;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  /* Hamburger → X animation */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* MOBILE NAV PANEL */
  .nav {
    position: absolute;
    top: 80px; /* matches header height */
    left: 0;
    right: 0;
    background: #05070b;
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    /* Hidden by default */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    /* Animation setup */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      max-height 0.35s ease,
      opacity 0.35s ease,
      transform 0.35s ease;
    z-index: 9999;
  }

  /* When JS adds .show → slide down */
  .nav.show {
    max-height: 500px; /* enough for all links */
    opacity: 1;
    transform: translateY(0);
  }

  /* Mobile nav links */
  .nav a {
    color: #e6e6e6 !important;
    padding: 12px 0;
    display: block;
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-left: 0;
  }

  /* Responsive layout adjustments */
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 2.1rem;
  }
}



