/* Custom Bikes page styles */
.page-title-banner {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-image: var(--hero-bg, url('./assets/home-page.png'));
  background-size: cover;
  background-position: center;
}

.page-title-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.page-title-banner .banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.page-title-banner h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.page-title-banner p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.custom-content {
  padding: 60px 0 90px;
}

.custom-content .intro {
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
}

.custom-content .intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.custom-bike-showcase {
  max-width: 1050px;
  margin: 10px auto 40px;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
  position: relative;
  box-shadow: 0 6px 24px -6px rgba(0,0,0,0.25), 0 2px 6px -1px rgba(0,0,0,0.15);
}
.custom-bike-showcase img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.custom-content .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 30px auto 0;
}

.custom-content .feature {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
}

.custom-content .feature h3 {
  margin-bottom: 8px;
}

.custom-content .cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.primary-btn {
  background: #666; /* changed from blue to grey */
  color: #fff;
  padding: 16px 30px; /* increased */
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700; /* bold */
  font-size: 1.05rem; /* larger text */
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.primary-btn:hover { background:#555; box-shadow:0 3px 8px rgba(0,0,0,.18); transform:translateY(-2px); }
.primary-btn:active { background:#4a4a4a; transform:translateY(0); box-shadow:0 1px 3px rgba(0,0,0,.25); }
.primary-btn:focus-visible { outline:2px solid #222; outline-offset:2px; }

.secondary-btn {
  background: #f5f5f5;
  color: #111;
  padding: 16px 30px; /* increased */
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700; /* bold */
  font-size: 1.05rem; /* larger text */
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.secondary-btn:hover { background:#e8e8e8; box-shadow:0 3px 8px rgba(0,0,0,.12); transform:translateY(-2px); }
.secondary-btn:active { background:#dedede; transform:translateY(0); box-shadow:0 1px 3px rgba(0,0,0,.18); }
.secondary-btn:focus-visible { outline:2px solid #444; outline-offset:2px; }
