/* === Custom header for order, shipping, and checkout pages === */
.simple-header {
  background: url('pic1.webp') center center / cover no-repeat;
  position: relative;
  min-height: 180px;
  color: #eee;
  font-size: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #444;
}
.simple-header * {
  position: relative;
  z-index: 1;
  color: #eee !important;
}
/* Clean rule specifically for header logos */
.simple-header .logo-inline {
  position: static;
  vertical-align: -0.2em !important;
}
.simple-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
html {
  scroll-behavior: smooth;
}

/* Mobile: disable smooth scrolling to prevent jumping */
@media screen and (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #2a2a2a;
}
/* === NAVIGATION: Working baseline with safe enhancements === */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  z-index: 1000;
  border-bottom: 1px solid #444;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
  transition: padding 0.3s ease;
}
.nav-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  padding: 0.25rem;
  cursor: pointer;
  display: none;
}
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
.nav-links li {
  padding: 0.5rem 0;
}
.nav-links a {
  color: white;
  text-decoration: none;
  display: block;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #60b177;
}
.nav-links a.active {
  color: #60b177;
  border-bottom: 2px solid #60b177;
}
/* MOBILE STYLES */
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #222;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
}
/* DESKTOP STYLES */
@media screen and (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
  }
  .nav-links li {
    width: auto;
    padding: 0;
  }
}
/* === REST OF ORIGINAL styles.css STARTS HERE === */
header, section, footer {
  padding: 2rem;
  text-align: center;
}
header {
  background: #000;
}
header img {
  width: 100px;
/*  margin-bottom: 1rem; */
}
h1 {
  font-size: 2rem;
  margin: 0.67em 0;
  margin-bottom: 0.5rem;
}

/* Ensure all h1 elements have consistent styling */
section h1,
header h1,
div h1 {
  font-size: 2rem;
  margin: 0.67em 0;
}
h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}
.cta {
  margin-top: 1rem;
  display: inline-block;
  background: #3cb371;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
  min-width: 350px;
  text-align: center;
  box-sizing: border-box;
}
.cta:hover {
  background-color: #2e9b5e;
}

/* Mobile responsive buttons */
@media screen and (max-width: 768px) {
  .cta {
    min-width: 90%;
    max-width: 300px;
  }
}

.quote {
  font-style: italic;
  color: #ccc;
  margin: 2rem 0;
}

.quote .logo-inline {
  vertical-align: -0.2em;
}

.quote-special {
  font-style: italic;
  color: #fff;
  margin: 2rem 0;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0,0,0,0.3);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #60b177;
  font-family: 'Courier New', 'Monaco', monospace;
  letter-spacing: 0.5px;
}
.features {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.product-photo, .gear-photo {
  margin: 2rem auto;
  max-width: 600px;
}
.product-photo img, .gear-photo img {
  width: 100%;
  border: 2px solid #555;
  border-radius: 8px;
}
form {
  margin-top: 1rem;
}
input[type="email"] {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  margin-right: 0.5rem;
  margin-bottom: 1rem; /* Add bottom margin for mobile spacing */
  width: 250px;
}
input[type="submit"] {
  padding: 0.5rem 1rem;
  background: #3cb371;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.bg-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 4rem 2rem;
  min-height: 180vh;
}
.bg-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.bg-section h2,
.bg-section p {
  position: relative;
  z-index: 1;
}
.feature-bg {
  background: url('pic2.webp') center center / cover no-repeat;
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
}
.feature-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.feature-bg * {
  position: relative;
  z-index: 1;
  color: #fff !important;
}
.header-bg {
  background: url('pic1.webp') center center / cover no-repeat;
  position: relative;
  min-height: 800px;
}
.header-bg::before,
.feature-bg::before,
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.header-bg * {
  position: relative;
  z-index: 1;
}
footer {
  background: url('pic3.webp') center center / cover no-repeat;
  position: relative;
  font-size: 0.9rem;
  color: #eee;
}
footer * {
  position: relative;
  z-index: 1;
}
.bg-pic1 { background-image: url('pic1.webp'); }
.bg-pic2 { background-image: url('pic2.webp'); }
.bg-pic3 { background-image: url('pic3.webp'); }
.bg-pic6 { background-image: url('pic6.webp'); background-position: center top; }
.bg-pic7 { background-image: url('pic7.webp'); justify-content: center; align-items: center; text-align: center; background-position: center 40%; }
.bg-pic8 { background-image: url('pic8.webp'); background-position: center center; }
.bg-pic9 { background-image: url('pic9.webp'); background-position: center 30%; }
.button-container {
  background-color: transparent;
  padding: 2rem;
  border-radius: 10px;
}
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  animation: bounce 2s infinite;
  opacity: 0.7;
  cursor: pointer;
  z-index: 10;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-logo {
  width: 40px;
  height: 40px;
  filter: brightness(1.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.scroll-down:hover .scroll-logo {
  transform: scale(1.1);
  filter: brightness(1.5);
}

.video-container {
  position: relative;
  padding-bottom: 30%;
  height: 0;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.parallax-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* Desktop only: apply parallax */
@media screen and (min-width: 769px) {
  .parallax-bg {
    background-attachment: fixed;
  }
}
/* Optional: further mobile fix for iOS zoom/cropping issues */
@media screen and (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
    background-position: center top;
    min-height: 80vh; /* Reduce height on mobile to prevent jumping */
  }
  
  .hero-section {
    background-attachment: scroll;
    background-position: center top;
    min-height: 80vh; /* Reduce height on mobile */
  }
}
.parallax-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* Ensure white text on dark or transparent backgrounds */
section:not(.parallax-bg):not(.bg-section):not(.feature-bg),
section:not(.parallax-bg):not(.bg-section):not(.feature-bg) h1,
section:not(.parallax-bg):not(.bg-section):not(.feature-bg) h2,
section:not(.parallax-bg):not(.bg-section):not(.feature-bg) p {
  color: white;
}
/* Extra fallback for generic h1, h2, p inside dark areas */
.header-bg h1,
.header-bg p,
footer p {
  color: white;
}
body {
  background-color: black;
  color: white;
}
/* === Shrink nav on scroll === */
.shrink .nav-inner {
  padding: 0.4rem 1rem;
}
/* Default size */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img {
  height: 30px;
  max-width: 140px;
  object-fit: contain;
  transition: height 0.3s ease, transform 0.3s ease;
}
/* Shrunk size */
.shrink .nav-logo img {
  height: 20px; /* try 28px or 22px to fine-tune */
  transform: scale(0.95); /* optional subtle scaling */
}
.investor-section {
  min-height: auto; /* or a specific height if needed */
}
.hero-section {
  background-image: url('pic4.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  margin-top: 0;
  padding-top: 0;
}
/* Desktop: enable parallax */
@media screen and (min-width: 769px) {
  .hero-section {
    background-attachment: fixed;
  }
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 3rem 2rem;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  border-radius: 12px;
  text-align: center;
}
.bg-pic4 {
  background-image: url('pic4.webp');
}
.bg-pic5 {
  background-image: url('pic5.webp');
}
/* If needed for clarity */
.hero-section.bg-pic5 {
  background-image: url('pic5.webp');
}
.bg-pic1 {
  background-image: url('pic1.webp');
}
/* If header uses a different class like #main-header */
#main-header.hero-section {
  background-image: url('pic1.webp');
}

/* Logo inline styling */
.logo-inline {
  height: 1em;
  width: auto;
  vertical-align: -0.2rem !important;
/*   display: inline;  */
}

/* Large logo for special headings like "GET LOGO!" */
.logo-large {
  height: 1.6em;
  vertical-align: middle;
  display: inline;
  margin-bottom: 0.2em;
}

/* Extra large scaled logo for hero sections */
.logo-hero {
  transform: scale(2.4);
}

/* Hidden text for logo SEO */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}