* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #5ce1c5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Navigation */
header {
  background: #000;
  padding: 15px 20px;
  border-bottom: 1px solid #1a1a1a;
}

.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.header-nav a {
  color: #d35400;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}

.header-nav a:hover {
  color: #e67e22;
  text-decoration: none;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-link img {
  height: 45px;
  width: auto;
}

/* Hero Image */
.hero {
  max-width: 1012px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main Content Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  flex: 1;
}

/* Page Headings */
h1, h2 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-family: 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-stretch: condensed;
}

h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  max-width: 1012px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: left;
}

/* Intro/Disclaimer Text */
.intro, .disclaimer {
  max-width: 759px;
  margin: 0 auto 50px;
  color: #fff;
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
}

.intro a {
  color: rgb(255, 84, 41);
}

.disclaimer a {
  color: #5ce1c5;
}

.date {
  color: #888;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Homepage Navigation Buttons (Image Grid) */
.nav-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 1012px;
  margin: 40px auto;
  padding: 0 20px;
}

.nav-buttons a {
  display: block;
  overflow: hidden;
}

.nav-buttons img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.nav-buttons a:hover img {
  opacity: 0.85;
}

/* Product/Gear Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  margin: 40px 0;
}

.product-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.product-item {
  text-align: left;
}

.product-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #1a1a1a;
  margin-bottom: 10px;
}

.product-item a {
  color: #5ce1c5;
  font-size: 0.9rem;
}

.product-item p {
  color: #888;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Settings Lists */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0;
}

.settings-column h3 {
  color: #5ce1c5;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.settings-column ul {
  list-style: none;
  color: #aaa;
  font-size: 0.85rem;
}

.settings-column li {
  margin-bottom: 8px;
}

/* Map Container */
.map-container {
  width: 100%;
  height: 500px;
  margin: 30px 0;
  background: #1a1a1a;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Container - Responsive 16:9 */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin: 30px 0;
  background: #1a1a1a;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Hero Image (subpages) */
.hero-image {
  margin: 30px 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Map Link */
.map-link {
  margin: 30px 0;
}

.map-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* Caption */
.caption {
  text-align: center;
  color: #ccc;
  margin: 10px 0 30px;
}

/* Horizontal Rule */
hr {
  border: none;
  border-top: 1px solid #333;
  margin: 40px 0;
}

/* H3 */
h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  color: #d35400;
  font-family: 'Arial Narrow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Content Text */
.content p {
  margin-bottom: 20px;
  color: #ccc;
}

.content ul {
  margin: 20px 0;
  padding-left: 25px;
  color: #ccc;
}

.content li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  padding: 40px 20px;
  text-align: center;
  margin-top: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: fill 0.3s ease;
}

.social-icons a:hover svg {
  fill: #5ce1c5;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }
  
  h2 {
    font-size: 1.1rem;
  }
  
  .header-nav {
    gap: 20px;
  }
  
  .header-nav a {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  
  .nav-buttons {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-grid.three-col {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .settings-grid {
    grid-template-columns: 1fr;
  }
}
