/* ===== ABOUT PAGE ===== */

/* ===== PAGE WIDTH LOCK ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
}

.page-about {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.page-about .navbar {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.page-about .nav-links a {
  color: #000 !important;
}

.page-about .logo {
  filter: brightness(0) invert(0) !important;
}

.page-about .navbar.solid {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(8px) !important;
}

/* Make burger visible on white background */
@media (max-width: 950px) {
  .page-about .menu-toggle span {
    background: #000;
  }
}

/* ===== MAIN LAYOUT ===== */
.about-main {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 140px 1.5rem 4rem;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.about-hero {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2.75rem;
}

.about-hero-text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  font-family: "Permanent Marker", cursive;
  font-size: 2.9rem;
  margin-bottom: 0.85rem;
}

.about-hero p {
  line-height: 1.85;
  color: #222;
}

/* ===== PERSONAL INTRO CARD ===== */
.about-card {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background: #f6f6f6;
  border-radius: 22px;
  padding: 2.1rem 2rem;
  margin: 2.2rem 0 3rem;
}

.about-card h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.about-card p {
  line-height: 1.85;
  color: #222;
  margin-bottom: 0.9rem;
}

.about-card-photo {
  margin: 0;
}

.about-card-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  display: block;
}

/* ===== STORY SPLITS ===== */
.about-split {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin: 2.75rem 0;
}

.about-split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.about-split-copy {
  min-width: 0;
}

.about-split-copy h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.about-split-copy p {
  line-height: 1.85;
  color: #222;
}

.about-split-photo {
  margin: 0;
  min-width: 0;
}

.about-split-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  display: block;
}

/* ===== VISION SECTION ===== */
.about-vision {
  width: 100%;
  max-width: 100%;
  margin-top: 3.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-vision h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2.1rem;
  margin-bottom: 0.9rem;
}

.about-vision p {
  line-height: 1.9;
  color: #222;
  margin-bottom: 0.9rem;
}

.about-vision-photos {
  width: 100%;
  max-width: 100%;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.about-vision-photos img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  display: block;
}

/* ===== CTA ===== */
.about-cta {
  width: 100%;
  max-width: 100%;
  margin-top: 3.5rem;
  background: #000;
  color: #fff;
  border-radius: 22px;
  padding: 2.4rem 1.6rem;
  text-align: center;
  overflow: hidden;
}

.about-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.about-cta p {
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 1.35rem;
}

.about-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #000;
}

.about-btn.primary {
  background: transparent;
  color: #fff;
}

.about-btn.primary:hover {
  background: #fff;
  color: #000;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  width: 100%;
  max-width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem 1.8rem;
  margin-top: 4rem;
  overflow: hidden;
}

.footer-legal {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  line-height: 1.6;
  text-decoration: none;
  border-bottom: none;
  outline: none;
}

.footer-legal span,
.footer-legal a,
.footer-link {
  text-decoration: none;
  border-bottom: none;
  outline: none;
}

.footer-link {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.footer-link:hover {
  text-decoration: underline;
}

/* ===== FOOTER PARTNERS ===== */
.footer-partners {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 1.2rem;
  overflow: visible;
}

.footer-partners-title {
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.7;
  margin: 0 0 0.75rem 0;
}

.footer-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  column-gap: 2rem;
  overflow: visible;
}

.footer-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

.footer-logos img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  display: block;
}

.footer-logos img[alt="ION"] {
  height: 155px;
}

.footer-logos img[alt="SolarGuard"] {
  height: 72px;
}

.footer-logos img[alt="ROC Bike Customs"] {
  height: 38px;
}

.footer-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .about-main {
    padding-top: 130px;
  }

  .about-hero h1 {
    font-size: 2.35rem;
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 1.6rem 1.25rem;
  }

  .about-card-photo img {
    height: 280px;
  }

  .about-split,
  .about-split.reverse {
    grid-template-columns: 1fr;
  }

  .about-split-photo img {
    height: 260px;
  }

  .about-vision-photos {
    grid-template-columns: 1fr;
  }

  .about-vision-photos img {
    aspect-ratio: 3 / 2;
    height: auto;
  }
}

/* Desktop only: reverse layout, photo left / text right */
@media (min-width: 861px) {
  .about-split.reverse .about-split-photo {
    order: 0;
  }

  .about-split.reverse .about-split-copy {
    order: 1;
  }
}

@media (max-width: 700px) {
  html,
  body,
  .page-about,
  main,
  section,
  figure,
  .about-main,
  .about-hero,
  .about-split,
  .about-split-copy,
  .about-split-photo,
  .about-vision,
  .about-vision-photos,
  .about-cta,
  .site-footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    touch-action: pan-y;
  }

  .about-main {
    padding: 120px 1rem 3.5rem;
  }

  .about-hero h1 {
    font-size: 2.15rem;
    line-height: 1.15;
  }

  .about-hero p,
  .about-split-copy p,
  .about-vision p,
  .about-cta p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .about-split {
    gap: 1.3rem;
    margin: 2.4rem 0;
  }

  .about-split-copy h2,
  .about-vision h2 {
    font-size: 1.8rem;
  }

  .about-split-photo img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .about-cta {
    padding: 2rem 1rem;
  }

  .about-cta h2 {
    font-size: 1.9rem;
  }

  .about-btn {
    width: 100%;
    max-width: 260px;
  }

  .footer-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.75rem;
    max-width: 100%;
    padding: 0 0.25rem;
  }
}

@media (max-width: 600px) {
  .footer-legal .footer-break {
    display: block;
    height: 0;
  }

  .footer-legal .footer-sep {
    display: none;
  }
}

@media (min-width: 601px) {
  .footer-legal .footer-break {
    display: none;
  }

  .footer-legal .footer-sep {
    display: inline;
  }
}

/* ===== KEEP MOBILE FOOTER LOGO SIZES CONSISTENT ACROSS ALL PAGES ===== */
@media (max-width: 700px) {
  .site-footer .footer-logos img[alt="ION"] {
    height: 76px !important;
    max-height: none !important;
    max-width: 120px !important;
  }

  .site-footer .footer-logos img[alt="SolarGuard"] {
    height: 50px !important;
    max-height: none !important;
    max-width: 110px !important;
  }

  .site-footer .footer-logos img[alt="ROC Bike Customs"] {
    height: 28px !important;
    max-height: none !important;
    max-width: 120px !important;
  }
}

/* ===== MOBILE MENU: STAY VISIBLE AFTER SCROLL ===== */
@media (max-width: 950px) {
  .navbar,
  .navbar.solid,
  .nav-bar {
    overflow: visible !important;
  }

  .navbar.solid {
    backdrop-filter: none !important;
  }

  .mobile-menu {
    position: fixed !important;
    z-index: 99999 !important;
    display: none;
    overflow: visible !important;
  }
}
