/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #eeeeee;
  background-color: #111111;
  line-height: 1.6;
}

a {
  color: #d41624;
  text-decoration: none;
}

a:hover {
  color: #ff3333;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

/* TOPBAR */
.topbar {
  background-color: #cc0000;
  color: #ffffff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.topbar a:hover {
  border-bottom: 2px solid #ffffff;
}

/* HEADER */
header {
  background-color: #000000;
  color: #eeeeee;
  padding: 1rem 0;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

nav a {
  color: #eeeeee;
  font-weight: 500;
}

.contact-inline {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #cccccc;
}

/* HERO SECTIONS */
.hero,
.services-hero,
.sell-hero {
  background: linear-gradient(to bottom, rgba(17,17,17,0.85), rgba(17,17,17,0.95)),
              url('assets/hero-bg.jpg') center center / cover no-repeat;
  padding: 4rem 1rem;
  text-align: center;
  color: #ffffff;
}

.hero h1,
.services-hero h1,
.sell-hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p,
.services-hero p,
.sell-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #dddddd;
}

.cta-buttons a.btn {
  display: inline-block;
  margin: 2rem;
  padding: 0.75rem 1.25rem;
  background-color: #d41624;
  color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
}

.cta-buttons a.btn:hover {
  background-color: #990000;
}

.video-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1rem;
  color: #ffffff;
}

@media (max-width: 768px) {
  .video-hero {
    height: 280px;
  }

  .video-content {
    padding: 2rem 1rem;
  }

  .video-content h1 {
    font-size: 1.5rem;
  }

  .video-content p {
    font-size: 1rem;
  }
}

/* VALUE PROPS */
.value-props {
  background-color: #181818;
  padding: 3rem 1rem;
  text-align: center;
}

.value-props .prop {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .value-props .container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  .value-props .prop {
    flex: 1;
  }
}

/* HARDWARE SECTION */
.hardware {
  background-color: #222222;
  padding: 3rem 1rem;
  color: #dddddd;
}

.hardware h2 {
  color: #ffffff;
}

.hardware ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

/* CALLOUT SECTIONS */
.sell-callout,
.about-brief {
  background-color: #181818;
  padding: 3rem 1rem;
  text-align: center;
}

.sell-callout h2,
.about-brief h2 {
  color: #ffffff;
}

.sell-callout a.btn,
.about-brief a.btn {
  margin-top: 1rem;
  background-color: #d41624;
  color: #ffffff;
}

.sell-callout a.btn:hover,
.about-brief a.btn:hover {
  background-color: #990000;
}

/* FOOTER */
footer {
  background-color: #000000;
  color: #cccccc;
  padding: 2rem 1rem;
  text-align: center;
}

footer nav ul {
  justify-content: center;
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

footer a {
  color: #cccccc;
}

h1, h2, h3 {
  color: #ffffff;
  border-left: 4px solid #d41624;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

/* VENDOR LOGOS */
.vendor-logos {
  background-color: #1a1a1a;
  padding: 2rem 1rem;
  text-align: center;
}

.logo-strip-label {
  font-size: 1rem;
  color: #bbbbbb;
  margin-bottom: 1rem;
}

.logo-strip img {
  margin: 0 1rem;
  vertical-align: middle;
}

/* CONTACT INLINE LINK STYLE */
.contact-inline a {
  color: #cc0000;
  font-weight: 500;
  text-decoration: none;
}

.contact-inline a:hover {
  text-decoration: underline;
}

/* Reuse CTA button style */
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: #d41624;
  color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1rem;
}

.btn:hover {
  background-color: #990000;
}

/* Match "What We Sell" background */
.alt-section {
  background-color: #222222;
  padding: 3rem 1rem;
  text-align: center;
}

/* CONTACT PAGE – Clean Version */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-block {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  border-left: 4px solid #d41624;
  padding-left: 0.5rem;
}

.person {
  line-height: 1.6;
}

.person + .person {
  margin-top: 1.5rem;
}

.person a {
  color: #d41624;
  text-decoration: none;
}

.person a:hover {
  text-decoration: underline;
}

/* Contact section header spacing fix */
.contact-section h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  border-left: none; /* Remove red stripe if inherited */
}

/* Optional: Replace red stripe with a center divider */
.section-line {
  width: 60px;
  height: 4px;
  background-color: #d41624;
  margin: 1rem auto;
  border-radius: 2px;
}

/* EASTER EGGS */
.bearcat-flag {
  display: block;
  max-width: 300px;
  margin: 2rem auto;
  border: 2px solid #d41624;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.vivian-section h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.vivian-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vivian-text {
  text-align: left;
  line-height: 1.6;
}

.vivian-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.viv-img {
  max-width: 300px;
  border: 2px solid #d41624;
  border-radius: 8px;
}

.vivian-section {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.vivian-content {
  margin-bottom: 2rem;
}

.vivian-images {
  margin-top: 1rem;
}

figure {
  margin: 0;
}

figcaption {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 0.5rem;
}


/* March 2026 cleanup pass */
.logo img {
  height: 64px;
  width: auto;
}

.video-content h1 {
  position: relative;
  display: inline-block;
  border-left: none;
  padding-left: 1.1rem;
}

.video-content h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 46px;
  background: #d41624;
  border-radius: 2px;
}

.contact-cards-two {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 760px;
}

.office-inline {
  margin-top: 1.25rem !important;
}

.sell-buy-lines {
  max-width: 720px;
  margin: 1.25rem auto 0;
}

.sell-buy-lines p {
  margin: 0.35rem 0;
  font-size: 1.05rem;
}

.contact-strip-grid.compact {
  max-width: 780px;
  margin: 0 auto;
}

.inline-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: none;
  padding: 0;
}

.inline-contact strong::after {
  content: "";
}

.inline-contact a {
  white-space: nowrap;
}

.contact-strip .btn {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .contact-cards-two {
    grid-template-columns: 1fr;
  }

  .video-content h1 {
    padding-left: 1rem;
  }

  .video-content h1::before {
    height: 40px;
  }

  .inline-contact {
    display: block;
  }

  .inline-contact strong,
  .inline-contact a {
    display: block;
    margin: 0.2rem 0;
  }
}
/* Center sitewide contact strip */
.contact-strip {
  text-align: center;
}

.contact-strip h2 {
  border-left: none;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
}

.contact-strip h2::before {
  display: none;
}

.contact-strip-grid.compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  max-width: 780px;
  margin: 0 auto 1.25rem;
}

.contact-strip .inline-contact {
  justify-content: center;
}

.contact-strip .btn {
  display: inline-block;
  margin: 1.5rem auto 0;
}
@media (max-width: 768px) {
  .video-hero {
    min-height: 460px;
    height: auto;
  }

  .video-content {
    padding: 3rem 1.25rem 2.5rem;
    text-align: center;
  }

  .video-content h1 {
    display: block;
    border-left: none;
    padding-left: 0;
    margin: 0 auto 1rem;
    font-size: 2rem;
    line-height: 1.15;
  }

  .video-content h1::before {
    display: none;
  }

  .video-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 auto 1.5rem;
    max-width: 28rem;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn {
    margin: 0;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}