/* --- Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; background: #4B443F; color: #D8D8CC; line-height: 1.6; }

/* --- Hero --- */
.hero {
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
}
.hero-overlay {
  background: rgba(79, 95, 69, 0.8); /* earthy green overlay */
  padding: 2rem; border-radius: 8px;
}
.logo { max-width: 120px; margin: 1rem auto; display: block; }
h1 { font-family: 'Stencil Std', sans-serif; font-size: 2.5rem; color: #C0C0B4; }
.tagline { font-size: 1.2rem; margin: 1rem 0; font-weight: bold; }
.description { max-width: 600px; margin: 1rem auto; font-size: 1rem; }
.cta-button {
  display: inline-block; margin-top: 1.5rem; padding: 0.75rem 1.5rem;
  background: #70685D; color: #fff; text-decoration: none; border-radius: 4px;
  transition: background 0.3s;
}
.cta-button:hover { background: #A38F70; }

/* --- Social Links --- */
.social { padding: 4rem 2rem; background: #4F5F45; text-align: center; }
.social h2 { margin-bottom: 1rem; font-size: 1.8rem; }
.social-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.social-item {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; background: #70685D; border-radius: 6px;
  color: #fff; text-decoration: none; font-weight: bold;
  transition: background 0.3s;
}
.social-item img { width: 24px; height: 24px; margin-right: 0.5rem; }
.social-item:hover { background: #A38F70; }

/* --- About --- */
.about { padding: 3rem 2rem; background: #4B443F; text-align: center; }
.about h2 { font-size: 1.6rem; margin-bottom: 1rem; }

/* --- Footer --- */
.footer {
  padding: 1rem; background: #70685D; text-align: center; font-size: 0.9rem;
}
.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.gear-item {
  background: #70685D;
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
}
.gear-item img {
  max-width: 100%;
  border-radius: 6px;
}
.gear-item h2 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}
.gear-item p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.buy-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #A38F70;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}
.buy-button:hover {
  background: #C0C0B4;
}