body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
}

#hamburgerMenu:hover {
  color: #ccc;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

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

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

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fca120;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.overlay-text {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 5rem;
  font-style: italic;
}

.product-grid {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
  text-align: center;
}

.product-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.product-card {
  background-color: #f1f5f9;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  width: 200px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.buy-now {
  background-color: #fca120;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.retro-promo,
.sports-promo,
.motorcycle-promo {
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
}

.overlay-content {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.explore,
.shop-now {
  background-color: #fca120;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
}

.offroad-promo {
  display: flex;
  flex-direction: row;
  background-color: #f8f0e1;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.promo-image {
  background-size: cover;
  background-position: center;
  width: 50%;
  height: 100%;
  min-height: 400px;
}

.promo-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background-color: #f8e1bb;
  text-align: left;
}

.promo-text h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.promo-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: auto;
}

.shop-now {
  align-self: flex-end;
  padding: 12px 30px;
  background-color: #f59e0b;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.promo-header {
  text-align: center;
  padding: 40px 20px 20px;
  background-color: #fdfdfd;
}

.promo-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.promo-header p {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

a {
  text-decoration: none !important;
}
