@charset "UTF-8";

/* ========== GLOBAL RESET ========== */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #2e2e2e;
  background: #fafafa;
  text-align: center;
}

img {
  max-width: 100%;
  border-radius: 8px;
}

/* ========== HEADER ========== */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-title img {
  width: 130px;
}

#header ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

#header a {
  text-decoration: none;
  font-weight: 600;
  color: #f26b1d;
  transition: 0.3s;
}

#header a:hover {
  color: #333;
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-size: 28px;
  border-bottom: 3px solid #444;
  padding-bottom: 6px;
  margin: 50px auto 40px;
  display: inline-block;
  color: #d84205;
  letter-spacing: 1px;
}

/* ========== MAIN VISUAL ========== */
#mainvisual img {
  width: 100%;
  height: auto;
}

/* ========== ABOUT SECTION ========== */
#about .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.about-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

#about h3 {
  text-align: left;
  margin-bottom: 10px;
  color: #cc0404;
}

#about p {
  text-align: left;
  line-height: 1.7;
  color: #444;
}

/* ========== BICYCLE CARDS ========== */
.bicycle-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
  list-style: none;
}

.bike-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.bike-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.bike-card h3 {
  margin: 12px 0;
  color: #11114d;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #d05200;
  margin-bottom: 8px;
}

/* Buy Button */
.buy-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.buy-btn img {
  width: 120px;
  transition: 0.2s;
}

.buy-btn img:hover {
  transform: scale(1.05);
}

/* ========== FOOTER ========== */
footer {
  background: #1d1d1d;
  color: #bbb;
  padding: 20px;
  margin-top: 40px;
}
